diff --git a/src/communication/HISTORY.rst b/src/communication/HISTORY.rst index 1173602dca9..66a1d1b6e82 100644 --- a/src/communication/HISTORY.rst +++ b/src/communication/HISTORY.rst @@ -2,6 +2,12 @@ Release History =============== +1.8.0b2 +++++++ +* Add Email communication resource CRUD operations +* Add Domain resource CRUD operations +* Add Sender username CRUD operations + 1.8.0b1 ++++++ * Update ACS Rooms to use 1.1.0b1 version diff --git a/src/communication/azext_communication/aaz/latest/__init__.py b/src/communication/azext_communication/aaz/latest/__init__.py index 5757aea3175..f6acc11aa4e 100644 --- a/src/communication/azext_communication/aaz/latest/__init__.py +++ b/src/communication/azext_communication/aaz/latest/__init__.py @@ -4,3 +4,7 @@ # # Code generated by aaz-dev-tools # -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + diff --git a/src/communication/azext_communication/aaz/latest/communication/email/__cmd_group.py b/src/communication/azext_communication/aaz/latest/communication/email/__cmd_group.py new file mode 100644 index 00000000000..8090de02f74 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "communication email", +) +class __CMDGroup(AAZCommandGroup): + """communication email + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/__init__.py b/src/communication/azext_communication/aaz/latest/communication/email/__init__.py new file mode 100644 index 00000000000..db73033039b --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/__init__.py @@ -0,0 +1,17 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from .__cmd_group import * +from ._create import * +from ._delete import * +from ._list import * +from ._show import * +from ._update import * +from ._wait import * diff --git a/src/communication/azext_communication/aaz/latest/communication/email/_create.py b/src/communication/azext_communication/aaz/latest/communication/email/_create.py new file mode 100644 index 00000000000..fd9417b768c --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/_create.py @@ -0,0 +1,291 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email create", +) +class Create(AAZCommand): + """Create a new EmailService or update an existing EmailService. + + :example: Create a email resource with tags + az communication email create -n ResourceName -g ResourceGroup --location global --data-location unitedstates --tags "{tag:tag}" + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.email_service_name = AAZStrArg( + options=["-n", "--name", "--email-service-name"], + help="The name of the EmailService resource.", + required=True, + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Parameters" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + arg_group="Parameters", + help="The geo-location where the resource lives", + required=True, + fmt=AAZResourceLocationArgFormat( + resource_group_arg="resource_group", + ), + ) + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Parameters", + help="Resource tags.", + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg() + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.data_location = AAZStrArg( + options=["--data-location"], + arg_group="Properties", + help="The location where the email service stores its data at rest.", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.EmailServicesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class EmailServicesCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("tags", AAZDictType, ".tags") + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("dataLocation", AAZStrType, ".data_location", typ_kwargs={"flags": {"required": True}}) + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + return cls._schema_on_200_201 + + +class _CreateHelper: + """Helper class for Create""" + + +__all__ = ["Create"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/_delete.py b/src/communication/azext_communication/aaz/latest/communication/email/_delete.py new file mode 100644 index 00000000000..a337fe90080 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/_delete.py @@ -0,0 +1,168 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email delete", + confirmation="Are you sure you want to perform this operation?", +) +class Delete(AAZCommand): + """Delete to delete a EmailService. + + :example: Delete a email resource + az communication email delete -n ResourceName -g ResourceGroup + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, None) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.email_service_name = AAZStrArg( + options=["-n", "--name", "--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.EmailServicesDelete(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + class EmailServicesDelete(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [204]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_204, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "DELETE" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + def on_200(self, session): + pass + + def on_204(self, session): + pass + + +class _DeleteHelper: + """Helper class for Delete""" + + +__all__ = ["Delete"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/_list.py b/src/communication/azext_communication/aaz/latest/communication/email/_list.py new file mode 100644 index 00000000000..966285676e6 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/_list.py @@ -0,0 +1,361 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email list", +) +class List(AAZCommand): + """List requests to list all resources in a subscription. + + :example: Get all resources from a subscription/resource group + az communication email list --subscription SubscriptionId + az communication email list -g ResourceGroup + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.communication/emailservices", "2023-04-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.resource_group = AAZResourceGroupNameArg() + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + condition_0 = has_value(self.ctx.args.resource_group) and has_value(self.ctx.subscription_id) + condition_1 = has_value(self.ctx.subscription_id) and has_value(self.ctx.args.resource_group) is not True + if condition_0: + self.EmailServicesListByResourceGroup(ctx=self.ctx)() + if condition_1: + self.EmailServicesListBySubscription(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class EmailServicesListByResourceGroup(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType() + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + class EmailServicesListBySubscription(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/providers/Microsoft.Communication/emailServices", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType() + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + +__all__ = ["List"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/_show.py b/src/communication/azext_communication/aaz/latest/communication/email/_show.py new file mode 100644 index 00000000000..a220aed448b --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/_show.py @@ -0,0 +1,222 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email show", +) +class Show(AAZCommand): + """Get the EmailService and its properties. + + :example: Get a email service's properties + az communication email show -n ResourceName -g ResourceGroup + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}", "2023-04-01-preview"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.email_service_name = AAZStrArg( + options=["-n", "--name", "--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.EmailServicesGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class EmailServicesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/_update.py b/src/communication/azext_communication/aaz/latest/communication/email/_update.py new file mode 100644 index 00000000000..a2915ed46b9 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/_update.py @@ -0,0 +1,416 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email update", +) +class Update(AAZCommand): + """Update a new EmailService or update an existing EmailService. + + :example: Update a email resource with tags + az communication email update -n ResourceName -g ResourceGroup --tags "{tag:tag}" + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.email_service_name = AAZStrArg( + options=["-n", "--name", "--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Parameters" + + _args_schema = cls._args_schema + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Parameters", + help="Resource tags.", + nullable=True, + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg( + nullable=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.EmailServicesGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + yield self.EmailServicesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class EmailServicesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _UpdateHelper._build_schema_email_service_resource_read(cls._schema_on_200) + + return cls._schema_on_200 + + class EmailServicesCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + _UpdateHelper._build_schema_email_service_resource_read(cls._schema_on_200_201) + + return cls._schema_on_200_201 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + _builder.set_prop("tags", AAZDictType, ".tags") + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + _schema_email_service_resource_read = None + + @classmethod + def _build_schema_email_service_resource_read(cls, _schema): + if cls._schema_email_service_resource_read is not None: + _schema.id = cls._schema_email_service_resource_read.id + _schema.location = cls._schema_email_service_resource_read.location + _schema.name = cls._schema_email_service_resource_read.name + _schema.properties = cls._schema_email_service_resource_read.properties + _schema.system_data = cls._schema_email_service_resource_read.system_data + _schema.tags = cls._schema_email_service_resource_read.tags + _schema.type = cls._schema_email_service_resource_read.type + return + + cls._schema_email_service_resource_read = _schema_email_service_resource_read = AAZObjectType() + + email_service_resource_read = _schema_email_service_resource_read + email_service_resource_read.id = AAZStrType( + flags={"read_only": True}, + ) + email_service_resource_read.location = AAZStrType( + flags={"required": True}, + ) + email_service_resource_read.name = AAZStrType( + flags={"read_only": True}, + ) + email_service_resource_read.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + email_service_resource_read.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + email_service_resource_read.tags = AAZDictType() + email_service_resource_read.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = _schema_email_service_resource_read.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + system_data = _schema_email_service_resource_read.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = _schema_email_service_resource_read.tags + tags.Element = AAZStrType() + + _schema.id = cls._schema_email_service_resource_read.id + _schema.location = cls._schema_email_service_resource_read.location + _schema.name = cls._schema_email_service_resource_read.name + _schema.properties = cls._schema_email_service_resource_read.properties + _schema.system_data = cls._schema_email_service_resource_read.system_data + _schema.tags = cls._schema_email_service_resource_read.tags + _schema.type = cls._schema_email_service_resource_read.type + + +__all__ = ["Update"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/_wait.py b/src/communication/azext_communication/aaz/latest/communication/email/_wait.py new file mode 100644 index 00000000000..c76d2866d3e --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/_wait.py @@ -0,0 +1,218 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email wait", +) +class Wait(AAZWaitCommand): + """Place the CLI in a waiting state until a condition is met. + """ + + _aaz_info = { + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}", "2023-04-01-preview"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.email_service_name = AAZStrArg( + options=["-n", "--name", "--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.EmailServicesGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) + return result + + class EmailServicesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"required": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _WaitHelper: + """Helper class for Wait""" + + +__all__ = ["Wait"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/__cmd_group.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/__cmd_group.py new file mode 100644 index 00000000000..eb4643219ac --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "communication email domain", +) +class __CMDGroup(AAZCommandGroup): + """communication email domain + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/__init__.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/__init__.py new file mode 100644 index 00000000000..db73033039b --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/__init__.py @@ -0,0 +1,17 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from .__cmd_group import * +from ._create import * +from ._delete import * +from ._list import * +from ._show import * +from ._update import * +from ._wait import * diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/_create.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/_create.py new file mode 100644 index 00000000000..c985433ebc8 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/_create.py @@ -0,0 +1,434 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain create", +) +class Create(AAZCommand): + """Create a new Domains resource under the parent EmailService resource or update an existing Domains resource. + + :example: Create a domain with tags + az communication email domain create --domain-name DomainName --email-service-name ResourceName -g ResourceGroup --location global --domain-management AzureManaged/CustomerManaged --tags "{tag:tag}" --user-engmnt-tracking Enabled/Disabled + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["-n", "--name", "--domain-name"], + help="The name of the Domains resource.", + required=True, + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Parameters" + + _args_schema = cls._args_schema + _args_schema.location = AAZResourceLocationArg( + arg_group="Parameters", + help="The geo-location where the resource lives", + required=True, + fmt=AAZResourceLocationArgFormat( + resource_group_arg="resource_group", + ), + ) + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Parameters", + help="Resource tags.", + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg() + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.domain_management = AAZStrArg( + options=["--domain-management"], + arg_group="Properties", + help="Describes how a Domains resource is being managed.", + enum={"AzureManaged": "AzureManaged", "CustomerManaged": "CustomerManaged", "CustomerManagedInExchangeOnline": "CustomerManagedInExchangeOnline"}, + ) + _args_schema.user_engmnt_tracking = AAZStrArg( + options=["--user-engmnt-tracking"], + arg_group="Properties", + help="Describes whether user engagement tracking is enabled or disabled.", + enum={"Disabled": "Disabled", "Enabled": "Enabled"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.DomainsCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class DomainsCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) + _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("tags", AAZDictType, ".tags") + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("domainManagement", AAZStrType, ".domain_management", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("userEngagementTracking", AAZStrType, ".user_engmnt_tracking") + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.tags = AAZDictType() + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"read_only": True}, + ) + properties.domain_management = AAZStrType( + serialized_name="domainManagement", + flags={"required": True}, + ) + properties.from_sender_domain = AAZStrType( + serialized_name="fromSenderDomain", + flags={"read_only": True}, + ) + properties.mail_from_sender_domain = AAZStrType( + serialized_name="mailFromSenderDomain", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.user_engagement_tracking = AAZStrType( + serialized_name="userEngagementTracking", + ) + properties.verification_records = AAZObjectType( + serialized_name="verificationRecords", + flags={"read_only": True}, + ) + properties.verification_states = AAZObjectType( + serialized_name="verificationStates", + flags={"read_only": True}, + ) + + verification_records = cls._schema_on_200_201.properties.verification_records + verification_records.dkim = AAZObjectType( + serialized_name="DKIM", + ) + _CreateHelper._build_schema_dns_record_read(verification_records.dkim) + verification_records.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + _CreateHelper._build_schema_dns_record_read(verification_records.dkim2) + verification_records.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + _CreateHelper._build_schema_dns_record_read(verification_records.dmarc) + verification_records.domain = AAZObjectType( + serialized_name="Domain", + ) + _CreateHelper._build_schema_dns_record_read(verification_records.domain) + verification_records.spf = AAZObjectType( + serialized_name="SPF", + ) + _CreateHelper._build_schema_dns_record_read(verification_records.spf) + + verification_states = cls._schema_on_200_201.properties.verification_states + verification_states.dkim = AAZObjectType( + serialized_name="DKIM", + ) + _CreateHelper._build_schema_verification_status_record_read(verification_states.dkim) + verification_states.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + _CreateHelper._build_schema_verification_status_record_read(verification_states.dkim2) + verification_states.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + _CreateHelper._build_schema_verification_status_record_read(verification_states.dmarc) + verification_states.domain = AAZObjectType( + serialized_name="Domain", + ) + _CreateHelper._build_schema_verification_status_record_read(verification_states.domain) + verification_states.spf = AAZObjectType( + serialized_name="SPF", + ) + _CreateHelper._build_schema_verification_status_record_read(verification_states.spf) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200_201.tags + tags.Element = AAZStrType() + + return cls._schema_on_200_201 + + +class _CreateHelper: + """Helper class for Create""" + + _schema_dns_record_read = None + + @classmethod + def _build_schema_dns_record_read(cls, _schema): + if cls._schema_dns_record_read is not None: + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + return + + cls._schema_dns_record_read = _schema_dns_record_read = AAZObjectType() + + dns_record_read = _schema_dns_record_read + dns_record_read.name = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.ttl = AAZIntType( + flags={"read_only": True}, + ) + dns_record_read.type = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.value = AAZStrType( + flags={"read_only": True}, + ) + + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + + _schema_verification_status_record_read = None + + @classmethod + def _build_schema_verification_status_record_read(cls, _schema): + if cls._schema_verification_status_record_read is not None: + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + return + + cls._schema_verification_status_record_read = _schema_verification_status_record_read = AAZObjectType() + + verification_status_record_read = _schema_verification_status_record_read + verification_status_record_read.error_code = AAZStrType( + serialized_name="errorCode", + flags={"read_only": True}, + ) + verification_status_record_read.status = AAZStrType( + flags={"read_only": True}, + ) + + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + + +__all__ = ["Create"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/_delete.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/_delete.py new file mode 100644 index 00000000000..4efe109e0e4 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/_delete.py @@ -0,0 +1,182 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain delete", + confirmation="Are you sure you want to perform this operation?", +) +class Delete(AAZCommand): + """Delete to delete a Domains resource. + + :example: Delete a domain resource + az communication email domain delete --domain-name DomainName --email-service-name ResourceName -g ResourceGroup + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, None) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["-n", "--name", "--domain-name"], + help="The name of the Domains resource.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.DomainsDelete(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + class DomainsDelete(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [204]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_204, + self.on_error, + lro_options={"final-state-via": "location"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}", + **self.url_parameters + ) + + @property + def method(self): + return "DELETE" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + def on_200(self, session): + pass + + def on_204(self, session): + pass + + +class _DeleteHelper: + """Helper class for Delete""" + + +__all__ = ["Delete"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/_list.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/_list.py new file mode 100644 index 00000000000..e9b0bb9e4d3 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/_list.py @@ -0,0 +1,354 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain list", +) +class List(AAZCommand): + """List requests to list all Domains resources under the parent EmailServices resource. + + :example: Get all domains from a email resource + az communication email domain list --email-service-name ResourceName -g ResourceGroup + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.DomainsListByEmailServiceResource(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class DomainsListByEmailServiceResource(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType() + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.location = AAZStrType( + flags={"required": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.tags = AAZDictType() + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"read_only": True}, + ) + properties.domain_management = AAZStrType( + serialized_name="domainManagement", + flags={"required": True}, + ) + properties.from_sender_domain = AAZStrType( + serialized_name="fromSenderDomain", + flags={"read_only": True}, + ) + properties.mail_from_sender_domain = AAZStrType( + serialized_name="mailFromSenderDomain", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.user_engagement_tracking = AAZStrType( + serialized_name="userEngagementTracking", + ) + properties.verification_records = AAZObjectType( + serialized_name="verificationRecords", + flags={"read_only": True}, + ) + properties.verification_states = AAZObjectType( + serialized_name="verificationStates", + flags={"read_only": True}, + ) + + verification_records = cls._schema_on_200.value.Element.properties.verification_records + verification_records.dkim = AAZObjectType( + serialized_name="DKIM", + ) + _ListHelper._build_schema_dns_record_read(verification_records.dkim) + verification_records.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + _ListHelper._build_schema_dns_record_read(verification_records.dkim2) + verification_records.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + _ListHelper._build_schema_dns_record_read(verification_records.dmarc) + verification_records.domain = AAZObjectType( + serialized_name="Domain", + ) + _ListHelper._build_schema_dns_record_read(verification_records.domain) + verification_records.spf = AAZObjectType( + serialized_name="SPF", + ) + _ListHelper._build_schema_dns_record_read(verification_records.spf) + + verification_states = cls._schema_on_200.value.Element.properties.verification_states + verification_states.dkim = AAZObjectType( + serialized_name="DKIM", + ) + _ListHelper._build_schema_verification_status_record_read(verification_states.dkim) + verification_states.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + _ListHelper._build_schema_verification_status_record_read(verification_states.dkim2) + verification_states.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + _ListHelper._build_schema_verification_status_record_read(verification_states.dmarc) + verification_states.domain = AAZObjectType( + serialized_name="Domain", + ) + _ListHelper._build_schema_verification_status_record_read(verification_states.domain) + verification_states.spf = AAZObjectType( + serialized_name="SPF", + ) + _ListHelper._build_schema_verification_status_record_read(verification_states.spf) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.value.Element.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + _schema_dns_record_read = None + + @classmethod + def _build_schema_dns_record_read(cls, _schema): + if cls._schema_dns_record_read is not None: + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + return + + cls._schema_dns_record_read = _schema_dns_record_read = AAZObjectType() + + dns_record_read = _schema_dns_record_read + dns_record_read.name = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.ttl = AAZIntType( + flags={"read_only": True}, + ) + dns_record_read.type = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.value = AAZStrType( + flags={"read_only": True}, + ) + + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + + _schema_verification_status_record_read = None + + @classmethod + def _build_schema_verification_status_record_read(cls, _schema): + if cls._schema_verification_status_record_read is not None: + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + return + + cls._schema_verification_status_record_read = _schema_verification_status_record_read = AAZObjectType() + + verification_status_record_read = _schema_verification_status_record_read + verification_status_record_read.error_code = AAZStrType( + serialized_name="errorCode", + flags={"read_only": True}, + ) + verification_status_record_read.status = AAZStrType( + flags={"read_only": True}, + ) + + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + + +__all__ = ["List"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/_show.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/_show.py new file mode 100644 index 00000000000..be6510a8684 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/_show.py @@ -0,0 +1,358 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain show", +) +class Show(AAZCommand): + """Get the Domains resource and its properties. + + :example: Get all domains from a email resource + az communication email domain show --domain-name DomainName --email-service-name ResourceName -g ResourceGroup + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}", "2023-04-01-preview"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["-n", "--name", "--domain-name"], + help="The name of the Domains resource.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.DomainsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class DomainsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"read_only": True}, + ) + properties.domain_management = AAZStrType( + serialized_name="domainManagement", + flags={"required": True}, + ) + properties.from_sender_domain = AAZStrType( + serialized_name="fromSenderDomain", + flags={"read_only": True}, + ) + properties.mail_from_sender_domain = AAZStrType( + serialized_name="mailFromSenderDomain", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.user_engagement_tracking = AAZStrType( + serialized_name="userEngagementTracking", + ) + properties.verification_records = AAZObjectType( + serialized_name="verificationRecords", + flags={"read_only": True}, + ) + properties.verification_states = AAZObjectType( + serialized_name="verificationStates", + flags={"read_only": True}, + ) + + verification_records = cls._schema_on_200.properties.verification_records + verification_records.dkim = AAZObjectType( + serialized_name="DKIM", + ) + _ShowHelper._build_schema_dns_record_read(verification_records.dkim) + verification_records.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + _ShowHelper._build_schema_dns_record_read(verification_records.dkim2) + verification_records.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + _ShowHelper._build_schema_dns_record_read(verification_records.dmarc) + verification_records.domain = AAZObjectType( + serialized_name="Domain", + ) + _ShowHelper._build_schema_dns_record_read(verification_records.domain) + verification_records.spf = AAZObjectType( + serialized_name="SPF", + ) + _ShowHelper._build_schema_dns_record_read(verification_records.spf) + + verification_states = cls._schema_on_200.properties.verification_states + verification_states.dkim = AAZObjectType( + serialized_name="DKIM", + ) + _ShowHelper._build_schema_verification_status_record_read(verification_states.dkim) + verification_states.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + _ShowHelper._build_schema_verification_status_record_read(verification_states.dkim2) + verification_states.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + _ShowHelper._build_schema_verification_status_record_read(verification_states.dmarc) + verification_states.domain = AAZObjectType( + serialized_name="Domain", + ) + _ShowHelper._build_schema_verification_status_record_read(verification_states.domain) + verification_states.spf = AAZObjectType( + serialized_name="SPF", + ) + _ShowHelper._build_schema_verification_status_record_read(verification_states.spf) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + _schema_dns_record_read = None + + @classmethod + def _build_schema_dns_record_read(cls, _schema): + if cls._schema_dns_record_read is not None: + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + return + + cls._schema_dns_record_read = _schema_dns_record_read = AAZObjectType() + + dns_record_read = _schema_dns_record_read + dns_record_read.name = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.ttl = AAZIntType( + flags={"read_only": True}, + ) + dns_record_read.type = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.value = AAZStrType( + flags={"read_only": True}, + ) + + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + + _schema_verification_status_record_read = None + + @classmethod + def _build_schema_verification_status_record_read(cls, _schema): + if cls._schema_verification_status_record_read is not None: + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + return + + cls._schema_verification_status_record_read = _schema_verification_status_record_read = AAZObjectType() + + verification_status_record_read = _schema_verification_status_record_read + verification_status_record_read.error_code = AAZStrType( + serialized_name="errorCode", + flags={"read_only": True}, + ) + verification_status_record_read.status = AAZStrType( + flags={"read_only": True}, + ) + + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + + +__all__ = ["Show"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/_update.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/_update.py new file mode 100644 index 00000000000..9dc47a3f011 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/_update.py @@ -0,0 +1,579 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain update", +) +class Update(AAZCommand): + """Update a new Domains resource under the parent EmailService resource or update an existing Domains resource. + + :example: Update a domain with tags + az communication email domain update --domain-name DomainName --email-service-name ResourceName -g ResourceGroup --tags "{tag:tag}" --user-engmnt-tracking Enabled/Disabled + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["-n", "--name", "--domain-name"], + help="The name of the Domains resource.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Parameters" + + _args_schema = cls._args_schema + _args_schema.tags = AAZDictArg( + options=["--tags"], + arg_group="Parameters", + help="Resource tags.", + nullable=True, + ) + + tags = cls._args_schema.tags + tags.Element = AAZStrArg( + nullable=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.domain_management = AAZStrArg( + options=["--domain-management"], + arg_group="Properties", + help="Describes how a Domains resource is being managed.", + enum={"AzureManaged": "AzureManaged", "CustomerManaged": "CustomerManaged", "CustomerManagedInExchangeOnline": "CustomerManagedInExchangeOnline"}, + ) + _args_schema.user_engmnt_tracking = AAZStrArg( + options=["--user-engmnt-tracking"], + arg_group="Properties", + help="Describes whether user engagement tracking is enabled or disabled.", + nullable=True, + enum={"Disabled": "Disabled", "Enabled": "Enabled"}, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.DomainsGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + yield self.DomainsCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class DomainsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _UpdateHelper._build_schema_domain_resource_read(cls._schema_on_200) + + return cls._schema_on_200 + + class DomainsCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + _UpdateHelper._build_schema_domain_resource_read(cls._schema_on_200_201) + + return cls._schema_on_200_201 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("tags", AAZDictType, ".tags") + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("domainManagement", AAZStrType, ".domain_management", typ_kwargs={"flags": {"required": True}}) + properties.set_prop("userEngagementTracking", AAZStrType, ".user_engmnt_tracking") + + tags = _builder.get(".tags") + if tags is not None: + tags.set_elements(AAZStrType, ".") + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + _schema_dns_record_read = None + + @classmethod + def _build_schema_dns_record_read(cls, _schema): + if cls._schema_dns_record_read is not None: + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + return + + cls._schema_dns_record_read = _schema_dns_record_read = AAZObjectType() + + dns_record_read = _schema_dns_record_read + dns_record_read.name = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.ttl = AAZIntType( + flags={"read_only": True}, + ) + dns_record_read.type = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.value = AAZStrType( + flags={"read_only": True}, + ) + + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + + _schema_domain_resource_read = None + + @classmethod + def _build_schema_domain_resource_read(cls, _schema): + if cls._schema_domain_resource_read is not None: + _schema.id = cls._schema_domain_resource_read.id + _schema.location = cls._schema_domain_resource_read.location + _schema.name = cls._schema_domain_resource_read.name + _schema.properties = cls._schema_domain_resource_read.properties + _schema.system_data = cls._schema_domain_resource_read.system_data + _schema.tags = cls._schema_domain_resource_read.tags + _schema.type = cls._schema_domain_resource_read.type + return + + cls._schema_domain_resource_read = _schema_domain_resource_read = AAZObjectType() + + domain_resource_read = _schema_domain_resource_read + domain_resource_read.id = AAZStrType( + flags={"read_only": True}, + ) + domain_resource_read.location = AAZStrType( + flags={"required": True}, + ) + domain_resource_read.name = AAZStrType( + flags={"read_only": True}, + ) + domain_resource_read.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + domain_resource_read.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + domain_resource_read.tags = AAZDictType() + domain_resource_read.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = _schema_domain_resource_read.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"read_only": True}, + ) + properties.domain_management = AAZStrType( + serialized_name="domainManagement", + flags={"required": True}, + ) + properties.from_sender_domain = AAZStrType( + serialized_name="fromSenderDomain", + flags={"read_only": True}, + ) + properties.mail_from_sender_domain = AAZStrType( + serialized_name="mailFromSenderDomain", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.user_engagement_tracking = AAZStrType( + serialized_name="userEngagementTracking", + ) + properties.verification_records = AAZObjectType( + serialized_name="verificationRecords", + flags={"read_only": True}, + ) + properties.verification_states = AAZObjectType( + serialized_name="verificationStates", + flags={"read_only": True}, + ) + + verification_records = _schema_domain_resource_read.properties.verification_records + verification_records.dkim = AAZObjectType( + serialized_name="DKIM", + ) + cls._build_schema_dns_record_read(verification_records.dkim) + verification_records.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + cls._build_schema_dns_record_read(verification_records.dkim2) + verification_records.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + cls._build_schema_dns_record_read(verification_records.dmarc) + verification_records.domain = AAZObjectType( + serialized_name="Domain", + ) + cls._build_schema_dns_record_read(verification_records.domain) + verification_records.spf = AAZObjectType( + serialized_name="SPF", + ) + cls._build_schema_dns_record_read(verification_records.spf) + + verification_states = _schema_domain_resource_read.properties.verification_states + verification_states.dkim = AAZObjectType( + serialized_name="DKIM", + ) + cls._build_schema_verification_status_record_read(verification_states.dkim) + verification_states.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + cls._build_schema_verification_status_record_read(verification_states.dkim2) + verification_states.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + cls._build_schema_verification_status_record_read(verification_states.dmarc) + verification_states.domain = AAZObjectType( + serialized_name="Domain", + ) + cls._build_schema_verification_status_record_read(verification_states.domain) + verification_states.spf = AAZObjectType( + serialized_name="SPF", + ) + cls._build_schema_verification_status_record_read(verification_states.spf) + + system_data = _schema_domain_resource_read.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = _schema_domain_resource_read.tags + tags.Element = AAZStrType() + + _schema.id = cls._schema_domain_resource_read.id + _schema.location = cls._schema_domain_resource_read.location + _schema.name = cls._schema_domain_resource_read.name + _schema.properties = cls._schema_domain_resource_read.properties + _schema.system_data = cls._schema_domain_resource_read.system_data + _schema.tags = cls._schema_domain_resource_read.tags + _schema.type = cls._schema_domain_resource_read.type + + _schema_verification_status_record_read = None + + @classmethod + def _build_schema_verification_status_record_read(cls, _schema): + if cls._schema_verification_status_record_read is not None: + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + return + + cls._schema_verification_status_record_read = _schema_verification_status_record_read = AAZObjectType() + + verification_status_record_read = _schema_verification_status_record_read + verification_status_record_read.error_code = AAZStrType( + serialized_name="errorCode", + flags={"read_only": True}, + ) + verification_status_record_read.status = AAZStrType( + flags={"read_only": True}, + ) + + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + + +__all__ = ["Update"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/_wait.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/_wait.py new file mode 100644 index 00000000000..c1e2bc6b5f5 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/_wait.py @@ -0,0 +1,354 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain wait", +) +class Wait(AAZWaitCommand): + """Place the CLI in a waiting state until a condition is met. + """ + + _aaz_info = { + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}", "2023-04-01-preview"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["-n", "--name", "--domain-name"], + help="The name of the Domains resource.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.DomainsGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=False) + return result + + class DomainsGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.location = AAZStrType( + flags={"required": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.tags = AAZDictType() + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"read_only": True}, + ) + properties.domain_management = AAZStrType( + serialized_name="domainManagement", + flags={"required": True}, + ) + properties.from_sender_domain = AAZStrType( + serialized_name="fromSenderDomain", + flags={"read_only": True}, + ) + properties.mail_from_sender_domain = AAZStrType( + serialized_name="mailFromSenderDomain", + flags={"read_only": True}, + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.user_engagement_tracking = AAZStrType( + serialized_name="userEngagementTracking", + ) + properties.verification_records = AAZObjectType( + serialized_name="verificationRecords", + flags={"read_only": True}, + ) + properties.verification_states = AAZObjectType( + serialized_name="verificationStates", + flags={"read_only": True}, + ) + + verification_records = cls._schema_on_200.properties.verification_records + verification_records.dkim = AAZObjectType( + serialized_name="DKIM", + ) + _WaitHelper._build_schema_dns_record_read(verification_records.dkim) + verification_records.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + _WaitHelper._build_schema_dns_record_read(verification_records.dkim2) + verification_records.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + _WaitHelper._build_schema_dns_record_read(verification_records.dmarc) + verification_records.domain = AAZObjectType( + serialized_name="Domain", + ) + _WaitHelper._build_schema_dns_record_read(verification_records.domain) + verification_records.spf = AAZObjectType( + serialized_name="SPF", + ) + _WaitHelper._build_schema_dns_record_read(verification_records.spf) + + verification_states = cls._schema_on_200.properties.verification_states + verification_states.dkim = AAZObjectType( + serialized_name="DKIM", + ) + _WaitHelper._build_schema_verification_status_record_read(verification_states.dkim) + verification_states.dkim2 = AAZObjectType( + serialized_name="DKIM2", + ) + _WaitHelper._build_schema_verification_status_record_read(verification_states.dkim2) + verification_states.dmarc = AAZObjectType( + serialized_name="DMARC", + ) + _WaitHelper._build_schema_verification_status_record_read(verification_states.dmarc) + verification_states.domain = AAZObjectType( + serialized_name="Domain", + ) + _WaitHelper._build_schema_verification_status_record_read(verification_states.domain) + verification_states.spf = AAZObjectType( + serialized_name="SPF", + ) + _WaitHelper._build_schema_verification_status_record_read(verification_states.spf) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + tags = cls._schema_on_200.tags + tags.Element = AAZStrType() + + return cls._schema_on_200 + + +class _WaitHelper: + """Helper class for Wait""" + + _schema_dns_record_read = None + + @classmethod + def _build_schema_dns_record_read(cls, _schema): + if cls._schema_dns_record_read is not None: + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + return + + cls._schema_dns_record_read = _schema_dns_record_read = AAZObjectType() + + dns_record_read = _schema_dns_record_read + dns_record_read.name = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.ttl = AAZIntType( + flags={"read_only": True}, + ) + dns_record_read.type = AAZStrType( + flags={"read_only": True}, + ) + dns_record_read.value = AAZStrType( + flags={"read_only": True}, + ) + + _schema.name = cls._schema_dns_record_read.name + _schema.ttl = cls._schema_dns_record_read.ttl + _schema.type = cls._schema_dns_record_read.type + _schema.value = cls._schema_dns_record_read.value + + _schema_verification_status_record_read = None + + @classmethod + def _build_schema_verification_status_record_read(cls, _schema): + if cls._schema_verification_status_record_read is not None: + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + return + + cls._schema_verification_status_record_read = _schema_verification_status_record_read = AAZObjectType() + + verification_status_record_read = _schema_verification_status_record_read + verification_status_record_read.error_code = AAZStrType( + serialized_name="errorCode", + flags={"read_only": True}, + ) + verification_status_record_read.status = AAZStrType( + flags={"read_only": True}, + ) + + _schema.error_code = cls._schema_verification_status_record_read.error_code + _schema.status = cls._schema_verification_status_record_read.status + + +__all__ = ["Wait"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/__cmd_group.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/__cmd_group.py new file mode 100644 index 00000000000..26fce2cae60 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/__cmd_group.py @@ -0,0 +1,23 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command_group( + "communication email domain sender-username", +) +class __CMDGroup(AAZCommandGroup): + """communication email domain sender-username + """ + pass + + +__all__ = ["__CMDGroup"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/__init__.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/__init__.py new file mode 100644 index 00000000000..c401f439385 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/__init__.py @@ -0,0 +1,16 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from .__cmd_group import * +from ._create import * +from ._delete import * +from ._list import * +from ._show import * +from ._update import * diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_create.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_create.py new file mode 100644 index 00000000000..0e6587d0717 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_create.py @@ -0,0 +1,279 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain sender-username create", +) +class Create(AAZCommand): + """Create a new SenderUsername resource under the parent Domains resource or update an existing SenderUsername resource. + + :example: Create a sender username + az communication email domain sender-username create --domain-name DomainName --email-service-name ResourceName -g ResourceGroup --sender-username SenderUsername --username Username --display-name DisplayName + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}/senderusernames/{}", "2023-04-01-preview"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["--domain-name"], + help="The name of the Domains resource.", + required=True, + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.sender_username = AAZStrArg( + options=["-n", "--name", "--sender-username"], + help="The valid sender Username.", + required=True, + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.display_name = AAZStrArg( + options=["--display-name"], + arg_group="Properties", + help="The display name for the senderUsername.", + ) + _args_schema.username = AAZStrArg( + options=["--username"], + arg_group="Properties", + help="A sender senderUsername to be used when sending emails.", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.SenderUsernamesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class SenderUsernamesCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200, 201]: + return self.on_200_201(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}/senderUsernames/{senderUsername}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "senderUsername", self.ctx.args.sender_username, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("displayName", AAZStrType, ".display_name") + properties.set_prop("username", AAZStrType, ".username", typ_kwargs={"flags": {"required": True}}) + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200_201.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200_201.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200_201.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.username = AAZStrType( + flags={"required": True}, + ) + + system_data = cls._schema_on_200_201.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200_201 + + +class _CreateHelper: + """Helper class for Create""" + + +__all__ = ["Create"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_delete.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_delete.py new file mode 100644 index 00000000000..620b3ac2912 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_delete.py @@ -0,0 +1,172 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain sender-username delete", + confirmation="Are you sure you want to perform this operation?", +) +class Delete(AAZCommand): + """Delete to delete a SenderUsernames resource. + + :example: Delete a sender username resource + az communication email domain sender-username delete --domain-name DomainName --email-service-name ResourceName -g ResourceGroup --sender-username SenderUsername + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}/senderusernames/{}", "2023-04-01-preview"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return None + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["--domain-name"], + help="The name of the Domains resource.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.sender_username = AAZStrArg( + options=["-n", "--name", "--sender-username"], + help="The valid sender Username.", + required=True, + id_part="child_name_2", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.SenderUsernamesDelete(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + class SenderUsernamesDelete(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + if session.http_response.status_code in [204]: + return self.on_204(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}/senderUsernames/{senderUsername}", + **self.url_parameters + ) + + @property + def method(self): + return "DELETE" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "senderUsername", self.ctx.args.sender_username, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + def on_200(self, session): + pass + + def on_204(self, session): + pass + + +class _DeleteHelper: + """Helper class for Delete""" + + +__all__ = ["Delete"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_list.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_list.py new file mode 100644 index 00000000000..dd4185ca3e6 --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_list.py @@ -0,0 +1,244 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain sender-username list", +) +class List(AAZCommand): + """List all valid sender usernames for a domains resource. + + :example: Get all sender usernames from a domain resource + az communication email domain sender-username list --domain-name DomainName --email-service-name ResourceName -g ResourceGroup + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}/senderusernames", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_PAGINATION = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_paging(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["--domain-name"], + help="The name of the Domains resource.", + required=True, + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.SenderUsernamesListByDomains(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance.value, client_flatten=True) + next_link = self.deserialize_output(self.ctx.vars.instance.next_link) + return result, next_link + + class SenderUsernamesListByDomains(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}/senderUsernames", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.next_link = AAZStrType( + serialized_name="nextLink", + ) + _schema_on_200.value = AAZListType() + + value = cls._schema_on_200.value + value.Element = AAZObjectType() + + _element = cls._schema_on_200.value.Element + _element.id = AAZStrType( + flags={"read_only": True}, + ) + _element.name = AAZStrType( + flags={"read_only": True}, + ) + _element.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _element.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _element.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.value.Element.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.username = AAZStrType( + flags={"required": True}, + ) + + system_data = cls._schema_on_200.value.Element.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ListHelper: + """Helper class for List""" + + +__all__ = ["List"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_show.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_show.py new file mode 100644 index 00000000000..558ce33c7ac --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_show.py @@ -0,0 +1,249 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain sender-username show", +) +class Show(AAZCommand): + """Get a valid sender username for a domains resource. + + :example: Get a sender username's properties + az communication email domain sender-username show --domain-name DomainName --email-service-name ResourceName -g ResourceGroup --sender-username SenderUsername + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}/senderusernames/{}", "2023-04-01-preview"], + ] + } + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["--domain-name"], + help="The name of the Domains resource.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.sender_username = AAZStrArg( + options=["-n", "--name", "--sender-username"], + help="The valid sender Username.", + required=True, + id_part="child_name_2", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.SenderUsernamesGet(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class SenderUsernamesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}/senderUsernames/{senderUsername}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "senderUsername", self.ctx.args.sender_username, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + + _schema_on_200 = cls._schema_on_200 + _schema_on_200.id = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.name = AAZStrType( + flags={"read_only": True}, + ) + _schema_on_200.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + _schema_on_200.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + _schema_on_200.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = cls._schema_on_200.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.username = AAZStrType( + flags={"required": True}, + ) + + system_data = cls._schema_on_200.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + return cls._schema_on_200 + + +class _ShowHelper: + """Helper class for Show""" + + +__all__ = ["Show"] diff --git a/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_update.py b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_update.py new file mode 100644 index 00000000000..9a7b0ae839f --- /dev/null +++ b/src/communication/azext_communication/aaz/latest/communication/email/domain/sender_username/_update.py @@ -0,0 +1,431 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "communication email domain sender-username update", +) +class Update(AAZCommand): + """Update a new SenderUsername resource under the parent Domains resource or update an existing SenderUsername resource. + + :example: Update a sender username with display name + az communication email domain sender-username update --domain-name DomainName --email-service-name ResourceName -g ResourceGroup --sender-username SenderUsername --display-name DisplayName + """ + + _aaz_info = { + "version": "2023-04-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.communication/emailservices/{}/domains/{}/senderusernames/{}", "2023-04-01-preview"], + ] + } + + AZ_SUPPORT_GENERIC_UPDATE = True + + def _handler(self, command_args): + super()._handler(command_args) + self._execute_operations() + return self._output() + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.domain_name = AAZStrArg( + options=["--domain-name"], + help="The name of the Domains resource.", + required=True, + id_part="child_name_1", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + _args_schema.email_service_name = AAZStrArg( + options=["--email-service-name"], + help="The name of the EmailService resource.", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + pattern="^[a-zA-Z0-9-]+$", + max_length=63, + min_length=1, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + _args_schema.sender_username = AAZStrArg( + options=["-n", "--name", "--sender-username"], + help="The valid sender Username.", + required=True, + id_part="child_name_2", + fmt=AAZStrArgFormat( + max_length=253, + min_length=1, + ), + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.display_name = AAZStrArg( + options=["--display-name"], + arg_group="Properties", + help="The display name for the senderUsername.", + nullable=True, + ) + _args_schema.username = AAZStrArg( + options=["--username"], + arg_group="Properties", + help="A sender senderUsername to be used when sending emails.", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + self.SenderUsernamesGet(ctx=self.ctx)() + self.pre_instance_update(self.ctx.vars.instance) + self.InstanceUpdateByJson(ctx=self.ctx)() + self.InstanceUpdateByGeneric(ctx=self.ctx)() + self.post_instance_update(self.ctx.vars.instance) + self.SenderUsernamesCreateOrUpdate(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + @register_callback + def pre_instance_update(self, instance): + pass + + @register_callback + def post_instance_update(self, instance): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class SenderUsernamesGet(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200]: + return self.on_200(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}/senderUsernames/{senderUsername}", + **self.url_parameters + ) + + @property + def method(self): + return "GET" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "senderUsername", self.ctx.args.sender_username, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + def on_200(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200 + ) + + _schema_on_200 = None + + @classmethod + def _build_schema_on_200(cls): + if cls._schema_on_200 is not None: + return cls._schema_on_200 + + cls._schema_on_200 = AAZObjectType() + _UpdateHelper._build_schema_sender_username_resource_read(cls._schema_on_200) + + return cls._schema_on_200 + + class SenderUsernamesCreateOrUpdate(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [200, 201]: + return self.on_200_201(session) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Communication/emailServices/{emailServiceName}/domains/{domainName}/senderUsernames/{senderUsername}", + **self.url_parameters + ) + + @property + def method(self): + return "PUT" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "domainName", self.ctx.args.domain_name, + required=True, + ), + **self.serialize_url_param( + "emailServiceName", self.ctx.args.email_service_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "senderUsername", self.ctx.args.sender_username, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-04-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + value=self.ctx.vars.instance, + ) + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + _UpdateHelper._build_schema_sender_username_resource_read(cls._schema_on_200_201) + + return cls._schema_on_200_201 + + class InstanceUpdateByJson(AAZJsonInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance(self.ctx.vars.instance) + + def _update_instance(self, instance): + _instance_value, _builder = self.new_content_builder( + self.ctx.args, + value=instance, + typ=AAZObjectType + ) + _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("displayName", AAZStrType, ".display_name") + properties.set_prop("username", AAZStrType, ".username", typ_kwargs={"flags": {"required": True}}) + + return _instance_value + + class InstanceUpdateByGeneric(AAZGenericInstanceUpdateOperation): + + def __call__(self, *args, **kwargs): + self._update_instance_by_generic( + self.ctx.vars.instance, + self.ctx.generic_update_args + ) + + +class _UpdateHelper: + """Helper class for Update""" + + _schema_sender_username_resource_read = None + + @classmethod + def _build_schema_sender_username_resource_read(cls, _schema): + if cls._schema_sender_username_resource_read is not None: + _schema.id = cls._schema_sender_username_resource_read.id + _schema.name = cls._schema_sender_username_resource_read.name + _schema.properties = cls._schema_sender_username_resource_read.properties + _schema.system_data = cls._schema_sender_username_resource_read.system_data + _schema.type = cls._schema_sender_username_resource_read.type + return + + cls._schema_sender_username_resource_read = _schema_sender_username_resource_read = AAZObjectType() + + sender_username_resource_read = _schema_sender_username_resource_read + sender_username_resource_read.id = AAZStrType( + flags={"read_only": True}, + ) + sender_username_resource_read.name = AAZStrType( + flags={"read_only": True}, + ) + sender_username_resource_read.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + sender_username_resource_read.system_data = AAZObjectType( + serialized_name="systemData", + flags={"read_only": True}, + ) + sender_username_resource_read.type = AAZStrType( + flags={"read_only": True}, + ) + + properties = _schema_sender_username_resource_read.properties + properties.data_location = AAZStrType( + serialized_name="dataLocation", + flags={"read_only": True}, + ) + properties.display_name = AAZStrType( + serialized_name="displayName", + ) + properties.provisioning_state = AAZStrType( + serialized_name="provisioningState", + flags={"read_only": True}, + ) + properties.username = AAZStrType( + flags={"required": True}, + ) + + system_data = _schema_sender_username_resource_read.system_data + system_data.created_at = AAZStrType( + serialized_name="createdAt", + ) + system_data.created_by = AAZStrType( + serialized_name="createdBy", + ) + system_data.created_by_type = AAZStrType( + serialized_name="createdByType", + ) + system_data.last_modified_at = AAZStrType( + serialized_name="lastModifiedAt", + ) + system_data.last_modified_by = AAZStrType( + serialized_name="lastModifiedBy", + ) + system_data.last_modified_by_type = AAZStrType( + serialized_name="lastModifiedByType", + ) + + _schema.id = cls._schema_sender_username_resource_read.id + _schema.name = cls._schema_sender_username_resource_read.name + _schema.properties = cls._schema_sender_username_resource_read.properties + _schema.system_data = cls._schema_sender_username_resource_read.system_data + _schema.type = cls._schema_sender_username_resource_read.type + + +__all__ = ["Update"] diff --git a/src/communication/azext_communication/azext_metadata.json b/src/communication/azext_communication/azext_metadata.json index f6f49495c1b..d91cb3f21ea 100644 --- a/src/communication/azext_communication/azext_metadata.json +++ b/src/communication/azext_communication/azext_metadata.json @@ -1,3 +1,4 @@ { - "azext.minCliCoreVersion": "2.49.0" + "azext.minCliCoreVersion": "2.55.0", + "azext.isPreview": true } \ No newline at end of file diff --git a/src/communication/azext_communication/custom.py b/src/communication/azext_communication/custom.py index 5f523b16412..916dfe48b95 100644 --- a/src/communication/azext_communication/custom.py +++ b/src/communication/azext_communication/custom.py @@ -142,7 +142,7 @@ def pre_instance_update(self, instance): current_assigned_identities.pop(str(identity)) else: raise ResourceNotFoundError( - 'The following was not found as a managed identity for the current resource: ' + str(identity) + 'The following was not found as a managed identity for current resource: ' + str(identity) ) if len(current_assigned_identities) == 0: diff --git a/src/communication/azext_communication/manual/custom.py b/src/communication/azext_communication/manual/custom.py index 97e2852006d..6c5d919e445 100644 --- a/src/communication/azext_communication/manual/custom.py +++ b/src/communication/azext_communication/manual/custom.py @@ -373,8 +373,8 @@ def communication_email_send(client, else: all_attachments = attachments[0].split(',') all_attachment_types = attachment_types[0].split(',') - for i in range(len(all_attachments)): - attachments_list.append(__get_attachment_content(all_attachments[i], all_attachment_types[i])) + for i, attachment in enumerate(all_attachments): + attachments_list.append(__get_attachment_content(attachment, all_attachment_types[i])) message = { "content": { @@ -391,8 +391,8 @@ def communication_email_send(client, for recipient in recipients_bcc[0].split(',')] }, "replyTo": None if reply_to is None else [{"address": reply_to}], - "attachments": None if attachments_list is None else [json.loads(attachment) - for attachment in attachments_list], + "attachments": [] if attachments_list is None else [json.loads(attachment) + for attachment in attachments_list], "senderAddress": sender, "userEngagementTrackingDisabled": disable_tracking, "headers": { diff --git a/src/communication/azext_communication/tests/latest/example_steps.py b/src/communication/azext_communication/tests/latest/example_steps.py index 747d75742a5..96535850f66 100644 --- a/src/communication/azext_communication/tests/latest/example_steps.py +++ b/src/communication/azext_communication/tests/latest/example_steps.py @@ -117,4 +117,3 @@ def step_delete(test, rg_2, rg, checks=None): '--name "{myCommunicationService}" ' '--resource-group "{rg}"', checks=checks) - diff --git a/src/communication/azext_communication/tests/latest/preparers.py b/src/communication/azext_communication/tests/latest/preparers.py index 64cb361fff1..b21ac76216e 100644 --- a/src/communication/azext_communication/tests/latest/preparers.py +++ b/src/communication/azext_communication/tests/latest/preparers.py @@ -14,6 +14,7 @@ from azure.cli.testsdk.reverse_dependency import get_dummy_cli import os + # Communication resource Preparer and its shorthand decorator # pylint: disable=too-many-instance-attributes class CommunicationResourcePreparer(NoTrafficRecordingPreparer, SingleValueReplacer): @@ -51,11 +52,9 @@ def create_resource(self, name, **kwargs): endpoint = None self.test_class_instance.kwargs[self.key] = name - - return {self.parameter_name: name, - self.parameter_name + '_info': - (name, + self.parameter_name + '_info': + (name, account_key or 'endpoint=https://sanitized.communication.azure.com/;accesskey=fake===', endpoint or 'https://sanitized.communication.azure.com/', )} diff --git a/src/communication/azext_communication/tests/latest/recording_processors.py b/src/communication/azext_communication/tests/latest/recording_processors.py index 563cc4edfef..276a3708cf8 100644 --- a/src/communication/azext_communication/tests/latest/recording_processors.py +++ b/src/communication/azext_communication/tests/latest/recording_processors.py @@ -22,18 +22,18 @@ class URIIdentityReplacer(RecordingProcessor): def process_request(self, request): resource = (urlparse(request.uri).netloc).split('.')[0] - request.uri = re.sub('/phoneNumbers/[%2B\d]+', '/phoneNumbers/sanitized', request.uri) + request.uri = re.sub('/phoneNumbers/[%2B\\d]+', '/phoneNumbers/sanitized', request.uri) request.uri = re.sub('/identities/([^/?]+)', '/identities/sanitized', request.uri) request.uri = re.sub('/chat/threads/([^/?]+)', '/chat/threads/sanitized', request.uri) request.uri = re.sub('/chat/threads/([^/?]+)/messages/([^/?]+)', '/chat/threads/sanitized/messages/sanitized', request.uri) request.uri = re.sub('/rooms/([0-9]+)/', '/rooms/sanitized/', request.uri) - request.uri = re.sub('/rooms/([0-9]+)\?', '/rooms/sanitized?', request.uri) + request.uri = re.sub('/rooms/([0-9]+)\\?', '/rooms/sanitized?', request.uri) request.uri = re.sub(resource, 'sanitized', request.uri) return request - + def process_response(self, response): if 'url' in response: - response['url'] = re.sub('/phoneNumbers/[%2B\d]+', '/phoneNumbers/sanitized', response['url']) + response['url'] = re.sub('/phoneNumbers/[%2B\\d]+', '/phoneNumbers/sanitized', response['url']) response['url'] = re.sub('/identities/([^/?]+)', '/identities/sanitized', response['url']) response['url'] = re.sub('/chat/threads/([^/?]+)', '/chat/threads/sanitized', response['url']) response['url'] = re.sub('/chat/threads/([^/?]+)/messages/([^/?]+)', '/chat/threads/sanitized/messages/sanitized', response['url']) @@ -90,11 +90,11 @@ def process_request(self, request): item['repeatabilityRequestId'] = self._replacement if "repeatabilityFirstSent" in item: item['repeatabilityFirstSent'] = self._replacement - + request.body = (json.dumps(body)).encode() except (KeyError, ValueError, TypeError): return request - + return request def process_response(self, response): @@ -135,13 +135,15 @@ def process_response(self, response): response['body']['string'] = self._replace_keys(response['body']['string']) return response - + def _replace_keys(self, body): import collections.abc + def _replace_recursively(data): + if (isinstance(data, str)): return - + if isinstance(data, dict): for key in data: value = data[key] 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 4142c423d39..4600b55445e 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,51 +9,50 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:19:22 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:49:43.6638803+00:00"}}' + "expiresOn": "2023-12-16T10:19:22.699453+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - - '122' + - '121' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:42 GMT + - Fri, 15 Dec 2023 10:19:22 GMT ms-cv: - - hRqkCkvWq06NlMO/sHfpUw.0 + - PwL6vwFcz0KRLxrhYtmTXQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0526sZAAAAAB3zBAyLMJNSothkG1GY0SJWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Kih8ZQAAAADvc03ElRLKRoBwBrWkuI8XSFlEMzBFREdFMDQyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 105ms + - 22ms status: code: 201 message: Created - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -62,46 +61,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:19:23 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:49:44.339964+00:00"}}' + "expiresOn": "2023-12-16T10:19:23.4771128+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - - '121' + - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:43 GMT + - Fri, 15 Dec 2023 10:19:23 GMT ms-cv: - - T4fpgdWC9EuyJK3tnzdEWw.0 + - VTPQSlnUJEaWAkupKoGrSA.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 06G6sZAAAAAAZ5/DA/z03TLHqLBm+i/lSWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Kyh8ZQAAAADAKO6C0LpYQKT1fSfgCqKiSFlEMzBFREdFMDYxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 109ms + - 28ms status: code: 201 message: Created @@ -119,37 +117,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - 6197203b-8d49-4a7e-bb53-f5d5c04736b7 + - 28ef280c-e90a-435a-b31e-d2d2c417192a method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2023-07-10T20:49:44Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:19:24Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '197' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:19:24 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3Aey7cZy86lolBPk3ms-F2xDQ5DIDjsRESTQpfByzw9g01@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AuV2xjtzQ382WgdtmJhM-uRcwKHrPmvMPpyWKbUVWgZE1@thread.v2 ms-cv: - - 6FSq34pTs0e3Ax+mGIAp/w.0 + - H8Fjzq3IikSq+d4fSXapOA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06G6sZAAAAABTdu7fmXmpTqBGHDQeHoV8WVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Kyh8ZQAAAADtIYHEeVFVS6lPLVWZiQ6vSFlEMzBFREdFMDQxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 389ms + - 1033ms status: code: 201 message: Created @@ -168,31 +169,34 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2023-11-07 response: body: string: '{}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '2' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:45 GMT + - Fri, 15 Dec 2023 10:19:24 GMT ms-cv: - - V8JRaRrMuUqZ7lgrNUW9jw.0 + - gZTCHGFtaEazyGQIKsm6vw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06W6sZAAAAABZdWKzggTrTJyHssgMuo43WVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0LSh8ZQAAAAA2cP/BfuZJSZRBmScHphmoSFlEMzBFREdFMDYyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 215ms + - 363ms 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 f11588076d8..3dbf78c140d 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:51:22 GMT + - Fri, 15 Dec 2023 10:21:07 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:51:21.7521258+00:00"}}' + "expiresOn": "2023-12-16T10:21:08.5550606+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:21 GMT + - Fri, 15 Dec 2023 10:21:08 GMT ms-cv: - - IZbpIlnipU26lyUFveMm4A.0 + - ivjBSllGzkqAWUXI7f0cOw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0SW+sZAAAAAB/Qzs2ZidpQJo8DmftGCCvWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kyh8ZQAAAABFdGCgxgNSSImMokfiVwMLSFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 107ms + - 26ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - 5619959c-2dbe-44bb-b9c2-ba3dc3b2d3fb + - 3a5d540b-29e7-4488-9837-33e4c66bbb99 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2023-07-10T20:51:22Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:21:09Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '197' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:22 GMT + - Fri, 15 Dec 2023 10:21:09 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3ASNhaQPNLG31hX0ampXPv9s_PnGReG2yRN5GyHYjpLI81@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3ADQHrjSLPaoH0ChAzskr2bb8jqovI6wpv1d-0D_d_XtU1@thread.v2 ms-cv: - - R+zhnYOADkSK6xoYCfeVgA.0 + - BW1Qy8opzEO9Ls+8L3Eecg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0Sm+sZAAAAAA4ugO/KWMISo11o11lZL8XWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lCh8ZQAAAAAohULGN6xoT56BVtPL+6eiSFlEMzBFREdFMDYxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 613ms + - 924ms status: code: 201 message: Created @@ -115,32 +117,35 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2023-11-07 response: body: string: '{"invalidParticipants": [{"code": "403", "message": "Permissions check failed", "target": "8:acs:00000000-1111-2222-3333-444444444444_55555555-6666-7777-8888-999999999999"}]}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '174' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:22 GMT + - Fri, 15 Dec 2023 10:21:09 GMT ms-cv: - - jdyGDE48ukyjkzIhJD4Gdw.0 + - sqiQquzcwEG0G6LLFy3/oA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0S2+sZAAAAAD6HXxHkCJrRI1r97hRKTFxWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lih8ZQAAAAAvXpkeDSgVSqLHnYCX1vPySFlEMzBFREdFMDYxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 103ms + - 265ms status: code: 201 message: Created @@ -159,28 +164,31 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2023-11-07 response: body: string: '{"CommunicationError": {"Code": "BadRequest", "Message": "Identifier format is invalid (8:acs:fakeid===).", "Details": []}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-type: - application/json date: - - Mon, 10 Jul 2023 20:51:22 GMT + - Fri, 15 Dec 2023 10:21:10 GMT ms-cv: - - TUaD2f9vK02elqloflZZqA.0 + - ES7+91ZRlUGz0lLQJE3kAg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0S2+sZAAAAADvmK8L9V0cS6LXz/G4F0ihWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lih8ZQAAAAAQTB3OdtluR4rQFSRm6fhXSFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: 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 493738278ea..8d33fedb598 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:52:59 GMT + - Fri, 15 Dec 2023 10:19:24 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:52:59.0931247+00:00"}}' + "expiresOn": "2023-12-16T10:19:25.3530172+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:58 GMT + - Fri, 15 Dec 2023 10:19:24 GMT ms-cv: - - eWmiIAjOvEifU/SgcOvbmA.0 + - 6Q3zYbOP/kKFC8fnjACzHw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0q2+sZAAAAAAuKStnQAG/QYkAvtyw6yUzWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0LCh8ZQAAAAByVYbsnLiUSK5KoLv7m3h9SFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 107ms + - 23ms status: code: 201 message: Created @@ -66,42 +65,45 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - a76defc8-6f12-4716-b91d-ae2c02e7c076 + - d90f4828-6a0f-478b-9e82-5611496644f2 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2023-07-10T20:52:59Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:19:25Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '197' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:58 GMT + - Fri, 15 Dec 2023 10:19:25 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AvDiG4XnlmM2bgC8FG5ADT4X3_xXw6Kn_PYiWC6_q2xg1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AJTR7NfYsIxmeg-ZXcwiujFD183zWMU7WcAk1qvzesrk1@thread.v2 ms-cv: - - Muh5MHoIG0ySGJdbm0REwQ.0 + - pkhq6ZSvKEWGRjaOxfmMTA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0q2+sZAAAAADXSA54L3QET5h8d8NIVhLeWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0LSh8ZQAAAADl94iCYa0FT4xFjyXE5wHjSFlEMzBFREdFMDYyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 394ms + - 803ms status: code: 201 message: Created - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -110,46 +112,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:53:00 GMT + - Fri, 15 Dec 2023 10:19:26 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:53:00.277982+00:00"}}' + "expiresOn": "2023-12-16T10:19:27.0968025+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - - '121' + - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:59 GMT + - Fri, 15 Dec 2023 10:19:26 GMT ms-cv: - - 4EHAebGKOUmUZ04vaLGBVQ.0 + - tinQMnIxgUqb5I87X3UxtA.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0rG+sZAAAAABe73jxtd4zR7wyPhdN2Q1tWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Lih8ZQAAAACy1WCWYUxTT6pmzIiQPhfTSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 86ms + - 21ms status: code: 201 message: Created @@ -168,31 +169,34 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2023-11-07 response: body: string: '{}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '2' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:59 GMT + - Fri, 15 Dec 2023 10:19:27 GMT ms-cv: - - NDyST1VuGkandYs1nPYwHA.0 + - gMePsS1FcU2gcGr0yGSf8A.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0rG+sZAAAAAAUlc/++y6KR6f20wXrDxUlWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Lyh8ZQAAAAA8sZNpxuDyTaQple27EnTKSFlEMzBFREdFMDQxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 112ms + - 431ms 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 3e2b31b889b..bd58287af43 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:21:10 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:49:43.5185977+00:00"}}' + "expiresOn": "2023-12-16T10:21:11.4957171+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:43 GMT + - Fri, 15 Dec 2023 10:21:11 GMT ms-cv: - - 3sj5a1FEnECpQholWz9RaQ.0 + - KSqqqzlCG0mHtRHUKVCsRg.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0526sZAAAAAC+t9UZ6i6ITITN5T9flF8AWVZSMzExMDAwMTE1MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lih8ZQAAAABgawjR/vEcSrFvx9u4SZfZSFlEMzBFREdFMDYwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 108ms + - 26ms status: code: 201 message: Created @@ -66,42 +65,45 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - fb9bc2d7-1d79-466b-9bc0-4ce91f012d97 + - 774b6181-2435-4a0e-b4ed-b81b07ccd67a method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2023-07-10T20:49:44Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:21:12Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '197' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:43 GMT + - Fri, 15 Dec 2023 10:21:12 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A_D_EQfoz17llj8ZzLAML1u3wNNjeuM1ESWbWkc9xYhc1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AZKn098yn5AgGU9sTjbBNyxIK8NfaCRtrWIlM9zkUnzA1@thread.v2 ms-cv: - - Sk/78ViTO0+MWER15H0Zhg.0 + - +1+pgnjQqE2Oz67QC/Nhdw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0526sZAAAAACA2dWpoPH2TJvqa/P62CrGWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lyh8ZQAAAABamQNhcE6eRoXDQbitMxLxSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 402ms + - 1071ms status: code: 201 message: Created - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -110,46 +112,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:49:45 GMT + - Fri, 15 Dec 2023 10:21:13 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:49:44.7328955+00:00"}}' + "expiresOn": "2023-12-16T10:21:13.7152541+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:21:13 GMT ms-cv: - - g6nBErfRR0GelnMAIG3Vkw.0 + - ZetSwq3tNUq18zcJCnWi9Q.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 06G6sZAAAAAByzF7iAgyXQq6l3ME+1RpvWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mSh8ZQAAAAAjvZnMlbeSTpomBqbuBOkjSFlEMzBFREdFMDQxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 106ms + - 21ms status: code: 201 message: Created @@ -168,31 +169,34 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2023-11-07 response: body: string: '{}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '2' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:21:13 GMT ms-cv: - - D7UF3NG1+UmRHSXgbSUhXg.0 + - meEP52Vf4ki0YLDP/3opZg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06W6sZAAAAADQKNSf+7JSQ4Y6QalhdN5pWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mih8ZQAAAABg399YqocGQq1nPG/Qqos9SFlEMzBFREdFMDYxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 275ms + - 376ms 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 c69600803cd..af4d0d33dde 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:51:21 GMT + - Fri, 15 Dec 2023 10:19:22 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:51:20.8951086+00:00"}}' + "expiresOn": "2023-12-16T10:19:22.6698599+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:20 GMT + - Fri, 15 Dec 2023 10:19:22 GMT ms-cv: - - axQsBLk4w0qR8ff0nlFPkg.0 + - UfGE7PqEOkiHZYjfqgoVyQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0SG+sZAAAAADGZJMD8FmpTrv7gUwvMjihWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Kih8ZQAAAACKmYUV5POHQ4RnN7W1y+XdSFlEMzBFREdFMDYyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 108ms + - 25ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - 0cbb54e1-f99e-45bc-b1c1-4975980d2808 + - ce37b155-c840-4889-987d-432ba5a3cc98 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-topic", "createdOn": - "2023-07-10T20:51:21Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:19:23Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '197' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:21 GMT + - Fri, 15 Dec 2023 10:19:23 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AmjI8q_4o6LKt2ABXsQNgYh-YUZhFMac0EOoP-dKsnYY1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3Ag0bcW8dXseIqLC-hvVcWw10oHj9_KHTDmDgKGIi1wHI1@thread.v2 ms-cv: - - 6VFnEJ1iDkKMn/O+cJ1JFQ.0 + - 76/vlVR6/kSgFN/aydCXmQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0SW+sZAAAAAAE8dHyNWi6QYvofR8tyCrTWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Kyh8ZQAAAADXaukp6oknT6W+Vm7q2G9fSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 360ms + - 910ms 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 9c63fb0268e..a42a6a2e583 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:52:57 GMT + - Fri, 15 Dec 2023 10:21:05 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:52:57.0640974+00:00"}}' + "expiresOn": "2023-12-16T10:21:06.3267122+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:56 GMT + - Fri, 15 Dec 2023 10:21:05 GMT ms-cv: - - svcuKG4/jEuXt29N8KZIzw.0 + - sHiMEzMVBkWgkLZhu+Ehjw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0qG+sZAAAAADozhAKSpoCT7fLzP3XNQZnWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kSh8ZQAAAAAqns7IomLKQ48h26ngq6FVSFlEMzBFREdFMDQyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 106ms + - 22ms 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 3f38cfb49fb..a0540fa66d9 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:49:43 GMT + - Fri, 15 Dec 2023 10:19:22 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:49:43.6137211+00:00"}}' + "expiresOn": "2023-12-16T10:19:22.9582595+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:42 GMT + - Fri, 15 Dec 2023 10:19:22 GMT ms-cv: - - wc9igD9u8UelM4eCcvybzA.0 + - utyM6xaFFEGsJHGBXL4ffw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0526sZAAAAAA7FXHwLxzyS6+jqmUfeVntWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Kih8ZQAAAAC3PQ5J7j56Raxd6+wJy6jhSFlEMzBFREdFMDYwNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 107ms + - 29ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - 47eb38d7-b0b2-4ca2-8a94-107326f6c9bb + - 3868cffa-b958-41e8-87ad-3b735bce9be7 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-other-topic", "createdOn": - "2023-07-10T20:49:44Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:19:23Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '203' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:19:23 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AFmQQIpENZZse0_PNXDz0Uq0LWQskKqrDm_zqVUQuOeA1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AglHRj4Ai9cG3E1TigjbnvGiGhJSCYNUb5AwQ9j0jiV81@thread.v2 ms-cv: - - x7BQXLEMukqAbdIyiTV2ZQ.0 + - rO3Ua9P9l0SPnlMlxlmNRg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06G6sZAAAAABj6dlHTynpSYP3EYLgkZJqWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Kyh8ZQAAAABP8KTCKTR4QpxMNHlNqmIGSFlEMzBFREdFMDYxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 444ms + - 983ms status: code: 201 message: Created @@ -114,33 +116,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2023-11-07 response: body: string: '{"id": "sanitized"}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '19' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:19:24 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AFmQQIpENZZse0_PNXDz0Uq0LWQskKqrDm_zqVUQuOeA1@thread.v2/messages/1689022184943 + - https://clitest000002.communication.azure.com/chat/threads/19%3AglHRj4Ai9cG3E1TigjbnvGiGhJSCYNUb5AwQ9j0jiV81@thread.v2/messages/1702635565104 ms-cv: - - oO6k7uvI6UilvwSXudyreg.0 + - JDQ5u6fmZEyDR4BBEqm/Gw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06G6sZAAAAAC17oHNNjuUR6CEZkwlM5F6WVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0LCh8ZQAAAAAjhYdpfoVLSboyMjo/H+36SFlEMzBFREdFMDQwOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 155ms + - 364ms status: code: 201 message: Created @@ -154,34 +159,37 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2023-11-07 response: body: - string: '{"id": "sanitized", "type": "text", "sequenceId": "3", "version": "1689022184943", - "content": {"message": "Hello!"}, "senderDisplayName": "", "createdOn": "2023-07-10T20:49:44Z", + string: '{"id": "sanitized", "type": "text", "sequenceId": "3", "version": "1702635565104", + "content": {"message": "Hello!"}, "senderDisplayName": "", "createdOn": "2023-12-15T10:19:25Z", "senderCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '277' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:19:25 GMT ms-cv: - - 8Zrurq53v0qqafCzNy0BqQ.0 + - xJEPC5nlS0GXt5GU9T0bAA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06W6sZAAAAADzPcS1D78STbRmQ1JMeqXtWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0LSh8ZQAAAAC5J/QXiA+NRavH9S5teX9mSFlEMzBFREdFMDQyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 87ms + - 246ms status: code: 200 message: OK @@ -197,27 +205,30 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: DELETE - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2023-11-07 response: body: string: '' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview date: - - Mon, 10 Jul 2023 20:49:45 GMT + - Fri, 15 Dec 2023 10:19:25 GMT ms-cv: - - N0w4KYv7pkyGA7hyYZjiHw.0 + - sRtUOGNzE0OH2/kaz7FjKg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06W6sZAAAAADLeGmT6AwIQIUE0jJaUgopWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Lih8ZQAAAADq2Ddh8ZaURZ1Q8q/O2cpFSFlEMzBFREdFMDQwNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 290ms + - 417ms status: code: 204 message: No Content @@ -231,34 +242,37 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2023-11-07 response: body: - string: '{"id": "sanitized", "type": "text", "sequenceId": "3", "version": "1689022185795", - "content": {"message": ""}, "senderDisplayName": "", "createdOn": "2023-07-10T20:49:44Z", + string: '{"id": "sanitized", "type": "text", "sequenceId": "3", "version": "1702635566351", + "content": {"message": ""}, "senderDisplayName": "", "createdOn": "2023-12-15T10:19:25Z", "senderCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": - {"id": "sanitized"}}, "deletedOn": "2023-07-10T20:49:45Z"}' + {"id": "sanitized"}}, "deletedOn": "2023-12-15T10:19:26Z"}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '308' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:45 GMT + - Fri, 15 Dec 2023 10:19:26 GMT ms-cv: - - 1xAiyuMNR0mOWsBumu1Yzg.0 + - ZhmBCmc1nEmB1+KjWldNpA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06m6sZAAAAACSxOVk0KWyQr+1nGVreokvWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Lih8ZQAAAAABgPqjguCLQpy+Y96GvTf3SFlEMzBFREdFMDYxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 146ms + - 248ms 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 be81da32c72..3d98003bc5c 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:51:22 GMT + - Fri, 15 Dec 2023 10:21:10 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:51:22.5214121+00:00"}}' + "expiresOn": "2023-12-16T10:21:11.7503836+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:22 GMT + - Fri, 15 Dec 2023 10:21:11 GMT ms-cv: - - NEOyxiW9K06Q3D8aK3aUMA.0 + - iylFW+fPME24bJ9N5DsO+A.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0Sm+sZAAAAAA4GiIoL3K4QJD7Gss3nHiYWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lih8ZQAAAAAv/MrLXvqESZQYml5droNGSFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 108ms + - 27ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - f01b7d86-1178-4008-82ef-7d9643b81c0c + - 0e5b6dbc-e1b1-4ec5-8341-e04f7a2ae979 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-topic", "createdOn": - "2023-07-10T20:51:22Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:21:12Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '197' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:22 GMT + - Fri, 15 Dec 2023 10:21:12 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3ApucAIxTOPpk3oKHPUNUv12BWlNqTlzmRsjkT5ywI5Qw1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AoXZGr7FspCtJPb7abnEEaX4g_UgRHIk4NfFAWEMz1bo1@thread.v2 ms-cv: - - FehnmSyPJU6c5foy/dcrcQ.0 + - r6HAEUPloEeOvlF01u59tw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0Sm+sZAAAAAD29d0ya2uVToAQQmvTNSvQWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mCh8ZQAAAAChvU7FyxnmRLcZTHDI9xyASFlEMzBFREdFMDYxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 492ms + - 723ms status: code: 201 message: Created @@ -112,27 +114,30 @@ interactions: Content-Length: - '0' User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: DELETE - uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2023-11-07 response: body: string: '' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview date: - - Mon, 10 Jul 2023 20:51:23 GMT + - Fri, 15 Dec 2023 10:21:12 GMT ms-cv: - - emZlCdDmeEi6ekpS9Byo9g.0 + - yfqR4U0FVkKPvP9h3Vhn9w.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0S2+sZAAAAACRszpHybHsRpKP1PlER//6WVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mSh8ZQAAAADScw6AeCuuRoHgV2Qso1ufSFlEMzBFREdFMDQyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 286ms + - 411ms 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 0986c53e5fd..28a0018d4ba 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:52:59 GMT + - Fri, 15 Dec 2023 10:19:23 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:52:59.2286696+00:00"}}' + "expiresOn": "2023-12-16T10:19:24.5255282+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:58 GMT + - Fri, 15 Dec 2023 10:19:23 GMT ms-cv: - - 1vDG2dO7E0KLYZnZPz1iyQ.0 + - z+7ghduIC0S0RO9LjJGWyg.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0q2+sZAAAAAApKvTdeOOIR4I9OXsGdokMWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0LCh8ZQAAAABl7AIhIexuR4rBARhn93IdSFlEMzBFREdFMDYxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 106ms + - 26ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - 21df702c-353e-42c5-ae45-e044647de723 + - 3c712ac8-cc9c-4947-aa3f-8833e39e2d8e method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "new-topic", "createdOn": - "2023-07-10T20:52:59Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:19:25Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '196' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:59 GMT + - Fri, 15 Dec 2023 10:19:25 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A9mqlAurtDLNKXVUoDbQ_1ZwaKoDDy0QRD98rlSwn6Ko1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AGXRVAcjorcTxKRBZCHVqErD9O8mJdyQOrN7TLPzmFEU1@thread.v2 ms-cv: - - jmzGrv67A0q9rgLVYbbZVQ.0 + - k41DjnOHg0u7a5iiQ83g4g.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0q2+sZAAAAACx2DbvbbqbQojsMnZlSEigWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0LCh8ZQAAAAC8C7Up5gudQbpHweIO9QI3SFlEMzBFREdFMDYxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 390ms + - 1034ms status: code: 201 message: Created @@ -114,33 +116,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2023-11-07 response: body: string: '{"id": "sanitized"}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '19' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:59 GMT + - Fri, 15 Dec 2023 10:19:26 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A9mqlAurtDLNKXVUoDbQ_1ZwaKoDDy0QRD98rlSwn6Ko1@thread.v2/messages/1689022380466 + - https://clitest000002.communication.azure.com/chat/threads/19%3AGXRVAcjorcTxKRBZCHVqErD9O8mJdyQOrN7TLPzmFEU1@thread.v2/messages/1702635566536 ms-cv: - - RvpCiVpUvESVz71TC+m/AQ.0 + - lacvYuD0skOiOi1hbGwO6Q.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0rG+sZAAAAAAhhuWWmuQgTKjVQDAI9Go7WVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Lih8ZQAAAAAiQPsuyHVyQb1/TcacJrsTSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 130ms + - 345ms status: code: 201 message: Created @@ -154,34 +159,37 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2023-11-07 response: body: - string: '{"id": "sanitized", "type": "html", "sequenceId": "3", "version": "1689022380466", - "content": {"message": "hello!"}, "senderDisplayName": "", "createdOn": "2023-07-10T20:53:00Z", - "senderCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": - {"id": "sanitized"}}}' + string: '{"id": "sanitized", "type": "html", "sequenceId": "3", "version": "1702635566536", + "content": {"message": "hello!", "attachments": []}, "senderDisplayName": + "", "createdOn": "2023-12-15T10:19:26Z", "senderCommunicationIdentifier": + {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - - '277' + - '296' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:59 GMT + - Fri, 15 Dec 2023 10:19:27 GMT ms-cv: - - NLrEgrjny0WY1eoTiW2xpQ.0 + - aLKhodYK0kOOAsY5B9Lm7A.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0rG+sZAAAAADmS54xfAGnRJN4ATe3HrjsWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Lyh8ZQAAAAD3hN6ctj+LTpdbS12wdMRhSFlEMzBFREdFMDYyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 94ms + - 324ms 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 533a6ca9c82..70780982501 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:21:10 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:49:43.7578948+00:00"}}' + "expiresOn": "2023-12-16T10:21:11.0439879+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:43 GMT + - Fri, 15 Dec 2023 10:21:10 GMT ms-cv: - - NaYMRpPO6EKbgakXDuDIww.0 + - vaJlNcTcPkyYek/M1i5NKg.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0526sZAAAAAA3HZC6RAoJSpZ9+vyNE6awWVZSMzExMDAwMTE1MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lih8ZQAAAADTR9cODNFRQqxM7TrtGeiBSFlEMzBFREdFMDYxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 113ms + - 24ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - 658757ba-d42b-469f-9360-7b386fe490d1 + - b1d73946-0f04-4ea9-b870-ac62da7c744c method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "another-topic", "createdOn": - "2023-07-10T20:49:44Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:21:11Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '200' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:43 GMT + - Fri, 15 Dec 2023 10:21:11 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A5yYMQin20FlFD8P4Nlfn3FlATYxn5RRMtMogOaKNpvA1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3An3wnefcV12iI3KGUmkuwnMpsKNZBV9MlqhTPCAqaCzE1@thread.v2 ms-cv: - - A5PBKXRUdEmUkJiA63axKA.0 + - JboSkO1QtEaczGp03Ky+EA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06G6sZAAAAABrxIddf9I8Rr+wVeY0zFv7WVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lyh8ZQAAAABArZ/oZzpjS7UZ/hVWoQtxSFlEMzBFREdFMDQwNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 489ms + - 700ms status: code: 201 message: Created @@ -110,38 +112,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?startTime=2022-01-01T00%3A00%3A00.000Z&api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?startTime=2022-01-01T00%3A00%3A00.000Z&api-version=2023-11-07 response: body: string: '{"value": [{"id": "sanitized", "type": "topicUpdated", "sequenceId": - "2", "version": "1689022184544", "content": {"topic": "another-topic", "initiatorCommunicationIdentifier": + "2", "version": "1702635671765", "content": {"topic": "another-topic", "initiatorCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}, "createdOn": - "2023-07-10T20:49:44Z"}, {"id": "sanitized", "type": "participantAdded", "sequenceId": - "1", "version": "1689022184480", "content": {"participants": [{"communicationIdentifier": + "2023-12-15T10:21:11Z"}, {"id": "sanitized", "type": "participantAdded", "sequenceId": + "1", "version": "1702635671738", "content": {"participants": [{"communicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}, "shareHistoryTime": "1970-01-01T00:00:00Z"}], "initiatorCommunicationIdentifier": {"rawId": "sanitized", - "communicationUser": {"id": "sanitized"}}}, "createdOn": "2023-07-10T20:49:44Z"}]}' + "communicationUser": {"id": "sanitized"}}}, "createdOn": "2023-12-15T10:21:11Z"}]}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '686' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:49:44 GMT + - Fri, 15 Dec 2023 10:21:12 GMT ms-cv: - - 1qaPfXin1EedMBqc86Pecw.0 + - Hc7coPUEGk6pyYwM5N9yMg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06W6sZAAAAABPlsCUXOJ9S4bS9Y3YCdUyWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mCh8ZQAAAACwW/ZXJw0/R61QN5DiE99lSFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 129ms + - 256ms 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 60a0e103d8f..cc90ba13762 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:51:21 GMT + - Fri, 15 Dec 2023 10:19:23 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:51:20.5851957+00:00"}}' + "expiresOn": "2023-12-16T10:19:23.8328845+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:20 GMT + - Fri, 15 Dec 2023 10:19:23 GMT ms-cv: - - cmIBQ+Fq4k+d+zGb+6GRSA.0 + - qHUmratTTkOj+HBGRes7QQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0SG+sZAAAAADswNcs9TznRr/PJAXHmvV+WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Kyh8ZQAAAABYOZ08OvhwSq8Nm1MppPkfSFlEMzBFREdFMDQwOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 112ms + - 30ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - 6eed5b5a-bcf1-4346-94a7-b6c3c26816b1 + - a0aebc07-6fcd-4937-afa5-93b4ee3f4097 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-topic", "createdOn": - "2023-07-10T20:51:20Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:19:24Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '197' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:21 GMT + - Fri, 15 Dec 2023 10:19:24 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AiS4_u7Sw9m_RemCYS0fzYtkcHoq3A-4PI1O-BOfPm2I1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3Ak_0YjsYIvhr4K7SZwB8_TiPmQCcfKFA86IOuL-fzGZE1@thread.v2 ms-cv: - - 4oX31mdhiUqtspba3AN9mg.0 + - baLxny62K0+ignoYwN+oug.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0SG+sZAAAAAC/0vxbrfLuSpa1IIiWBxAZWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0LCh8ZQAAAABeObDlDQ+/SLGivxzhLWFuSFlEMzBFREdFMDQyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 279ms + - 824ms status: code: 201 message: Created @@ -110,32 +112,35 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants?api-version=2023-11-07 response: body: string: '{"value": [{"communicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}, "shareHistoryTime": "1970-01-01T00:00:00Z"}]}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '150' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:51:21 GMT + - Fri, 15 Dec 2023 10:19:25 GMT ms-cv: - - gXGs0EtKo0ylxWsFnvjYxQ.0 + - xDv7SsKyNkG0a1NW7o/0iQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0SW+sZAAAAADEmIoIzkjmQqxgxV4ay2h/WVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0LSh8ZQAAAADLEm27TYOfRYBv1vJ2Rk6+SFlEMzBFREdFMDYxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 402ms + - 293ms 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 59566b143f3..569d4c939d9 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:52:57 GMT + - Fri, 15 Dec 2023 10:21:12 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:52:57.2823041+00:00"}}' + "expiresOn": "2023-12-16T10:21:13.0343689+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:52:56 GMT + - Fri, 15 Dec 2023 10:21:12 GMT ms-cv: - - oJaKI02pRESsTJNgi/5qvg.0 + - zoghc2ajqE6uJbLg6iSF/A.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0qW+sZAAAAACiQ3En7IpdSptqZTzX/qshWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mCh8ZQAAAACWTM6GpuUQSYHt1n1TdE5wSFlEMzBFREdFMDQyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 108ms + - 25ms status: code: 201 message: Created @@ -62,31 +61,34 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants?api-version=2023-11-07 response: body: string: '{"CommunicationError": {"Code": "NotFound", "Details": []}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-type: - application/json date: - - Mon, 10 Jul 2023 20:52:57 GMT + - Fri, 15 Dec 2023 10:21:13 GMT ms-cv: - - EfkHW60cIEOhbu+eYilTjw.0 + - lP51POfL1E2ARTIKLg/rSg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0qW+sZAAAAACPILa6wQccSYRGUct3+LN2WVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mSh8ZQAAAAAezoE1zkOYQaIZTJA7XyM7SFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 53ms + - 232ms status: code: 404 message: Not Found 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 9ae756570c0..51a4a72ff67 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:54:33 GMT + - Fri, 15 Dec 2023 10:22:49 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:54:32.8877721+00:00"}}' + "expiresOn": "2023-12-16T10:22:49.6639378+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:32 GMT + - Fri, 15 Dec 2023 10:22:48 GMT ms-cv: - - T0mEi22X50mb9heps0sMQQ.0 + - e/xlYQAbCkC4MXAdV0UkqA.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0CHCsZAAAAAB9rf7O/puNSZi0zFSNzqHRWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0+Sh8ZQAAAACSt2vVpD3vS5FJa+RYDIRrSFlEMzBFREdFMDYxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 108ms + - 24ms 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 e6ebaa750b9..f6b7bd8df46 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:56:09 GMT + - Fri, 15 Dec 2023 10:24:35 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:56:08.5028712+00:00"}}' + "expiresOn": "2023-12-16T10:24:36.4050407+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:08 GMT + - Fri, 15 Dec 2023 10:24:35 GMT ms-cv: - - gOczZ3+//0+74eToHLw6EQ.0 + - U6zOYoItvEq22XZRloZalQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0aHCsZAAAAABTnAgOLf7uQL32WlqMADCCWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Yyl8ZQAAAABZlv/mxlNETZcoH1tg7/kWSFlEMzBFREdFMDYxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 109ms + - 27ms status: code: 201 message: Created @@ -62,31 +61,34 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"value": []}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '13' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:08 GMT + - Fri, 15 Dec 2023 10:24:36 GMT ms-cv: - - EkNdlpTNRE+Dht9JyRzqdA.0 + - mlakUO32rEGDLhj2aTSGVQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0aHCsZAAAAABNfoO+5cZWSqtN5ZZI+RevWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ZCl8ZQAAAAArMOOt6E1dRoBPVAd018k0SFlEMzBFREdFMDQyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 118ms + - 758ms status: code: 200 message: OK 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 c9d0021dfca..c1b11ca749c 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:57:45 GMT + - Fri, 15 Dec 2023 10:26:20 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:57:45.2676985+00:00"}}' + "expiresOn": "2023-12-16T10:26:20.6327731+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:57:44 GMT + - Fri, 15 Dec 2023 10:26:20 GMT ms-cv: - - PA026RyHf0OkOnqV2cRaiQ.0 + - af7xiU6EwkuToIPagnpxpA.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0yHCsZAAAAAADfxxod7MlTpCdgr1vRy07WVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0zCl8ZQAAAAAu+USi9O1eR4UlYijlAa3NSFlEMzBFREdFMDYyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 105ms + - 29ms status: code: 201 message: Created @@ -62,31 +61,34 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"value": []}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '13' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:57:45 GMT + - Fri, 15 Dec 2023 10:26:20 GMT ms-cv: - - YyoID2cuKEW9CZHaQQAF0Q.0 + - ICqJGws+SkOWsAyaBPp12w.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0yXCsZAAAAABTXShVUo/oSom9Kp8de/RIWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0zSl8ZQAAAADTXc2WOdNSSIpW9mGXbMj9SFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 28ms + - 247ms 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 68adac2f5e0..a6ac7838c2b 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:54:33 GMT + - Fri, 15 Dec 2023 10:22:56 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:54:33.2247665+00:00"}}' + "expiresOn": "2023-12-16T10:22:57.2777764+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:33 GMT + - Fri, 15 Dec 2023 10:22:57 GMT ms-cv: - - v5hsYrzZQUaKPziW8KCOQg.0 + - TD5d2gXwT065uGAxgYqTcw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0CHCsZAAAAABWTLQ2gUveSKPdUL/k9R+CWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ACl8ZQAAAAAbwYjkSXpvRrn7DwcnUQEPSFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 108ms + - 25ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - 90b3d5c5-9160-4e01-83b1-e66610858b7b + - 4d1f2fa1-52f5-4152-bf54-dc436df9d442 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "thread-topic", "createdOn": - "2023-07-10T20:54:33Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:22:57Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '199' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:33 GMT + - Fri, 15 Dec 2023 10:22:58 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AejSU3WJ1oznFIephzOQpNMm_sbcn0OalpLfoKHyPcio1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3ACeJpT5pOeJfM_YKQJQVqVuICzI8y-VjtFHCc0LkIyho1@thread.v2 ms-cv: - - QTlD6h7km0Gj7roOVRCr2A.0 + - kcB7pLF3Lk+gBqkYPWZd7A.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0CXCsZAAAAACp0cXqjvcWTaodCUBn0GneWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ASl8ZQAAAAApmk5FR9zCTp2X10AM6IYuSFlEMzBFREdFMDYyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 572ms + - 679ms status: code: 201 message: Created @@ -110,31 +112,34 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readReceipts?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readReceipts?api-version=2023-11-07 response: body: string: '{"value": []}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '13' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:34 GMT + - Fri, 15 Dec 2023 10:22:58 GMT ms-cv: - - yxnaNYg4qk6A7CBbQniOlQ.0 + - 6YYvoWX7EEOqGlHfpT1sCA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0CnCsZAAAAAAPAEUnuU6aR4O9LOTqTxH9WVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ail8ZQAAAABZqolVFYQGTLYZFQxDkY1rSFlEMzBFREdFMDQxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 91ms + - 299ms status: code: 200 message: OK @@ -148,43 +153,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2023-11-07 response: body: string: '{"value": [{"id": "sanitized", "type": "topicUpdated", "sequenceId": - "2", "version": "1689022473944", "content": {"topic": "thread-topic", "initiatorCommunicationIdentifier": + "2", "version": "1702635778095", "content": {"topic": "thread-topic", "initiatorCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}, "createdOn": - "2023-07-10T20:54:33Z"}, {"id": "sanitized", "type": "participantAdded", "sequenceId": - "1", "version": "1689022473858", "content": {"participants": [{"communicationIdentifier": + "2023-12-15T10:22:58Z"}, {"id": "sanitized", "type": "participantAdded", "sequenceId": + "1", "version": "1702635778030", "content": {"participants": [{"communicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}, "shareHistoryTime": "1970-01-01T00:00:00Z"}], "initiatorCommunicationIdentifier": {"rawId": "sanitized", - "communicationUser": {"id": "sanitized"}}}, "createdOn": "2023-07-10T20:54:33Z"}]}' + "communicationUser": {"id": "sanitized"}}}, "createdOn": "2023-12-15T10:22:58Z"}]}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '685' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:34 GMT + - Fri, 15 Dec 2023 10:22:59 GMT ms-cv: - - bye/W6XLOkm5qkp82ky++A.0 + - oRAApVk5Ik2MPXPh6gPrBA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0CnCsZAAAAAA4TiG5JXcpRITLBNWFhX6dWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ayl8ZQAAAAAOpiVC+b6vQogafvim7hi/SFlEMzBFREdFMDQxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 219ms + - 231ms status: code: 200 message: OK - request: - body: '{"chatMessageId": "1689022473944"}' + body: '{"chatMessageId": "1702635778095"}' headers: Accept: - application/json @@ -197,29 +205,32 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readReceipts?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readReceipts?api-version=2023-11-07 response: body: string: '' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '0' date: - - Mon, 10 Jul 2023 20:54:35 GMT + - Fri, 15 Dec 2023 10:22:59 GMT ms-cv: - - V0sh5E9eFkaHVryU4SxUCw.0 + - LfuLG4ondk+IGvxCaRu3zQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0C3CsZAAAAABNKlKEptQUQ7Xgrequ/D04WVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0BCl8ZQAAAAAl4wyRdoupQ6PGPYiQvfWFSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 368ms + - 267ms status: code: 200 message: OK @@ -233,33 +244,36 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readReceipts?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readReceipts?api-version=2023-11-07 response: body: string: '{"value": [{"senderCommunicationIdentifier": {"rawId": "sanitized", - "communicationUser": {"id": "sanitized"}}, "chatMessageId": "1689022473944", - "readOn": "2023-07-10T20:54:35Z"}]}' + "communicationUser": {"id": "sanitized"}}, "chatMessageId": "1702635778095", + "readOn": "2023-12-15T10:23:00Z"}]}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '180' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:36 GMT + - Fri, 15 Dec 2023 10:23:00 GMT ms-cv: - - LdKofxCydkuAAX8E20NKsw.0 + - 6fcqWGLZe0Sx8MQN5rj29g.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DHCsZAAAAAAlTmAf+kB3TaeP26878idYWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0BCl8ZQAAAACzsiKnh5B1Trjk2rPr2ELuSFlEMzBFREdFMDYwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 140ms + - 221ms 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 d8dc2bb97be..3e3cce2c446 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,51 +9,50 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:56:12 GMT + - Fri, 15 Dec 2023 10:24:43 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:56:11.6510376+00:00"}}' + "expiresOn": "2023-12-16T10:24:44.3750262+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:11 GMT + - Fri, 15 Dec 2023 10:24:43 GMT ms-cv: - - UEYN9mN9Nk+xIyC90sJ64A.0 + - aaXaK6UqB0S6+flPwMcGXw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0a3CsZAAAAADMNqF41LFmQaulOXNbyxQqWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ayl8ZQAAAADwTbAZrxaERKKIFfdjmBnkSFlEMzBFREdFMDYxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 106ms + - 24ms status: code: 201 message: Created - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -62,46 +61,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:56:12 GMT + - Fri, 15 Dec 2023 10:24:44 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:56:12.0804013+00:00"}}' + "expiresOn": "2023-12-16T10:24:45.1405329+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:11 GMT + - Fri, 15 Dec 2023 10:24:44 GMT ms-cv: - - pxKyxeAdvUKZR4A5ufXewA.0 + - a2bW8XJZ+kyIGiHXytRsXQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bHCsZAAAAABTGD7Zz/HESpKSPzh4fKbYWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0bCl8ZQAAAAD4Q5XQO7CCTbUC5075EItKSFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 105ms + - 26ms status: code: 201 message: Created @@ -119,37 +117,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - ef353a94-2285-46d4-bfdd-caa2b5968432 + - 221a0e68-089b-4d93-8676-5f697bdc5c5e method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2023-07-10T20:56:12Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:24:45Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '197' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:12 GMT + - Fri, 15 Dec 2023 10:24:46 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AAQ8KQ-IpE-oUjLHzk8P-5VRgolgRbD-PW0QDzCufaK81@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3Ayd4YgKgNyc4aIxXM4FObL5YMAkHZcFmvVtybNIbjGiI1@thread.v2 ms-cv: - - 3TWLmPINb0a2U83dcZywZg.0 + - hqos5KTGQkCzL/hD/A1g8w.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bHCsZAAAAAB15K9qV5n9QZDcsRq8acbJWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0bSl8ZQAAAAC58/JZltKaSZc0w6eUS7LqSFlEMzBFREdFMDYyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 452ms + - 727ms status: code: 201 message: Created @@ -168,31 +169,34 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:add?api-version=2023-11-07 response: body: string: '{}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '2' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:12 GMT + - Fri, 15 Dec 2023 10:24:46 GMT ms-cv: - - a2JWF1hUx0+gw38yFUVGOg.0 + - Frq+8At5BkSFg/weYNmRag.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bXCsZAAAAABStuWGbuRPR6isxGpxLrgBWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0bil8ZQAAAAA8vC+FozlST5XQQw28ZXvySFlEMzBFREdFMDQyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 139ms + - 426ms status: code: 201 message: Created @@ -210,27 +214,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:remove?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:remove?api-version=2023-11-07 response: body: string: '' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview date: - - Mon, 10 Jul 2023 20:56:13 GMT + - Fri, 15 Dec 2023 10:24:47 GMT ms-cv: - - 3JArGqd9/ESx3f8XaM4H/A.0 + - FPTCQpYz50Gf2hsMnxpahA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bXCsZAAAAADk3h7uLWWATIbaLViIHrRPWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0byl8ZQAAAAA9nHrAHulXSaLOZOB4iXqhSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 254ms + - 423ms status: code: 204 message: No Content @@ -248,32 +255,35 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:remove?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:remove?api-version=2023-11-07 response: body: string: '{"CommunicationError": {"Code": "BadRequest", "Message": "Identifier format is invalid (8:acs:fakeid).", "Details": []}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-type: - application/json date: - - Mon, 10 Jul 2023 20:56:13 GMT + - Fri, 15 Dec 2023 10:24:47 GMT ms-cv: - - Tz6+lpZJx0Oz+UCHzkXv5Q.0 + - o0rstz2XCEeuZXxcps3MRw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0bnCsZAAAAADd1gKfxNBrSLSXd5Kj1rSfWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0cCl8ZQAAAACIZhij3jQLT6O0WmUO+0bYSFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1ms + - 4ms status: code: 400 message: Bad Request @@ -291,27 +301,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:remove?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:remove?api-version=2023-11-07 response: body: string: '' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview date: - - Mon, 10 Jul 2023 20:56:14 GMT + - Fri, 15 Dec 2023 10:24:48 GMT ms-cv: - - DPggn1YuFE6h9gLmiSbOcg.0 + - TPK77djlrE+G/Qt9WehJbQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bnCsZAAAAACNJUPztO5LTojud4fooET4WVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0cCl8ZQAAAABItUnvfXuaSZOOJ6Xr9DJjSFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 110ms + - 397ms status: code: 204 message: No Content @@ -329,33 +342,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:remove?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants/:remove?api-version=2023-11-07 response: body: string: '{"CommunicationError": {"Code": "Forbidden", "Message": "The initiator doesn''t have the permission to perform the requested operation.", "Details": []}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-type: - application/json date: - - Mon, 10 Jul 2023 20:56:15 GMT + - Fri, 15 Dec 2023 10:24:49 GMT ms-cv: - - YFlr6eeid0i+pBF/gRNFEg.0 + - tnK1eMU1LEiAoBPuzo0orA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0b3CsZAAAAAATOomj7y32T6wv6XTLzLItWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0cSl8ZQAAAACqeyRnXk/iSJnK9JR3oKRLSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 113ms + - 221ms 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 52f38a53a5a..e18b0ce9b01 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:57:51 GMT + - Fri, 15 Dec 2023 10:26:30 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:57:50.5667156+00:00"}}' + "expiresOn": "2023-12-16T10:26:31.2303452+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:57:49 GMT + - Fri, 15 Dec 2023 10:26:30 GMT ms-cv: - - BuIrc0MyVUSxeY2hwaWYPg.0 + - SzCryBcOdUyn/sbd5LKJiw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0znCsZAAAAAAFRUblD1kPT5CjS6Kqqg6BWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 01il8ZQAAAAAlL8WiuT/8QYAfB83kymIXSFlEMzBFREdFMDYyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 109ms + - 25ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - acdd5166-8316-459a-9333-284d10e541a6 + - d2c3fb95-3647-4465-8791-e117d440a2af method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "yet-another-topic", "createdOn": - "2023-07-10T20:57:51Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:26:31Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '204' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:57:50 GMT + - Fri, 15 Dec 2023 10:26:31 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AbQU1zVjBSp9pPhkLlTdWYb_v1HJhiCUKFHHA0xUg_ag1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AFPszWxOg6XHhV08yTtArk9n7JNis86n91M8aJymiwS41@thread.v2 ms-cv: - - xbDJwRR2KkKHJQ6wh75IhA.0 + - gHF/1kspiU21YnDg0UpQag.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0znCsZAAAAAABxMOL5G7TQZsMXfK0P8fvWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 01yl8ZQAAAAB3oGadPtjnRY4UvG8Cd+ZxSFlEMzBFREdFMDYxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 350ms + - 689ms status: code: 201 message: Created @@ -114,33 +116,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2023-11-07 response: body: string: '{"id": "sanitized"}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '19' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:57:51 GMT + - Fri, 15 Dec 2023 10:26:32 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AbQU1zVjBSp9pPhkLlTdWYb_v1HJhiCUKFHHA0xUg_ag1@thread.v2/messages/1689022671826 + - https://clitest000002.communication.azure.com/chat/threads/19%3AFPszWxOg6XHhV08yTtArk9n7JNis86n91M8aJymiwS41@thread.v2/messages/1702635992976 ms-cv: - - wE71CwUJP0ebG19BuWY5Hw.0 + - lUC6Ktr7uUm5KzvGUoNnzw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0z3CsZAAAAACcZMc6UXs4Q7BQvJq3w6lFWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 02Cl8ZQAAAADO39UkcLOET4YFZxsyPjBlSFlEMzBFREdFMDYxOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 254ms + - 406ms 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 23a649ff442..de4272c52e1 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:54:36 GMT + - Fri, 15 Dec 2023 10:22:54 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:54:36.4045332+00:00"}}' + "expiresOn": "2023-12-16T10:22:54.8653482+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:36 GMT + - Fri, 15 Dec 2023 10:22:54 GMT ms-cv: - - IrvcENxXE0yYqObYV/ZeSA.0 + - 0DNrxENYkkS0rFJofOGgGw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DHCsZAAAAAAKoCK6Mt7XTpLiXYoM3Lb4WVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0/ih8ZQAAAAA/v70p9iCUQY6drK+woH6MSFlEMzBFREdFMDYyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 104ms + - 27ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - b4619caf-ec37-4bd6-82fa-128c1187c4a5 + - f6e1a71b-65fe-4a95-aecf-c6eb9875ec50 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-other-topic", "createdOn": - "2023-07-10T20:54:36Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:22:55Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '203' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:36 GMT + - Fri, 15 Dec 2023 10:22:55 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3ArOur_eiMhMW6liP98E3OVyV8wM7Yvrh_GLOXq8M54Is1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3A8Vf5p2OEPWgCXHP3wQteNhHszmgwjYIH9eX2ppGegdw1@thread.v2 ms-cv: - - tzWz9R7IyEKvQthz8Zk83w.0 + - x+b6nNA3+UeTuefD/rzpiA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DHCsZAAAAAA0YPPFX6RoRYlLnlBHn9uxWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0/yh8ZQAAAAC4Yzek9QSCQoewGde1YPIDSFlEMzBFREdFMDQxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 397ms + - 1181ms status: code: 201 message: Created @@ -114,33 +116,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2023-11-07 response: body: string: '{"id": "sanitized"}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '19' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:36 GMT + - Fri, 15 Dec 2023 10:22:56 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3ArOur_eiMhMW6liP98E3OVyV8wM7Yvrh_GLOXq8M54Is1@thread.v2/messages/1689022477685 + - https://clitest000002.communication.azure.com/chat/threads/19%3A8Vf5p2OEPWgCXHP3wQteNhHszmgwjYIH9eX2ppGegdw1@thread.v2/messages/1702635777116 ms-cv: - - nKraT0QIJUSb+Kw5xMduAA.0 + - gXDibf2HqUq2IXFBXIhT1g.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DXCsZAAAAAAYtqEMtKhTQq5nD3Y1A9CtWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ACl8ZQAAAABWxgcpnDVBQozmCLZkZ8QPSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 200ms + - 376ms 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 bed726d43e2..cadf452993d 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:56:13 GMT + - Fri, 15 Dec 2023 10:24:42 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:56:12.8858251+00:00"}}' + "expiresOn": "2023-12-16T10:24:42.7604739+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:12 GMT + - Fri, 15 Dec 2023 10:24:42 GMT ms-cv: - - qTTfOmaENE2wKFnIsK8BhA.0 + - vOiH0trwKUCYEq7axtmO4w.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bHCsZAAAAAB8lpkKnl+6TqFnjmzn6ZIJWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ail8ZQAAAABqNhW/LGipSaQjo9o4ndrUSFlEMzBFREdFMDQyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 107ms + - 25ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - b59d1874-3545-4e70-8b11-7d997061c215 + - f9938efa-ec4d-4172-9d32-a0919c7ade40 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "yet-another-topic", "createdOn": - "2023-07-10T20:56:13Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:24:43Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '204' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:12 GMT + - Fri, 15 Dec 2023 10:24:43 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AnhX3naj7aIAFMQ6Fdy4LpLG5KKRU_qpDqGzBztZUebE1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AAUedc8glU3RthSOaktZFDNu2VL8chAVEhSCtQuwvVkI1@thread.v2 ms-cv: - - FybE44urnUeX7jfYxlN8hA.0 + - zhr7JjHYZ0CuCGWE/Xzc+A.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bXCsZAAAAABRx6JX7iaoS7ivOfWUv5OJWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ayl8ZQAAAACU8YEJ8GKkTqzcPkXVKZaoSFlEMzBFREdFMDYxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 385ms + - 819ms 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 99bb9072286..8347255405e 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:57:49 GMT + - Fri, 15 Dec 2023 10:26:25 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:57:49.076925+00:00"}}' + "expiresOn": "2023-12-16T10:26:25.6389292+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - - '121' + - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:57:48 GMT + - Fri, 15 Dec 2023 10:26:25 GMT ms-cv: - - FJKgfOrC9EqTY9JJRSHz/g.0 + - J1SEaXkrjUag6Gf43WZK2g.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0zHCsZAAAAAARNrmYQwh9QpIBIcyrmmRbWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 00Sl8ZQAAAABvScJrhv95TI7Ltk+/iOyjSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 106ms + - 28ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - ac6852e3-eec5-467c-bd04-ee9f6d40d7f9 + - 56bba0b2-6edc-48e8-a2e1-9a70525265e2 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "yet-another-topic", "createdOn": - "2023-07-10T20:57:49Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:26:26Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '204' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:57:49 GMT + - Fri, 15 Dec 2023 10:26:26 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A1fYhCr6uyp3MQIwnAfF0b5PEM1FqT-jFIAW3ur5ZB2c1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AkjpzSEXVGMMKnyyfI7thoScGc-HJv8LylVDmdBmZAR81@thread.v2 ms-cv: - - gCObW7grEEykVOKJeaaK1Q.0 + - AJhdwkD1QU24mXkZWmjFlw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0zXCsZAAAAABuY/xhblhrRp5C/msEpy/TWVZSMzExMDAwMTE1MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 00il8ZQAAAAD+QX9s5iuRSorMkAVvnA8BSFlEMzBFREdFMDQwNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 344ms + - 835ms status: code: 201 message: Created @@ -114,33 +116,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2023-11-07 response: body: string: '{"id": "sanitized"}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '19' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:57:49 GMT + - Fri, 15 Dec 2023 10:26:26 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A1fYhCr6uyp3MQIwnAfF0b5PEM1FqT-jFIAW3ur5ZB2c1@thread.v2/messages/1689022670202 + - https://clitest000002.communication.azure.com/chat/threads/19%3AkjpzSEXVGMMKnyyfI7thoScGc-HJv8LylVDmdBmZAR81@thread.v2/messages/1702635987474 ms-cv: - - 89G8GHOytkaEEvXGC7OkWw.0 + - exlk/uaOFEe8v3GMw20F1Q.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0znCsZAAAAAAaHse5uYrBSaiHtaCpi90bWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 00yl8ZQAAAAD+mUOV2kJoTI6PAvfZamnMSFlEMzBFREdFMDYxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 230ms + - 305ms 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 a5a5103a4ad..9c10ee06d38 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:54:36 GMT + - Fri, 15 Dec 2023 10:22:55 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:54:36.3982809+00:00"}}' + "expiresOn": "2023-12-16T10:22:56.4146232+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:36 GMT + - Fri, 15 Dec 2023 10:22:55 GMT ms-cv: - - WVg1G71XqkCdVoovJRKKgQ.0 + - 4r/vGt+ga0mBJj2RNTpM3g.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DHCsZAAAAACe+UPrxAWZTouWdsZE7X4MWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0/yh8ZQAAAACx2U8QZHFzQa/s4e+yPaheSFlEMzBFREdFMDYwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 110ms + - 26ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - e0a4def6-6e23-4e00-8efe-76cb1a47c8cb + - 215037df-12d0-472c-a579-ec5b6df45245 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "thread-topic", "createdOn": - "2023-07-10T20:54:36Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:22:57Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '199' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:36 GMT + - Fri, 15 Dec 2023 10:22:57 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A8BDzmwH7n-m7YI-qp2A5Pc3KfBBQgY3Vob8zsj87wSM1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3Ac3G6_QmoLa6iSlXUVMPIFtY7k9YhY9nQHw_xYiAC2z41@thread.v2 ms-cv: - - yHaUYij6p06R6aJjW+ym2Q.0 + - WjyPJMYmRUynoMCEPztitA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DHCsZAAAAABuiWJCl5mQT6L9Y6syhtw2WVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ACl8ZQAAAADuiTTqZjHaTZzrxVXe4gCASFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 486ms + - 665ms status: code: 201 message: Created @@ -114,33 +116,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2023-11-07 response: body: string: '{"id": "sanitized"}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '19' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:54:37 GMT + - Fri, 15 Dec 2023 10:22:57 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A8BDzmwH7n-m7YI-qp2A5Pc3KfBBQgY3Vob8zsj87wSM1@thread.v2/messages/1689022477712 + - https://clitest000002.communication.azure.com/chat/threads/19%3Ac3G6_QmoLa6iSlXUVMPIFtY7k9YhY9nQHw_xYiAC2z41@thread.v2/messages/1702635778099 ms-cv: - - RWq1ivKbHEuwbVK1eOj3Kg.0 + - 97uk4/NgeECf4DBiShq4gQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DXCsZAAAAACQr/9//bgGRo3TVWPB4OX9WVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ASl8ZQAAAACv04mNNkuIQIdrUDLgBx8ESFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 251ms + - 358ms status: code: 201 message: Created @@ -158,27 +163,30 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PATCH - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2023-11-07 response: body: string: '' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview date: - - Mon, 10 Jul 2023 20:54:38 GMT + - Fri, 15 Dec 2023 10:22:58 GMT ms-cv: - - sxq4xsTVB0ufhjG6F/YsKg.0 + - B3ee1zw5xUiB/JDUisKMJg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DnCsZAAAAAAz8GZvIwSgQL673DiYlaAtWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ail8ZQAAAACifTpbZsOZRonG9QtKQI0XSFlEMzBFREdFMDYxNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 278ms + - 552ms 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 e5a855d56e3..3c222b15a45 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 20:56:13 GMT + - Fri, 15 Dec 2023 10:24:42 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T20:56:13.3799464+00:00"}}' + "expiresOn": "2023-12-16T10:24:43.3522023+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:12 GMT + - Fri, 15 Dec 2023 10:24:42 GMT ms-cv: - - m0p4rVbFx0CprJUrrjghLg.0 + - T7tv9C8Cpked7jTzViWnxw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bXCsZAAAAABoXm61OCVTRofIO3JjSqlZWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ayl8ZQAAAAB6ssZJAxobS6ZdAlNn392nSFlEMzBFREdFMDYwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 105ms + - 22ms status: code: 201 message: Created @@ -66,37 +65,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) repeatability-request-id: - - 55092f28-93c0-4e98-9a93-0b764440e5fc + - b074c364-5096-407b-b851-de169634d0a3 method: POST - uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads?api-version=2023-11-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "thread-topic", "createdOn": - "2023-07-10T20:56:13Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2023-12-15T10:24:43Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview content-length: - '199' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:56:14 GMT + - Fri, 15 Dec 2023 10:24:44 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AYKFO1DocvRO6xr_J2W_Zef0d3QOpvHgEQcaX3VTCV9c1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3A9HVg3VR-ASZ3w1cQm9n7IbDvZ5o4Bb6zGWWwH3eQ_G81@thread.v2 ms-cv: - - Vozefc0qKEyh1sn5mwwwLQ.0 + - EmJUOySptU2D61DKSBGwrw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bXCsZAAAAADj7XcRHH7xSJI3VU6nkYjAWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ayl8ZQAAAAADrK53z3DUR56E8i0tLKrESFlEMzBFREdFMDYxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 724ms + - 699ms status: code: 201 message: Created @@ -114,27 +116,30 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-chat/1.2.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PATCH - uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2021-09-07 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2023-11-07 response: body: string: '' headers: + access-control-expose-headers: + - '*' api-supported-versions: - - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview + - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2023-04-01-preview, 2023-07-01-preview, + 2023-11-07, 2023-11-15-preview date: - - Mon, 10 Jul 2023 20:56:14 GMT + - Fri, 15 Dec 2023 10:24:44 GMT ms-cv: - - jvdQPL2bs0KayYU7w+eHNg.0 + - L//G78DgZ0qNYACOKU0jXw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bnCsZAAAAAC/P8pvzIyGS57okW20lOTcWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0bCl8ZQAAAADfy+ghmB3yQYCxI5xwmbFwSFlEMzBFREdFMDQxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 234ms + - 415ms status: code: 204 message: No Content diff --git a/src/communication/azext_communication/tests/latest/recordings/test_communication_identity.yaml b/src/communication/azext_communication/tests/latest/recordings/test_communication_identity.yaml index 71801429335..017498f3524 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_communication_identity.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_communication_identity.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 azsdk-python-azure-mgmt-resource/23.1.0b2 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001","name":"cli_test_communication000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_communication_identity","date":"2023-07-12T18:57:12Z","module":"communication"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001","name":"cli_test_communication000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","test":"test_communication_identity","date":"2023-12-15T10:24:50Z","module":"communication","Env":"NonProd"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '396' + - '412' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:57:14 GMT + - Fri, 15 Dec 2023 10:24:53 GMT expires: - '-1' pragma: @@ -59,12 +59,12 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity?api-version=2023-01-31 response: body: - string: '{"location":"eastus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity","name":"managedIdentity","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b33ae551-303f-4a4b-b223-93d73a092123","clientId":"e0a8480a-7a00-4d74-aa5e-f48cd207b639"}}' + string: '{"location":"eastus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity","name":"managedIdentity","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"b98d25db-72cf-4d2e-bafa-04208ed7188d","clientId":"e7e7d922-3d01-4c92-8905-f23f540bba16"}}' headers: cache-control: - no-cache @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:57:16 GMT + - Fri, 15 Dec 2023 10:24:56 GMT expires: - '-1' location: @@ -85,7 +85,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -108,29 +108,29 @@ interactions: ParameterSetName: - -n -g --location --data-location --mi-system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T18:57:18.826369Z"},"identity":{"principalId":"4c727177-8a3c-4f31-b051-a6a363946603","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"dataLocation":"unitedstates","provisioningState":"Accepted"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:24:58.9981169Z"},"identity":{"principalId":"4d6fa32b-ab29-438c-adba-caebfeb88c32","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"dataLocation":"unitedstates","provisioningState":"Accepted"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327041391319&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=keq3IUATIOz0oaPcwoCPEVYm95-L1XQQ3JpIJg1oeykeCfJalWH9hHap3lRNT-wJIK7q6tpvlfqQBV8ra-OzPna-X4DlDBklsz-1OzYKQXpRd1LKgpau-9Tkgsg-kx9va_DIGjCPlUft03fbBEkRFz3ZnycAaXDusXuGwx9PGQ4u_WNY5LD0HJVKfQ0eW5rhq8WogMc3qIF2XRjF6R1Gz8Jy-G_rubYwNCuf2w3XdpuRP-eKQQbynuCUIgTbh42bvek--ZT1dOAhvvc5jvQ2i_iNGmMNZkPbR4wEIG7nhRNkNyUR9eFbROKQyAggTqUp2tCSr8OjPUgPkCpDLpNkJg&h=kgKrcT3NftFz95VZdXLwGmZsOn8-5RhTU3KoMLnE-c0 cache-control: - no-cache content-length: - - '732' + - '734' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:57:20 GMT + - Fri, 15 Dec 2023 10:25:03 GMT etag: - - '"0d0030e2-0000-0700-0000-64aef7900000"' + - '"00007810-0000-2000-0000-657c297f0000"' expires: - '-1' mise-correlation-id: - - 1455ef68-f664-43aa-a42a-b3c77c50012a + - 16546b5c-35b9-4786-aa46-8982aafc4b6b pragma: - no-cache request-context: @@ -142,7 +142,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -160,12 +160,12 @@ interactions: ParameterSetName: - -n -g --location --data-location --mi-system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327041391319&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=keq3IUATIOz0oaPcwoCPEVYm95-L1XQQ3JpIJg1oeykeCfJalWH9hHap3lRNT-wJIK7q6tpvlfqQBV8ra-OzPna-X4DlDBklsz-1OzYKQXpRd1LKgpau-9Tkgsg-kx9va_DIGjCPlUft03fbBEkRFz3ZnycAaXDusXuGwx9PGQ4u_WNY5LD0HJVKfQ0eW5rhq8WogMc3qIF2XRjF6R1Gz8Jy-G_rubYwNCuf2w3XdpuRP-eKQQbynuCUIgTbh42bvek--ZT1dOAhvvc5jvQ2i_iNGmMNZkPbR4wEIG7nhRNkNyUR9eFbROKQyAggTqUp2tCSr8OjPUgPkCpDLpNkJg&h=kgKrcT3NftFz95VZdXLwGmZsOn8-5RhTU3KoMLnE-c0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T18:57:20.3556415Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:25:03.6348396Z"}' headers: cache-control: - no-cache @@ -174,9 +174,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:57:20 GMT + - Fri, 15 Dec 2023 10:25:03 GMT etag: - - '"1c006d6f-0000-0800-0000-64aef7900000"' + - '"f9114878-0000-0100-0000-657c297f0000"' expires: - '-1' pragma: @@ -206,12 +206,12 @@ interactions: ParameterSetName: - -n -g --location --data-location --mi-system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327041391319&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=keq3IUATIOz0oaPcwoCPEVYm95-L1XQQ3JpIJg1oeykeCfJalWH9hHap3lRNT-wJIK7q6tpvlfqQBV8ra-OzPna-X4DlDBklsz-1OzYKQXpRd1LKgpau-9Tkgsg-kx9va_DIGjCPlUft03fbBEkRFz3ZnycAaXDusXuGwx9PGQ4u_WNY5LD0HJVKfQ0eW5rhq8WogMc3qIF2XRjF6R1Gz8Jy-G_rubYwNCuf2w3XdpuRP-eKQQbynuCUIgTbh42bvek--ZT1dOAhvvc5jvQ2i_iNGmMNZkPbR4wEIG7nhRNkNyUR9eFbROKQyAggTqUp2tCSr8OjPUgPkCpDLpNkJg&h=kgKrcT3NftFz95VZdXLwGmZsOn8-5RhTU3KoMLnE-c0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T18:57:20.3556415Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:25:03.6348396Z"}' headers: cache-control: - no-cache @@ -220,9 +220,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:57:50 GMT + - Fri, 15 Dec 2023 10:25:34 GMT etag: - - '"1c006d6f-0000-0800-0000-64aef7900000"' + - '"f9114878-0000-0100-0000-657c297f0000"' expires: - '-1' pragma: @@ -252,12 +252,12 @@ interactions: ParameterSetName: - -n -g --location --data-location --mi-system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327041391319&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=keq3IUATIOz0oaPcwoCPEVYm95-L1XQQ3JpIJg1oeykeCfJalWH9hHap3lRNT-wJIK7q6tpvlfqQBV8ra-OzPna-X4DlDBklsz-1OzYKQXpRd1LKgpau-9Tkgsg-kx9va_DIGjCPlUft03fbBEkRFz3ZnycAaXDusXuGwx9PGQ4u_WNY5LD0HJVKfQ0eW5rhq8WogMc3qIF2XRjF6R1Gz8Jy-G_rubYwNCuf2w3XdpuRP-eKQQbynuCUIgTbh42bvek--ZT1dOAhvvc5jvQ2i_iNGmMNZkPbR4wEIG7nhRNkNyUR9eFbROKQyAggTqUp2tCSr8OjPUgPkCpDLpNkJg&h=kgKrcT3NftFz95VZdXLwGmZsOn8-5RhTU3KoMLnE-c0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T18:57:20.3556415Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:25:03.6348396Z"}' headers: cache-control: - no-cache @@ -266,9 +266,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:58:21 GMT + - Fri, 15 Dec 2023 10:26:04 GMT etag: - - '"1c006d6f-0000-0800-0000-64aef7900000"' + - '"f9114878-0000-0100-0000-657c297f0000"' expires: - '-1' pragma: @@ -298,12 +298,12 @@ interactions: ParameterSetName: - -n -g --location --data-location --mi-system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327041391319&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=keq3IUATIOz0oaPcwoCPEVYm95-L1XQQ3JpIJg1oeykeCfJalWH9hHap3lRNT-wJIK7q6tpvlfqQBV8ra-OzPna-X4DlDBklsz-1OzYKQXpRd1LKgpau-9Tkgsg-kx9va_DIGjCPlUft03fbBEkRFz3ZnycAaXDusXuGwx9PGQ4u_WNY5LD0HJVKfQ0eW5rhq8WogMc3qIF2XRjF6R1Gz8Jy-G_rubYwNCuf2w3XdpuRP-eKQQbynuCUIgTbh42bvek--ZT1dOAhvvc5jvQ2i_iNGmMNZkPbR4wEIG7nhRNkNyUR9eFbROKQyAggTqUp2tCSr8OjPUgPkCpDLpNkJg&h=kgKrcT3NftFz95VZdXLwGmZsOn8-5RhTU3KoMLnE-c0 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"dca840ae-31a0-417f-a6e2-b20e584cd3cb*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-07-12T18:57:20.3556415Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"0d8dd008-0aa2-4dd9-a9b1-81d3a5c349f7*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-12-15T10:25:03.6348396Z","properties":null}' headers: cache-control: - no-cache @@ -312,9 +312,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:58:50 GMT + - Fri, 15 Dec 2023 10:26:35 GMT etag: - - '"1c00a76f-0000-0800-0000-64aef7d20000"' + - '"f911807f-0000-0100-0000-657c29c20000"' expires: - '-1' pragma: @@ -344,23 +344,23 @@ interactions: ParameterSetName: - -n -g --location --data-location --mi-system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T18:57:18.826369Z"},"identity":{"principalId":"4c727177-8a3c-4f31-b051-a6a363946603","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:24:58.9981169Z"},"identity":{"principalId":"4d6fa32b-ab29-438c-adba-caebfeb88c32","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: cache-control: - no-cache content-length: - - '846' + - '861' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:58:50 GMT + - Fri, 15 Dec 2023 10:26:35 GMT etag: - - '"0d0037e2-0000-0700-0000-64aef7980000"' + - '"4700245b-0000-0700-0000-657c298c0000"' expires: - '-1' pragma: @@ -397,29 +397,29 @@ interactions: ParameterSetName: - -n -g --location --data-location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T18:58:52.3970675Z"},"identity":{"type":"None"},"properties":{"provisioningState":"Accepted","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:26:36.3278378Z"},"identity":{"type":"None"},"properties":{"provisioningState":"Accepted","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327995934660&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=CuAFvjsK4zVURFlfHXVa_NkH3wbl2BpLbOv_zFsmcOC3pzmwsnySrrXhq3uZe-KI95sScnpGnoufVR_4eVf79CoQ2dOLjG1ciPMAKsv0vkNgRGYzA6YJxDje1wLrsVX5ot1GbjYJXSFIvqju1klrq1oyHa4KDdeiNpHoKucZYHLp-vE8Rs0c8LiL-5miyioBSHcXZJccPt_CCXFoagbs5CYHc4z8nuQtLx53jSunHeiKzS1jsUZvlhNxBCpP6QyJGnQpy3WhlOfO7qZagCdZxO7wGgnuN6iChLj-6OFe5aEbI4LSdUpf3xBAj-Yj1bq1GdJfMqfuQVWQ4iuu8kHYMg&h=dSQaxZEfB4DhbkjfguW8bhmz9FfWURytbMApB6-l1Fk cache-control: - no-cache content-length: - - '733' + - '747' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:58:54 GMT + - Fri, 15 Dec 2023 10:26:39 GMT etag: - - '"0d0067e2-0000-0700-0000-64aef7ed0000"' + - '"00008310-0000-2000-0000-657c29df0000"' expires: - '-1' mise-correlation-id: - - cef032ad-e98d-47f3-b4f5-8d1b6bfe94e0 + - 514e522e-85ba-485f-aab4-20c0a8c42d99 pragma: - no-cache request-context: @@ -431,7 +431,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -449,12 +449,12 @@ interactions: ParameterSetName: - -n -g --location --data-location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327995934660&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=CuAFvjsK4zVURFlfHXVa_NkH3wbl2BpLbOv_zFsmcOC3pzmwsnySrrXhq3uZe-KI95sScnpGnoufVR_4eVf79CoQ2dOLjG1ciPMAKsv0vkNgRGYzA6YJxDje1wLrsVX5ot1GbjYJXSFIvqju1klrq1oyHa4KDdeiNpHoKucZYHLp-vE8Rs0c8LiL-5miyioBSHcXZJccPt_CCXFoagbs5CYHc4z8nuQtLx53jSunHeiKzS1jsUZvlhNxBCpP6QyJGnQpy3WhlOfO7qZagCdZxO7wGgnuN6iChLj-6OFe5aEbI4LSdUpf3xBAj-Yj1bq1GdJfMqfuQVWQ4iuu8kHYMg&h=dSQaxZEfB4DhbkjfguW8bhmz9FfWURytbMApB6-l1Fk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T18:58:53.7489239Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:26:39.1000455Z"}' headers: cache-control: - no-cache @@ -463,9 +463,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:58:54 GMT + - Fri, 15 Dec 2023 10:26:40 GMT etag: - - '"1c00bb6f-0000-0800-0000-64aef7ed0000"' + - '"f911e482-0000-0100-0000-657c29df0000"' expires: - '-1' pragma: @@ -495,12 +495,12 @@ interactions: ParameterSetName: - -n -g --location --data-location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327995934660&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=CuAFvjsK4zVURFlfHXVa_NkH3wbl2BpLbOv_zFsmcOC3pzmwsnySrrXhq3uZe-KI95sScnpGnoufVR_4eVf79CoQ2dOLjG1ciPMAKsv0vkNgRGYzA6YJxDje1wLrsVX5ot1GbjYJXSFIvqju1klrq1oyHa4KDdeiNpHoKucZYHLp-vE8Rs0c8LiL-5miyioBSHcXZJccPt_CCXFoagbs5CYHc4z8nuQtLx53jSunHeiKzS1jsUZvlhNxBCpP6QyJGnQpy3WhlOfO7qZagCdZxO7wGgnuN6iChLj-6OFe5aEbI4LSdUpf3xBAj-Yj1bq1GdJfMqfuQVWQ4iuu8kHYMg&h=dSQaxZEfB4DhbkjfguW8bhmz9FfWURytbMApB6-l1Fk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T18:58:53.7489239Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:26:39.1000455Z"}' headers: cache-control: - no-cache @@ -509,9 +509,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:59:24 GMT + - Fri, 15 Dec 2023 10:27:09 GMT etag: - - '"1c00bb6f-0000-0800-0000-64aef7ed0000"' + - '"f911e482-0000-0100-0000-657c29df0000"' expires: - '-1' pragma: @@ -541,12 +541,12 @@ interactions: ParameterSetName: - -n -g --location --data-location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327995934660&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=CuAFvjsK4zVURFlfHXVa_NkH3wbl2BpLbOv_zFsmcOC3pzmwsnySrrXhq3uZe-KI95sScnpGnoufVR_4eVf79CoQ2dOLjG1ciPMAKsv0vkNgRGYzA6YJxDje1wLrsVX5ot1GbjYJXSFIvqju1klrq1oyHa4KDdeiNpHoKucZYHLp-vE8Rs0c8LiL-5miyioBSHcXZJccPt_CCXFoagbs5CYHc4z8nuQtLx53jSunHeiKzS1jsUZvlhNxBCpP6QyJGnQpy3WhlOfO7qZagCdZxO7wGgnuN6iChLj-6OFe5aEbI4LSdUpf3xBAj-Yj1bq1GdJfMqfuQVWQ4iuu8kHYMg&h=dSQaxZEfB4DhbkjfguW8bhmz9FfWURytbMApB6-l1Fk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T18:58:53.7489239Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:26:39.1000455Z"}' headers: cache-control: - no-cache @@ -555,9 +555,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 18:59:54 GMT + - Fri, 15 Dec 2023 10:27:40 GMT etag: - - '"1c00bb6f-0000-0800-0000-64aef7ed0000"' + - '"f911e482-0000-0100-0000-657c29df0000"' expires: - '-1' pragma: @@ -587,12 +587,12 @@ interactions: ParameterSetName: - -n -g --location --data-location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382327995934660&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=CuAFvjsK4zVURFlfHXVa_NkH3wbl2BpLbOv_zFsmcOC3pzmwsnySrrXhq3uZe-KI95sScnpGnoufVR_4eVf79CoQ2dOLjG1ciPMAKsv0vkNgRGYzA6YJxDje1wLrsVX5ot1GbjYJXSFIvqju1klrq1oyHa4KDdeiNpHoKucZYHLp-vE8Rs0c8LiL-5miyioBSHcXZJccPt_CCXFoagbs5CYHc4z8nuQtLx53jSunHeiKzS1jsUZvlhNxBCpP6QyJGnQpy3WhlOfO7qZagCdZxO7wGgnuN6iChLj-6OFe5aEbI4LSdUpf3xBAj-Yj1bq1GdJfMqfuQVWQ4iuu8kHYMg&h=dSQaxZEfB4DhbkjfguW8bhmz9FfWURytbMApB6-l1Fk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"8fe709dd-cefc-41cb-be45-1c1c8ce5f293*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-07-12T18:58:53.7489239Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"9d75c547-13a6-4ea2-aa61-3a9638290d70*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-12-15T10:26:39.1000455Z","properties":null}' headers: cache-control: - no-cache @@ -601,9 +601,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:00:24 GMT + - Fri, 15 Dec 2023 10:28:10 GMT etag: - - '"1c000670-0000-0800-0000-64aef82f0000"' + - '"f9116d8a-0000-0100-0000-657c2a230000"' expires: - '-1' pragma: @@ -633,23 +633,23 @@ interactions: ParameterSetName: - -n -g --location --data-location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T18:58:52.3970675Z"},"identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:26:36.3278378Z"},"identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: cache-control: - no-cache content-length: - - '734' + - '748' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:00:25 GMT + - Fri, 15 Dec 2023 10:28:11 GMT etag: - - '"0d0071e2-0000-0700-0000-64aef7f30000"' + - '"4700685b-0000-0700-0000-657c29eb0000"' expires: - '-1' pragma: @@ -681,23 +681,23 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T18:58:52.3970675Z"},"identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:26:36.3278378Z"},"identity":{"type":"None"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: cache-control: - no-cache content-length: - - '734' + - '748' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:00:26 GMT + - Fri, 15 Dec 2023 10:28:11 GMT etag: - - '"0d0071e2-0000-0700-0000-64aef7f30000"' + - '"4700685b-0000-0700-0000-657c29eb0000"' expires: - '-1' pragma: @@ -734,29 +734,29 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T19:00:26.9634042Z"},"identity":{"principalId":"f4efb483-9753-410c-b035-e858309f561b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:28:12.5273071Z"},"identity":{"principalId":"efa63ab1-842c-4950-8206-b9afd5eefbd1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Accepted","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382328956523087&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=sB2_wP-6knQZNZ-BMIaHZ7Za7ABVmtSh_g6FuZMBuqZYHc2vTKPXHg4hzUYRopE5z9WATOnMwNG2VmTMfRqtgWaGaQh_d1K_PseN8kIKSfVnADigKjhAW1cDmG7CQLgWoLVfpXk9ggBzXMdn8C8o7hOcBQUAG5sx09UJphShLW4ww7iwDDG1kOwlk6qPxYsq9oiGV0gIB_qJsqREm5kMlkQekgIniqFxUdeU0c2UqkA-DGxmURSoSsY9u5-11hk0QZtmj6fsDBlN4DXDUAc7M1Sl3S2MfarEoPPkIL60TA7sFtQ9AbVJOxDttPmmGJtKUp3fS_SUAx2MroGNIIzIug&h=71igbKzqp9m8-1aAGVJ9NAONqyBbq04caBti6QrFm2o cache-control: - no-cache content-length: - - '846' + - '860' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:00:29 GMT + - Fri, 15 Dec 2023 10:28:15 GMT etag: - - '"0d00a4e2-0000-0700-0000-64aef84c0000"' + - '"00008d10-0000-2000-0000-657c2a3f0000"' expires: - '-1' mise-correlation-id: - - 19dbcf16-9196-45e4-b555-634589267d8b + - 7af8d54f-76fc-408f-96b4-33216f1f5097 pragma: - no-cache request-context: @@ -768,7 +768,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1193' status: code: 201 message: Created @@ -786,12 +786,12 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382328956523087&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=sB2_wP-6knQZNZ-BMIaHZ7Za7ABVmtSh_g6FuZMBuqZYHc2vTKPXHg4hzUYRopE5z9WATOnMwNG2VmTMfRqtgWaGaQh_d1K_PseN8kIKSfVnADigKjhAW1cDmG7CQLgWoLVfpXk9ggBzXMdn8C8o7hOcBQUAG5sx09UJphShLW4ww7iwDDG1kOwlk6qPxYsq9oiGV0gIB_qJsqREm5kMlkQekgIniqFxUdeU0c2UqkA-DGxmURSoSsY9u5-11hk0QZtmj6fsDBlN4DXDUAc7M1Sl3S2MfarEoPPkIL60TA7sFtQ9AbVJOxDttPmmGJtKUp3fS_SUAx2MroGNIIzIug&h=71igbKzqp9m8-1aAGVJ9NAONqyBbq04caBti6QrFm2o response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T19:00:28.3613257Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:28:15.1291309Z"}' headers: cache-control: - no-cache @@ -800,9 +800,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:00:29 GMT + - Fri, 15 Dec 2023 10:28:15 GMT etag: - - '"1c002870-0000-0800-0000-64aef84c0000"' + - '"f9110a8d-0000-0100-0000-657c2a3f0000"' expires: - '-1' pragma: @@ -832,12 +832,12 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382328956523087&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=sB2_wP-6knQZNZ-BMIaHZ7Za7ABVmtSh_g6FuZMBuqZYHc2vTKPXHg4hzUYRopE5z9WATOnMwNG2VmTMfRqtgWaGaQh_d1K_PseN8kIKSfVnADigKjhAW1cDmG7CQLgWoLVfpXk9ggBzXMdn8C8o7hOcBQUAG5sx09UJphShLW4ww7iwDDG1kOwlk6qPxYsq9oiGV0gIB_qJsqREm5kMlkQekgIniqFxUdeU0c2UqkA-DGxmURSoSsY9u5-11hk0QZtmj6fsDBlN4DXDUAc7M1Sl3S2MfarEoPPkIL60TA7sFtQ9AbVJOxDttPmmGJtKUp3fS_SUAx2MroGNIIzIug&h=71igbKzqp9m8-1aAGVJ9NAONqyBbq04caBti6QrFm2o response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T19:00:28.3613257Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:28:15.1291309Z"}' headers: cache-control: - no-cache @@ -846,9 +846,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:00:59 GMT + - Fri, 15 Dec 2023 10:28:46 GMT etag: - - '"1c002870-0000-0800-0000-64aef84c0000"' + - '"f9110a8d-0000-0100-0000-657c2a3f0000"' expires: - '-1' pragma: @@ -878,12 +878,12 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382328956523087&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=sB2_wP-6knQZNZ-BMIaHZ7Za7ABVmtSh_g6FuZMBuqZYHc2vTKPXHg4hzUYRopE5z9WATOnMwNG2VmTMfRqtgWaGaQh_d1K_PseN8kIKSfVnADigKjhAW1cDmG7CQLgWoLVfpXk9ggBzXMdn8C8o7hOcBQUAG5sx09UJphShLW4ww7iwDDG1kOwlk6qPxYsq9oiGV0gIB_qJsqREm5kMlkQekgIniqFxUdeU0c2UqkA-DGxmURSoSsY9u5-11hk0QZtmj6fsDBlN4DXDUAc7M1Sl3S2MfarEoPPkIL60TA7sFtQ9AbVJOxDttPmmGJtKUp3fS_SUAx2MroGNIIzIug&h=71igbKzqp9m8-1aAGVJ9NAONqyBbq04caBti6QrFm2o response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T19:00:28.3613257Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:28:15.1291309Z"}' headers: cache-control: - no-cache @@ -892,9 +892,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:01:29 GMT + - Fri, 15 Dec 2023 10:29:15 GMT etag: - - '"1c002870-0000-0800-0000-64aef84c0000"' + - '"f9110a8d-0000-0100-0000-657c2a3f0000"' expires: - '-1' pragma: @@ -924,12 +924,12 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382328956523087&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=sB2_wP-6knQZNZ-BMIaHZ7Za7ABVmtSh_g6FuZMBuqZYHc2vTKPXHg4hzUYRopE5z9WATOnMwNG2VmTMfRqtgWaGaQh_d1K_PseN8kIKSfVnADigKjhAW1cDmG7CQLgWoLVfpXk9ggBzXMdn8C8o7hOcBQUAG5sx09UJphShLW4ww7iwDDG1kOwlk6qPxYsq9oiGV0gIB_qJsqREm5kMlkQekgIniqFxUdeU0c2UqkA-DGxmURSoSsY9u5-11hk0QZtmj6fsDBlN4DXDUAc7M1Sl3S2MfarEoPPkIL60TA7sFtQ9AbVJOxDttPmmGJtKUp3fS_SUAx2MroGNIIzIug&h=71igbKzqp9m8-1aAGVJ9NAONqyBbq04caBti6QrFm2o response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"25d81ba7-a1ae-4b61-8813-6549c02081e6*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-07-12T19:00:28.3613257Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"97ca4c6c-7ad8-4ef4-b90f-0107152f1b1b*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-12-15T10:28:15.1291309Z","properties":null}' headers: cache-control: - no-cache @@ -938,9 +938,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:01:58 GMT + - Fri, 15 Dec 2023 10:29:46 GMT etag: - - '"1c041a0f-0000-0100-0000-64aef88e0000"' + - '"f9112b93-0000-0100-0000-657c2a820000"' expires: - '-1' pragma: @@ -970,23 +970,23 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T19:00:26.9634042Z"},"identity":{"principalId":"f4efb483-9753-410c-b035-e858309f561b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:28:12.5273071Z"},"identity":{"principalId":"efa63ab1-842c-4950-8206-b9afd5eefbd1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: cache-control: - no-cache content-length: - - '847' + - '861' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:01:59 GMT + - Fri, 15 Dec 2023 10:29:46 GMT etag: - - '"0d00a8e2-0000-0700-0000-64aef8510000"' + - '"4700a75b-0000-0700-0000-657c2a4a0000"' expires: - '-1' pragma: @@ -1018,33 +1018,29 @@ interactions: ParameterSetName: - -n -g --system-assigned --user-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T19:00:26.9634042Z"},"identity":{"principalId":"f4efb483-9753-410c-b035-e858309f561b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:28:12.5273071Z"},"identity":{"principalId":"efa63ab1-842c-4950-8206-b9afd5eefbd1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: cache-control: - no-cache content-length: - - '847' + - '861' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:01:59 GMT + - Fri, 15 Dec 2023 10:29:48 GMT etag: - - '"0d00a8e2-0000-0700-0000-64aef8510000"' + - '"4700a75b-0000-0700-0000-657c2a4a0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-providerhub-traffic: @@ -1072,30 +1068,30 @@ interactions: ParameterSetName: - -n -g --system-assigned --user-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T19:02:01.0289722Z"},"identity":{"principalId":"f4efb483-9753-410c-b035-e858309f561b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{}}},"properties":{"provisioningState":"Accepted","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:29:48.5435854Z"},"identity":{"principalId":"efa63ab1-842c-4950-8206-b9afd5eefbd1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{}}},"properties":{"provisioningState":"Accepted","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382329933099994&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Z-w35l3PgCxVM8S_R_w06M9n4GN7NhYc55AbtXkWs87IXQp_RSKVJAubhhV8v8c0iKNpBiS4hbmlUWoUNuhK1SdHsauwzIdDlLyGTvMiqoGAB1y9J1IOsMOX-CqguPENd4AKWUJuvnMA6-W2dtiQVgHVDPs441R9eh7CvLdOgJGHaZ3wLalavxMdBwAVOfYEKnSgjvC5wCnXSmT9i7ZOaKc7xQezCrH9I7B9uhpR84ySLJD0fFIqGNKmyIRUHN8TKPzzHe-0gGFZiPwr5MxRoa-mkRI3uVGzK_i74M5YJBonf7E7ffhbF3igZfHSommVrCswIm3hO365nF3tJhaTVw&h=04pw4Kc_qLn5eD3GPZRA4VbyGf9k7g51YehKl-mU_Xk cache-control: - no-cache content-length: - - '1063' + - '1077' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:02:01 GMT + - Fri, 15 Dec 2023 10:29:53 GMT etag: - - '"0d00c4e2-0000-0700-0000-64aef8a90000"' + - '"00009810-0000-2000-0000-657c2aa10000"' expires: - '-1' mise-correlation-id: - - aad856ba-50ce-4582-a67a-5d6881475530 + - 5d9a035d-b00a-4274-b0bb-4e1e29c4ec7a pragma: - no-cache request-context: @@ -1125,12 +1121,12 @@ interactions: ParameterSetName: - -n -g --system-assigned --user-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382329933099994&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Z-w35l3PgCxVM8S_R_w06M9n4GN7NhYc55AbtXkWs87IXQp_RSKVJAubhhV8v8c0iKNpBiS4hbmlUWoUNuhK1SdHsauwzIdDlLyGTvMiqoGAB1y9J1IOsMOX-CqguPENd4AKWUJuvnMA6-W2dtiQVgHVDPs441R9eh7CvLdOgJGHaZ3wLalavxMdBwAVOfYEKnSgjvC5wCnXSmT9i7ZOaKc7xQezCrH9I7B9uhpR84ySLJD0fFIqGNKmyIRUHN8TKPzzHe-0gGFZiPwr5MxRoa-mkRI3uVGzK_i74M5YJBonf7E7ffhbF3igZfHSommVrCswIm3hO365nF3tJhaTVw&h=04pw4Kc_qLn5eD3GPZRA4VbyGf9k7g51YehKl-mU_Xk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T19:02:01.6476536Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:29:52.8077831Z"}' headers: cache-control: - no-cache @@ -1139,19 +1135,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:02:01 GMT + - Fri, 15 Dec 2023 10:29:53 GMT etag: - - '"1c007570-0000-0800-0000-64aef8a90000"' + - '"f911c295-0000-0100-0000-657c2aa00000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1171,12 +1163,12 @@ interactions: ParameterSetName: - -n -g --system-assigned --user-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382329933099994&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Z-w35l3PgCxVM8S_R_w06M9n4GN7NhYc55AbtXkWs87IXQp_RSKVJAubhhV8v8c0iKNpBiS4hbmlUWoUNuhK1SdHsauwzIdDlLyGTvMiqoGAB1y9J1IOsMOX-CqguPENd4AKWUJuvnMA6-W2dtiQVgHVDPs441R9eh7CvLdOgJGHaZ3wLalavxMdBwAVOfYEKnSgjvC5wCnXSmT9i7ZOaKc7xQezCrH9I7B9uhpR84ySLJD0fFIqGNKmyIRUHN8TKPzzHe-0gGFZiPwr5MxRoa-mkRI3uVGzK_i74M5YJBonf7E7ffhbF3igZfHSommVrCswIm3hO365nF3tJhaTVw&h=04pw4Kc_qLn5eD3GPZRA4VbyGf9k7g51YehKl-mU_Xk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T19:02:01.6476536Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:29:52.8077831Z"}' headers: cache-control: - no-cache @@ -1185,19 +1177,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:02:32 GMT + - Fri, 15 Dec 2023 10:30:23 GMT etag: - - '"1c007570-0000-0800-0000-64aef8a90000"' + - '"f911c295-0000-0100-0000-657c2aa00000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1217,12 +1205,12 @@ interactions: ParameterSetName: - -n -g --system-assigned --user-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382329933099994&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Z-w35l3PgCxVM8S_R_w06M9n4GN7NhYc55AbtXkWs87IXQp_RSKVJAubhhV8v8c0iKNpBiS4hbmlUWoUNuhK1SdHsauwzIdDlLyGTvMiqoGAB1y9J1IOsMOX-CqguPENd4AKWUJuvnMA6-W2dtiQVgHVDPs441R9eh7CvLdOgJGHaZ3wLalavxMdBwAVOfYEKnSgjvC5wCnXSmT9i7ZOaKc7xQezCrH9I7B9uhpR84ySLJD0fFIqGNKmyIRUHN8TKPzzHe-0gGFZiPwr5MxRoa-mkRI3uVGzK_i74M5YJBonf7E7ffhbF3igZfHSommVrCswIm3hO365nF3tJhaTVw&h=04pw4Kc_qLn5eD3GPZRA4VbyGf9k7g51YehKl-mU_Xk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T19:02:01.6476536Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:29:52.8077831Z"}' headers: cache-control: - no-cache @@ -1231,19 +1219,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:03:01 GMT + - Fri, 15 Dec 2023 10:30:53 GMT etag: - - '"1c007570-0000-0800-0000-64aef8a90000"' + - '"f911c295-0000-0100-0000-657c2aa00000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1263,12 +1247,12 @@ interactions: ParameterSetName: - -n -g --system-assigned --user-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382329933099994&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Z-w35l3PgCxVM8S_R_w06M9n4GN7NhYc55AbtXkWs87IXQp_RSKVJAubhhV8v8c0iKNpBiS4hbmlUWoUNuhK1SdHsauwzIdDlLyGTvMiqoGAB1y9J1IOsMOX-CqguPENd4AKWUJuvnMA6-W2dtiQVgHVDPs441R9eh7CvLdOgJGHaZ3wLalavxMdBwAVOfYEKnSgjvC5wCnXSmT9i7ZOaKc7xQezCrH9I7B9uhpR84ySLJD0fFIqGNKmyIRUHN8TKPzzHe-0gGFZiPwr5MxRoa-mkRI3uVGzK_i74M5YJBonf7E7ffhbF3igZfHSommVrCswIm3hO365nF3tJhaTVw&h=04pw4Kc_qLn5eD3GPZRA4VbyGf9k7g51YehKl-mU_Xk response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"98bd2657-de2c-4b7c-8687-a332fc99460b*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-07-12T19:02:01.6476536Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"695ae8a5-5740-48b3-9449-37ab695c774e*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-12-15T10:29:52.8077831Z","properties":null}' headers: cache-control: - no-cache @@ -1277,19 +1261,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:03:32 GMT + - Fri, 15 Dec 2023 10:31:24 GMT etag: - - '"1c00a470-0000-0800-0000-64aef8eb0000"' + - '"f911489b-0000-0100-0000-657c2ae60000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -1309,34 +1289,30 @@ interactions: ParameterSetName: - -n -g --system-assigned --user-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T19:02:01.0289722Z"},"identity":{"principalId":"f4efb483-9753-410c-b035-e858309f561b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{"clientId":"e0a8480a-7a00-4d74-aa5e-f48cd207b639","principalId":"b33ae551-303f-4a4b-b223-93d73a092123"}}},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:29:48.5435854Z"},"identity":{"principalId":"efa63ab1-842c-4950-8206-b9afd5eefbd1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{"clientId":"e7e7d922-3d01-4c92-8905-f23f540bba16","principalId":"b98d25db-72cf-4d2e-bafa-04208ed7188d"}}},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: cache-control: - no-cache content-length: - - '1166' + - '1180' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:03:32 GMT + - Fri, 15 Dec 2023 10:31:24 GMT etag: - - '"0d00c7e2-0000-0700-0000-64aef8af0000"' + - '"4700e05b-0000-0700-0000-657c2aaf0000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-providerhub-traffic: @@ -1358,24 +1334,24 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T19:02:01.0289722Z"},"identity":{"principalId":"f4efb483-9753-410c-b035-e858309f561b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{"clientId":"e0a8480a-7a00-4d74-aa5e-f48cd207b639","principalId":"b33ae551-303f-4a4b-b223-93d73a092123"}}},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:29:48.5435854Z"},"identity":{"principalId":"efa63ab1-842c-4950-8206-b9afd5eefbd1","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{"clientId":"e7e7d922-3d01-4c92-8905-f23f540bba16","principalId":"b98d25db-72cf-4d2e-bafa-04208ed7188d"}}},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: cache-control: - no-cache content-length: - - '1166' + - '1180' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:03:33 GMT + - Fri, 15 Dec 2023 10:31:25 GMT etag: - - '"0d00c7e2-0000-0700-0000-64aef8af0000"' + - '"4700e05b-0000-0700-0000-657c2aaf0000"' expires: - '-1' pragma: @@ -1412,29 +1388,29 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T19:03:34.3736456Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{}}},"properties":{"provisioningState":"Accepted","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:31:26.7097297Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{}}},"properties":{"provisioningState":"Accepted","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382330901474798&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Xeq5CvOuBa6ARoFKpinq8v6PzHQ6eLb1Tt46H3UXW-wxjim9MPvm76n4zk86iucPCy6SrVtDKO3C3yaTp9h6e-yFHzZp2xN-Mx1JKF_t_Ki3S0bzNdJZrMXmh6T7oHjx8PonRiWpvL_3OqJ8ZjHzmP71pUMO-AJwpd8Q5ILC3_E4EFGr4rs3h59EmbXCveYTPbeaYt8Bfdt50E-w4dvwETjD-8PZ7Zn2v0cTZ1_ThcuhOnKt6P8x_zvd39JNxySrtq6C9LdInH8OJF5KqRT01hTxt6jvBw9Gw1wOsGHJgRJ5gQdxIzWceyYAGSdrPG5d5vbHgJ0UJXIm3CHzVRdlnQ&h=emLtPOcr2hJqhxsqldhqL8AJkVBIgkEawGqHple7P0Y cache-control: - no-cache content-length: - - '944' + - '958' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:03:36 GMT + - Fri, 15 Dec 2023 10:31:30 GMT etag: - - '"0d00d8e2-0000-0700-0000-64aef9070000"' + - '"0000a010-0000-2000-0000-657c2b010000"' expires: - '-1' mise-correlation-id: - - 0cb6aaf1-4c60-4752-b33e-bed6ed3bf047 + - ce9698a9-2324-4bdc-9b11-3dae1ae4146d pragma: - no-cache request-context: @@ -1446,7 +1422,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -1464,12 +1440,12 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382330901474798&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Xeq5CvOuBa6ARoFKpinq8v6PzHQ6eLb1Tt46H3UXW-wxjim9MPvm76n4zk86iucPCy6SrVtDKO3C3yaTp9h6e-yFHzZp2xN-Mx1JKF_t_Ki3S0bzNdJZrMXmh6T7oHjx8PonRiWpvL_3OqJ8ZjHzmP71pUMO-AJwpd8Q5ILC3_E4EFGr4rs3h59EmbXCveYTPbeaYt8Bfdt50E-w4dvwETjD-8PZ7Zn2v0cTZ1_ThcuhOnKt6P8x_zvd39JNxySrtq6C9LdInH8OJF5KqRT01hTxt6jvBw9Gw1wOsGHJgRJ5gQdxIzWceyYAGSdrPG5d5vbHgJ0UJXIm3CHzVRdlnQ&h=emLtPOcr2hJqhxsqldhqL8AJkVBIgkEawGqHple7P0Y response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T19:03:35.5303381Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:31:29.6364626Z"}' headers: cache-control: - no-cache @@ -1478,9 +1454,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:03:36 GMT + - Fri, 15 Dec 2023 10:31:30 GMT etag: - - '"1c00b770-0000-0800-0000-64aef9070000"' + - '"f9113c9e-0000-0100-0000-657c2b010000"' expires: - '-1' pragma: @@ -1510,12 +1486,12 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382330901474798&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Xeq5CvOuBa6ARoFKpinq8v6PzHQ6eLb1Tt46H3UXW-wxjim9MPvm76n4zk86iucPCy6SrVtDKO3C3yaTp9h6e-yFHzZp2xN-Mx1JKF_t_Ki3S0bzNdJZrMXmh6T7oHjx8PonRiWpvL_3OqJ8ZjHzmP71pUMO-AJwpd8Q5ILC3_E4EFGr4rs3h59EmbXCveYTPbeaYt8Bfdt50E-w4dvwETjD-8PZ7Zn2v0cTZ1_ThcuhOnKt6P8x_zvd39JNxySrtq6C9LdInH8OJF5KqRT01hTxt6jvBw9Gw1wOsGHJgRJ5gQdxIzWceyYAGSdrPG5d5vbHgJ0UJXIm3CHzVRdlnQ&h=emLtPOcr2hJqhxsqldhqL8AJkVBIgkEawGqHple7P0Y response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T19:03:35.5303381Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:31:29.6364626Z"}' headers: cache-control: - no-cache @@ -1524,9 +1500,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:04:06 GMT + - Fri, 15 Dec 2023 10:32:00 GMT etag: - - '"1c00b770-0000-0800-0000-64aef9070000"' + - '"f9113c9e-0000-0100-0000-657c2b010000"' expires: - '-1' pragma: @@ -1556,12 +1532,12 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382330901474798&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Xeq5CvOuBa6ARoFKpinq8v6PzHQ6eLb1Tt46H3UXW-wxjim9MPvm76n4zk86iucPCy6SrVtDKO3C3yaTp9h6e-yFHzZp2xN-Mx1JKF_t_Ki3S0bzNdJZrMXmh6T7oHjx8PonRiWpvL_3OqJ8ZjHzmP71pUMO-AJwpd8Q5ILC3_E4EFGr4rs3h59EmbXCveYTPbeaYt8Bfdt50E-w4dvwETjD-8PZ7Zn2v0cTZ1_ThcuhOnKt6P8x_zvd39JNxySrtq6C9LdInH8OJF5KqRT01hTxt6jvBw9Gw1wOsGHJgRJ5gQdxIzWceyYAGSdrPG5d5vbHgJ0UJXIm3CHzVRdlnQ&h=emLtPOcr2hJqhxsqldhqL8AJkVBIgkEawGqHple7P0Y response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-07-12T19:03:35.5303381Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Accepted","startTime":"2023-12-15T10:31:29.6364626Z"}' headers: cache-control: - no-cache @@ -1570,9 +1546,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:04:36 GMT + - Fri, 15 Dec 2023 10:32:30 GMT etag: - - '"1c00b770-0000-0800-0000-64aef9070000"' + - '"f9113c9e-0000-0100-0000-657c2b010000"' expires: - '-1' pragma: @@ -1602,12 +1578,12 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377?api-version=2023-04-01-preview&t=638382330901474798&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Xeq5CvOuBa6ARoFKpinq8v6PzHQ6eLb1Tt46H3UXW-wxjim9MPvm76n4zk86iucPCy6SrVtDKO3C3yaTp9h6e-yFHzZp2xN-Mx1JKF_t_Ki3S0bzNdJZrMXmh6T7oHjx8PonRiWpvL_3OqJ8ZjHzmP71pUMO-AJwpd8Q5ILC3_E4EFGr4rs3h59EmbXCveYTPbeaYt8Bfdt50E-w4dvwETjD-8PZ7Zn2v0cTZ1_ThcuhOnKt6P8x_zvd39JNxySrtq6C9LdInH8OJF5KqRT01hTxt6jvBw9Gw1wOsGHJgRJ5gQdxIzWceyYAGSdrPG5d5vbHgJ0UJXIm3CHzVRdlnQ&h=emLtPOcr2hJqhxsqldhqL8AJkVBIgkEawGqHple7P0Y response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","name":"7983d6d7-435a-4fe5-a20c-d6760f22053d*F75FC0ED7BD3FDD6361E86F850A15DF2930C841AC60DAB76D2B1D92E0E40B123","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-07-12T19:03:35.5303381Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","name":"d55514ed-2eea-462d-9669-d3d6756dcf5a*9FD9D4D06FDB7DDD46693D70C13D08C4D633190F2042D6971F5A8C268E3CD377","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","status":"Succeeded","startTime":"2023-12-15T10:31:29.6364626Z","properties":null}' headers: cache-control: - no-cache @@ -1616,9 +1592,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:05:05 GMT + - Fri, 15 Dec 2023 10:33:01 GMT etag: - - '"1c00e470-0000-0800-0000-64aef9490000"' + - '"f9110ea4-0000-0100-0000-657c2b470000"' expires: - '-1' pragma: @@ -1648,23 +1624,23 @@ interactions: ParameterSetName: - -n -g --system-assigned User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002?api-version=2023-04-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"jbeauregardb@microsoft.com","createdByType":"User","createdAt":"2023-07-12T18:57:18.826369Z","lastModifiedBy":"jbeauregardb@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-07-12T19:03:34.3736456Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{"clientId":"e0a8480a-7a00-4d74-aa5e-f48cd207b639","principalId":"b33ae551-303f-4a4b-b223-93d73a092123"}}},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"03941484-b473-4d13-8aff-d99282757ec9","dataLocation":"unitedstates"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_communication000001/providers/Microsoft.Communication/communicationServices/resource000002","name":"resource000002","type":"microsoft.communication/communicationservices","location":"global","systemData":{"createdBy":"v-vprasannak@microsoft.com","createdByType":"User","createdAt":"2023-12-15T10:24:58.9981169Z","lastModifiedBy":"v-vprasannak@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2023-12-15T10:31:26.7097297Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_communication000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/managedIdentity":{"clientId":"e7e7d922-3d01-4c92-8905-f23f540bba16","principalId":"b98d25db-72cf-4d2e-bafa-04208ed7188d"}}},"properties":{"provisioningState":"Succeeded","hostName":"resource000002.communication.azure.com","immutableResourceId":"11592529-b09b-4174-8897-c086ba1753a5","dataLocation":"unitedstates"}}' headers: cache-control: - no-cache content-length: - - '1047' + - '1061' content-type: - application/json; charset=utf-8 date: - - Wed, 12 Jul 2023 19:05:06 GMT + - Fri, 15 Dec 2023 10:33:01 GMT etag: - - '"0d00dae2-0000-0700-0000-64aef90d0000"' + - '"4700235c-0000-0700-0000-657c2b0f0000"' expires: - '-1' pragma: 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 48b8a195a14..2b86d435c00 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 @@ -18,7 +18,7 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2023-04-01-preview response: @@ -26,13 +26,13 @@ interactions: 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", "createdByType": - "User", "createdAt": "2023-07-10T21:06:23.2916056Z", "lastModifiedBy": "sanitized", - "lastModifiedByType": "User", "lastModifiedAt": "2023-07-10T21:06:23.2916056Z"}, + "User", "createdAt": "2023-12-15T10:36:52.5923971Z", "lastModifiedBy": "sanitized", + "lastModifiedByType": "User", "lastModifiedAt": "2023-12-15T10:36:52.5923971Z"}, "identity": {"type": "None"}, "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/f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382334140300235&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Q1Y2-b0jEKJ0D67sUtnesKyiLANutsFiG0Zw7Nv48enU1kuQz02RGNQ2RwmQX4noalDBNM-ZcSsl6N-86GjHgGVlmNMJ0Rg1lASH2TnrM87fGqG-7B4o78LkrpF5Ed7Rz6qsl_xkWk9bh5M47WFC3yQQLi6LIxb2rvJ_Vnwwl6McstuM5pN5oEBx-swpNiyAOXsqt5oiTlu9jdmCCTI64FHSMmL6hgkReSySzGO3gaXqrdareDb-kASYdrrTgET9PAJ9BgupODgusNHbqnZatwcuLoii2KG7UnB2ydo-eb9u67QeiZNjaTkrg0y6TErIj_kGbnXqW3eQ2AkHgwl7HQ&h=C9DAQdkFPX20pjWBWvrAG1C-k-1BKcn1rNpAteJNkDw cache-control: - no-cache content-length: @@ -40,13 +40,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:23 GMT + - Fri, 15 Dec 2023 10:36:53 GMT etag: - - '"0c005cba-0000-0700-0000-64ac72cf0000"' + - '"0000c010-0000-2000-0000-657c2c450000"' expires: - '-1' mise-correlation-id: - - 708811d4-e694-4097-948e-d2d85420b4b4 + - 29f16307-6ced-4be7-9bed-be7c053c8e59 pragma: - no-cache request-context: @@ -58,7 +58,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1190' status: code: 201 message: Created @@ -76,26 +76,26 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382334140300235&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Q1Y2-b0jEKJ0D67sUtnesKyiLANutsFiG0Zw7Nv48enU1kuQz02RGNQ2RwmQX4noalDBNM-ZcSsl6N-86GjHgGVlmNMJ0Rg1lASH2TnrM87fGqG-7B4o78LkrpF5Ed7Rz6qsl_xkWk9bh5M47WFC3yQQLi6LIxb2rvJ_Vnwwl6McstuM5pN5oEBx-swpNiyAOXsqt5oiTlu9jdmCCTI64FHSMmL6hgkReSySzGO3gaXqrdareDb-kASYdrrTgET9PAJ9BgupODgusNHbqnZatwcuLoii2KG7UnB2ydo-eb9u67QeiZNjaTkrg0y6TErIj_kGbnXqW3eQ2AkHgwl7HQ&h=C9DAQdkFPX20pjWBWvrAG1C-k-1BKcn1rNpAteJNkDw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Accepted", "startTime": "2023-07-10T21:06:23.6810733Z"}' + "status": "Accepted", "startTime": "2023-12-15T10:36:53.532006Z"}' headers: cache-control: - no-cache content-length: - - '585' + - '584' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:23 GMT + - Fri, 15 Dec 2023 10:36:54 GMT etag: - - '"18001260-0000-0800-0000-64ac72cf0000"' + - '"f911b7b8-0000-0100-0000-657c2c450000"' expires: - '-1' pragma: @@ -125,26 +125,26 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382334140300235&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Q1Y2-b0jEKJ0D67sUtnesKyiLANutsFiG0Zw7Nv48enU1kuQz02RGNQ2RwmQX4noalDBNM-ZcSsl6N-86GjHgGVlmNMJ0Rg1lASH2TnrM87fGqG-7B4o78LkrpF5Ed7Rz6qsl_xkWk9bh5M47WFC3yQQLi6LIxb2rvJ_Vnwwl6McstuM5pN5oEBx-swpNiyAOXsqt5oiTlu9jdmCCTI64FHSMmL6hgkReSySzGO3gaXqrdareDb-kASYdrrTgET9PAJ9BgupODgusNHbqnZatwcuLoii2KG7UnB2ydo-eb9u67QeiZNjaTkrg0y6TErIj_kGbnXqW3eQ2AkHgwl7HQ&h=C9DAQdkFPX20pjWBWvrAG1C-k-1BKcn1rNpAteJNkDw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Accepted", "startTime": "2023-07-10T21:06:23.6810733Z"}' + "status": "Accepted", "startTime": "2023-12-15T10:36:53.532006Z"}' headers: cache-control: - no-cache content-length: - - '585' + - '584' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:53 GMT + - Fri, 15 Dec 2023 10:37:24 GMT etag: - - '"18001260-0000-0800-0000-64ac72cf0000"' + - '"f911b7b8-0000-0100-0000-657c2c450000"' expires: - '-1' pragma: @@ -174,26 +174,26 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382334140300235&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Q1Y2-b0jEKJ0D67sUtnesKyiLANutsFiG0Zw7Nv48enU1kuQz02RGNQ2RwmQX4noalDBNM-ZcSsl6N-86GjHgGVlmNMJ0Rg1lASH2TnrM87fGqG-7B4o78LkrpF5Ed7Rz6qsl_xkWk9bh5M47WFC3yQQLi6LIxb2rvJ_Vnwwl6McstuM5pN5oEBx-swpNiyAOXsqt5oiTlu9jdmCCTI64FHSMmL6hgkReSySzGO3gaXqrdareDb-kASYdrrTgET9PAJ9BgupODgusNHbqnZatwcuLoii2KG7UnB2ydo-eb9u67QeiZNjaTkrg0y6TErIj_kGbnXqW3eQ2AkHgwl7HQ&h=C9DAQdkFPX20pjWBWvrAG1C-k-1BKcn1rNpAteJNkDw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Accepted", "startTime": "2023-07-10T21:06:23.6810733Z"}' + "status": "Accepted", "startTime": "2023-12-15T10:36:53.532006Z"}' headers: cache-control: - no-cache content-length: - - '585' + - '584' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:23 GMT + - Fri, 15 Dec 2023 10:37:54 GMT etag: - - '"18001260-0000-0800-0000-64ac72cf0000"' + - '"f911b7b8-0000-0100-0000-657c2c450000"' expires: - '-1' pragma: @@ -223,27 +223,27 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382334140300235&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Q1Y2-b0jEKJ0D67sUtnesKyiLANutsFiG0Zw7Nv48enU1kuQz02RGNQ2RwmQX4noalDBNM-ZcSsl6N-86GjHgGVlmNMJ0Rg1lASH2TnrM87fGqG-7B4o78LkrpF5Ed7Rz6qsl_xkWk9bh5M47WFC3yQQLi6LIxb2rvJ_Vnwwl6McstuM5pN5oEBx-swpNiyAOXsqt5oiTlu9jdmCCTI64FHSMmL6hgkReSySzGO3gaXqrdareDb-kASYdrrTgET9PAJ9BgupODgusNHbqnZatwcuLoii2KG7UnB2ydo-eb9u67QeiZNjaTkrg0y6TErIj_kGbnXqW3eQ2AkHgwl7HQ&h=C9DAQdkFPX20pjWBWvrAG1C-k-1BKcn1rNpAteJNkDw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "f53f7a9a-bcc3-4ff9-bf70-23541712d7b6*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "87601d23-c6c9-4e76-a2fc-f582cc0fedec*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Succeeded", "startTime": "2023-07-10T21:06:23.6810733Z", "properties": + "status": "Succeeded", "startTime": "2023-12-15T10:36:53.532006Z", "properties": null}' headers: cache-control: - no-cache content-length: - - '606' + - '605' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:54 GMT + - Fri, 15 Dec 2023 10:38:25 GMT etag: - - '"18006960-0000-0800-0000-64ac73110000"' + - '"f911dbbd-0000-0100-0000-657c2c880000"' expires: - '-1' pragma: @@ -273,7 +273,7 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2023-04-01-preview response: @@ -281,22 +281,23 @@ interactions: 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", "createdByType": - "User", "createdAt": "2023-07-10T21:06:23.2916056Z", "lastModifiedBy": "sanitized", - "lastModifiedByType": "User", "lastModifiedAt": "2023-07-10T21:06:23.2916056Z"}, + "User", "createdAt": "2023-12-15T10:36:52.5923971Z", "lastModifiedBy": "sanitized", + "lastModifiedByType": "User", "lastModifiedAt": "2023-12-15T10:36:52.5923971Z"}, "identity": {"type": "None"}, "properties": {"provisioningState": "Succeeded", - "hostName": "mycommunicadxfa6pgbdeev.communication.azure.com", "immutableResourceId": - "e285a1e2-9da7-47d3-88f3-a0c32ba9ac56", "dataLocation": "United States"}}' + "hostName": "mycommunicavmbxyhrzjwqk.communication.azure.com", + "immutableResourceId": "9162a03c-27df-4241-9002-a293f2ff492f", "dataLocation": + "United States"}}' headers: cache-control: - no-cache content-length: - - '734' + - '747' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:54 GMT + - Fri, 15 Dec 2023 10:38:25 GMT etag: - - '"0c0065ba-0000-0700-0000-64ac72d70000"' + - '"47008d5d-0000-0700-0000-657c2c520000"' expires: - '-1' pragma: @@ -328,7 +329,7 @@ interactions: ParameterSetName: - --created --name --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2023-04-01-preview response: @@ -336,22 +337,23 @@ interactions: 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", "createdByType": - "User", "createdAt": "2023-07-10T21:06:23.2916056Z", "lastModifiedBy": "sanitized", - "lastModifiedByType": "User", "lastModifiedAt": "2023-07-10T21:06:23.2916056Z"}, + "User", "createdAt": "2023-12-15T10:36:52.5923971Z", "lastModifiedBy": "sanitized", + "lastModifiedByType": "User", "lastModifiedAt": "2023-12-15T10:36:52.5923971Z"}, "identity": {"type": "None"}, "properties": {"provisioningState": "Succeeded", - "hostName": "mycommunicadxfa6pgbdeev.communication.azure.com", "immutableResourceId": - "e285a1e2-9da7-47d3-88f3-a0c32ba9ac56", "dataLocation": "United States"}}' + "hostName": "mycommunicavmbxyhrzjwqk.communication.azure.com", + "immutableResourceId": "9162a03c-27df-4241-9002-a293f2ff492f", "dataLocation": + "United States"}}' headers: cache-control: - no-cache content-length: - - '734' + - '747' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:55 GMT + - Fri, 15 Dec 2023 10:38:26 GMT etag: - - '"0c0065ba-0000-0700-0000-64ac72d70000"' + - '"47008d5d-0000-0700-0000-657c2c520000"' expires: - '-1' pragma: @@ -383,7 +385,7 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2023-04-01-preview response: @@ -391,32 +393,29 @@ interactions: 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", "createdByType": - "User", "createdAt": "2023-07-10T21:06:23.2916056Z", "lastModifiedBy": "sanitized", - "lastModifiedByType": "User", "lastModifiedAt": "2023-07-10T21:06:23.2916056Z"}, + "User", "createdAt": "2023-12-15T10:36:52.5923971Z", "lastModifiedBy": "sanitized", + "lastModifiedByType": "User", "lastModifiedAt": "2023-12-15T10:36:52.5923971Z"}, "identity": {"type": "None"}, "properties": {"provisioningState": "Succeeded", - "hostName": "mycommunicadxfa6pgbdeev.communication.azure.com", "immutableResourceId": - "e285a1e2-9da7-47d3-88f3-a0c32ba9ac56", "dataLocation": "United States"}}' + "hostName": "mycommunicavmbxyhrzjwqk.communication.azure.com", + "immutableResourceId": "9162a03c-27df-4241-9002-a293f2ff492f", "dataLocation": + "United States"}}' headers: cache-control: - no-cache content-length: - - '734' + - '747' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:55 GMT + - Fri, 15 Dec 2023 10:38:26 GMT etag: - - '"0c0065ba-0000-0700-0000-64ac72d70000"' + - '"47008d5d-0000-0700-0000-657c2c520000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-providerhub-traffic: @@ -438,7 +437,7 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices?api-version=2023-04-01-preview response: @@ -446,30 +445,27 @@ interactions: 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", "createdByType": - "User", "createdAt": "2023-07-10T21:06:23.2916056Z", "lastModifiedBy": "sanitized", - "lastModifiedByType": "User", "lastModifiedAt": "2023-07-10T21:06:23.2916056Z"}, + "User", "createdAt": "2023-12-15T10:36:52.5923971Z", "lastModifiedBy": "sanitized", + "lastModifiedByType": "User", "lastModifiedAt": "2023-12-15T10:36:52.5923971Z"}, "identity": {"type": "None"}, "properties": {"provisioningState": "Succeeded", - "hostName": "mycommunicadxfa6pgbdeev.communication.azure.com", "immutableResourceId": - "e285a1e2-9da7-47d3-88f3-a0c32ba9ac56", "dataLocation": "United States"}}]}' + "hostName": "mycommunicavmbxyhrzjwqk.communication.azure.com", + "immutableResourceId": "9162a03c-27df-4241-9002-a293f2ff492f", "dataLocation": + "United States"}}]}' headers: cache-control: - no-cache content-length: - - '747' + - '760' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:55 GMT + - Fri, 15 Dec 2023 10:38:27 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-providerhub-traffic: @@ -491,7 +487,7 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices?api-version=2023-04-01-preview response: @@ -499,30 +495,27 @@ interactions: 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", "createdByType": - "User", "createdAt": "2023-07-10T21:06:23.2916056Z", "lastModifiedBy": "sanitized", - "lastModifiedByType": "User", "lastModifiedAt": "2023-07-10T21:06:23.2916056Z"}, + "User", "createdAt": "2023-12-15T10:36:52.5923971Z", "lastModifiedBy": "sanitized", + "lastModifiedByType": "User", "lastModifiedAt": "2023-12-15T10:36:52.5923971Z"}, "identity": {"type": "None"}, "properties": {"provisioningState": "Succeeded", - "hostName": "mycommunicadxfa6pgbdeev.communication.azure.com", "immutableResourceId": - "e285a1e2-9da7-47d3-88f3-a0c32ba9ac56", "dataLocation": "United States"}}]}' + "hostName": "mycommunicavmbxyhrzjwqk.communication.azure.com", + "immutableResourceId": "9162a03c-27df-4241-9002-a293f2ff492f", "dataLocation": + "United States"}}]}' headers: cache-control: - no-cache content-length: - - '747' + - '760' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:56 GMT + - Fri, 15 Dec 2023 10:38:27 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-providerhub-traffic: @@ -544,7 +537,7 @@ interactions: ParameterSetName: - --name --tags --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2023-04-01-preview response: @@ -552,32 +545,29 @@ interactions: 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", "createdByType": - "User", "createdAt": "2023-07-10T21:06:23.2916056Z", "lastModifiedBy": "sanitized", - "lastModifiedByType": "User", "lastModifiedAt": "2023-07-10T21:06:23.2916056Z"}, + "User", "createdAt": "2023-12-15T10:36:52.5923971Z", "lastModifiedBy": "sanitized", + "lastModifiedByType": "User", "lastModifiedAt": "2023-12-15T10:36:52.5923971Z"}, "identity": {"type": "None"}, "properties": {"provisioningState": "Succeeded", - "hostName": "mycommunicadxfa6pgbdeev.communication.azure.com", "immutableResourceId": - "e285a1e2-9da7-47d3-88f3-a0c32ba9ac56", "dataLocation": "United States"}}' + "hostName": "mycommunicavmbxyhrzjwqk.communication.azure.com", + "immutableResourceId": "9162a03c-27df-4241-9002-a293f2ff492f", "dataLocation": + "United States"}}' headers: cache-control: - no-cache content-length: - - '734' + - '747' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:57 GMT + - Fri, 15 Dec 2023 10:38:28 GMT etag: - - '"0c0065ba-0000-0700-0000-64ac72d70000"' + - '"47008d5d-0000-0700-0000-657c2c520000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-providerhub-traffic: @@ -604,7 +594,7 @@ interactions: ParameterSetName: - --name --tags --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2023-04-01-preview response: @@ -612,29 +602,29 @@ interactions: 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", "createdByType": "User", "createdAt": "2023-07-10T21:06:23.2916056Z", + "sanitized", "createdByType": "User", "createdAt": "2023-12-15T10:36:52.5923971Z", "lastModifiedBy": "sanitized", "lastModifiedByType": "User", "lastModifiedAt": - "2023-07-10T21:07:57.7285989Z"}, "identity": {"type": "None"}, "properties": - {"provisioningState": "Accepted", "hostName": "mycommunicadxfa6pgbdeev.communication.azure.com", - "immutableResourceId": "e285a1e2-9da7-47d3-88f3-a0c32ba9ac56", "dataLocation": + "2023-12-15T10:38:29.3738001Z"}, "identity": {"type": "None"}, "properties": + {"provisioningState": "Accepted", "hostName": "mycommunicavmbxyhrzjwqk.communication.azure.com", + "immutableResourceId": "9162a03c-27df-4241-9002-a293f2ff492f", "dataLocation": "United States"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382335123113619&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Fog05lEhWO3N2oc3-rY6kVzMTgEC0Om3sAiPQivSUfKF6MoRbNFHfe-nUyguOSJRYI2PRG_KJSJroxyPGWZUNNvLDm2kRIRhMaDhKuh2qtOKjhLjXLmaUPyKxNiNMoYhTza4Md9ZU71FVfnYcpDO0VMT4LO2RHrGxWd9o6G_JnGAqQkR5XcBlBLQuY_4bGbq5t2KGidz0oSubkU3L6CeeOh3vhTjISvGUwKkcdX-xxpJE88EaeXCA-bqTBGEk8sdHeNTMILvdMa4jIzGzzRDtGKlzW-lhk65B_fXIi87hHvQwYl7X5jb1CBz5gIDb0TUqtt0KTrUl6DOYieqrZGofQ&h=ehPAyZj4y6j1XC-iwl0E7ZAkK2aKXHaXpLFxC4VDVnA cache-control: - no-cache content-length: - - '763' + - '776' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:58 GMT + - Fri, 15 Dec 2023 10:38:31 GMT etag: - - '"0c00bbba-0000-0700-0000-64ac732d0000"' + - '"0000c710-0000-2000-0000-657c2ca50000"' expires: - '-1' mise-correlation-id: - - 014b190d-88a6-4dda-ba22-f5d80b80d60f + - a766cc8f-f482-42af-81dc-e61daa976be7 pragma: - no-cache request-context: @@ -646,7 +636,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1195' status: code: 201 message: Created @@ -664,15 +654,15 @@ interactions: ParameterSetName: - --name --tags --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382335123113619&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Fog05lEhWO3N2oc3-rY6kVzMTgEC0Om3sAiPQivSUfKF6MoRbNFHfe-nUyguOSJRYI2PRG_KJSJroxyPGWZUNNvLDm2kRIRhMaDhKuh2qtOKjhLjXLmaUPyKxNiNMoYhTza4Md9ZU71FVfnYcpDO0VMT4LO2RHrGxWd9o6G_JnGAqQkR5XcBlBLQuY_4bGbq5t2KGidz0oSubkU3L6CeeOh3vhTjISvGUwKkcdX-xxpJE88EaeXCA-bqTBGEk8sdHeNTMILvdMa4jIzGzzRDtGKlzW-lhk65B_fXIi87hHvQwYl7X5jb1CBz5gIDb0TUqtt0KTrUl6DOYieqrZGofQ&h=ehPAyZj4y6j1XC-iwl0E7ZAkK2aKXHaXpLFxC4VDVnA response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Accepted", "startTime": "2023-07-10T21:07:57.9383325Z"}' + "status": "Accepted", "startTime": "2023-12-15T10:38:29.5228905Z"}' headers: cache-control: - no-cache @@ -681,19 +671,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:58 GMT + - Fri, 15 Dec 2023 10:38:32 GMT etag: - - '"18008260-0000-0800-0000-64ac732d0000"' + - '"f91149c0-0000-0100-0000-657c2ca50000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -713,15 +699,15 @@ interactions: ParameterSetName: - --name --tags --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382335123113619&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Fog05lEhWO3N2oc3-rY6kVzMTgEC0Om3sAiPQivSUfKF6MoRbNFHfe-nUyguOSJRYI2PRG_KJSJroxyPGWZUNNvLDm2kRIRhMaDhKuh2qtOKjhLjXLmaUPyKxNiNMoYhTza4Md9ZU71FVfnYcpDO0VMT4LO2RHrGxWd9o6G_JnGAqQkR5XcBlBLQuY_4bGbq5t2KGidz0oSubkU3L6CeeOh3vhTjISvGUwKkcdX-xxpJE88EaeXCA-bqTBGEk8sdHeNTMILvdMa4jIzGzzRDtGKlzW-lhk65B_fXIi87hHvQwYl7X5jb1CBz5gIDb0TUqtt0KTrUl6DOYieqrZGofQ&h=ehPAyZj4y6j1XC-iwl0E7ZAkK2aKXHaXpLFxC4VDVnA response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Accepted", "startTime": "2023-07-10T21:07:57.9383325Z"}' + "status": "Accepted", "startTime": "2023-12-15T10:38:29.5228905Z"}' headers: cache-control: - no-cache @@ -730,19 +716,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:08:28 GMT + - Fri, 15 Dec 2023 10:39:03 GMT etag: - - '"18008260-0000-0800-0000-64ac732d0000"' + - '"f91149c0-0000-0100-0000-657c2ca50000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -762,15 +744,15 @@ interactions: ParameterSetName: - --name --tags --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382335123113619&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Fog05lEhWO3N2oc3-rY6kVzMTgEC0Om3sAiPQivSUfKF6MoRbNFHfe-nUyguOSJRYI2PRG_KJSJroxyPGWZUNNvLDm2kRIRhMaDhKuh2qtOKjhLjXLmaUPyKxNiNMoYhTza4Md9ZU71FVfnYcpDO0VMT4LO2RHrGxWd9o6G_JnGAqQkR5XcBlBLQuY_4bGbq5t2KGidz0oSubkU3L6CeeOh3vhTjISvGUwKkcdX-xxpJE88EaeXCA-bqTBGEk8sdHeNTMILvdMa4jIzGzzRDtGKlzW-lhk65B_fXIi87hHvQwYl7X5jb1CBz5gIDb0TUqtt0KTrUl6DOYieqrZGofQ&h=ehPAyZj4y6j1XC-iwl0E7ZAkK2aKXHaXpLFxC4VDVnA response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Accepted", "startTime": "2023-07-10T21:07:57.9383325Z"}' + "status": "Accepted", "startTime": "2023-12-15T10:38:29.5228905Z"}' headers: cache-control: - no-cache @@ -779,19 +761,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:08:58 GMT + - Fri, 15 Dec 2023 10:39:33 GMT etag: - - '"18008260-0000-0800-0000-64ac732d0000"' + - '"f91149c0-0000-0100-0000-657c2ca50000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -811,15 +789,15 @@ interactions: ParameterSetName: - --name --tags --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382335123113619&c=MIIHADCCBeigAwIBAgITHgOOZnSUesiIBulFwAAAA45mdDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDUxOTQ3WhcNMjQxMDI2MDUxOTQ3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOtwjRh-1G1a4yBlEy6M1AUa9Hq-Ri3r8iWBtdkLmcsejm48p6INIQx7aREhaizCEfvdoJpt69YKxHHg88zVFCZmcjwwXfyQKfZfKO2LZ0pWDws_OPuxD2zTIQHyZera5VZWwqn0El0Y7Vi7ROfDODi-_coovUwQhkUnnRqi1qHAWHn132H1R0LTlVpve9I6Osbib8lkRd6e4jrVrCT96iC8MJcdr5TVBH8shaJT_PXgda0rZwA_YIKVO8URdjWCaNuuRbkrrCIfoCj0O3tyRVkK4VNNAcWiEZUJVj2Dkzpn6fxA01bNli4-RvP0GQ4rk-cK28IIq9KBLyHA7QLdF80CAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTUZBUS9B61FL0tNpXxcrxMZE6PMzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAKKa3hOZEgZXFsSf1I0yVgExP5QoFqwoL9gFup0ENl3D9BNUuSsJYpNcqCY-6HyZeDCMQWsgI663Hc9xPq-LX47BRWkNpWdV-DOD2BbSL42M7aGdyNxYilWFKeTy-P0vZBhfJQHTsmZCM7T_sGB0iaeJSp03JIWGCbn1iFU8_0PLBRf6Xp18C8Yo-xv1QFPEKvrSSHof-6k2YTbYTIaoJQJ8I-uoFWm0csgtiYn5jiF6Cq1qSsJ1SecSkZ_Be0jsEECNlA26v7Pi_NqL_lKOpi752KtXbvn2IuMAmCQjr28NZz2fcJ1q-3CsBflvJzW1aBnQxCxC19jDjfSiGbcE11A&s=Fog05lEhWO3N2oc3-rY6kVzMTgEC0Om3sAiPQivSUfKF6MoRbNFHfe-nUyguOSJRYI2PRG_KJSJroxyPGWZUNNvLDm2kRIRhMaDhKuh2qtOKjhLjXLmaUPyKxNiNMoYhTza4Md9ZU71FVfnYcpDO0VMT4LO2RHrGxWd9o6G_JnGAqQkR5XcBlBLQuY_4bGbq5t2KGidz0oSubkU3L6CeeOh3vhTjISvGUwKkcdX-xxpJE88EaeXCA-bqTBGEk8sdHeNTMILvdMa4jIzGzzRDtGKlzW-lhk65B_fXIi87hHvQwYl7X5jb1CBz5gIDb0TUqtt0KTrUl6DOYieqrZGofQ&h=ehPAyZj4y6j1XC-iwl0E7ZAkK2aKXHaXpLFxC4VDVnA response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "6524a275-99a0-4803-8c3c-0826aadd705e*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "33bf1d87-3c1a-4bf4-a039-d37ce1d136b4*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Succeeded", "startTime": "2023-07-10T21:07:57.9383325Z", "properties": + "status": "Succeeded", "startTime": "2023-12-15T10:38:29.5228905Z", "properties": null}' headers: cache-control: @@ -829,19 +807,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:27 GMT + - Fri, 15 Dec 2023 10:40:03 GMT etag: - - '"1800ba60-0000-0800-0000-64ac736f0000"' + - '"f911c5c5-0000-0100-0000-657c2ce90000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -861,7 +835,7 @@ interactions: ParameterSetName: - --name --tags --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2023-04-01-preview response: @@ -869,33 +843,29 @@ interactions: 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", "createdByType": "User", "createdAt": "2023-07-10T21:06:23.2916056Z", + "sanitized", "createdByType": "User", "createdAt": "2023-12-15T10:36:52.5923971Z", "lastModifiedBy": "sanitized", "lastModifiedByType": "User", "lastModifiedAt": - "2023-07-10T21:07:57.7285989Z"}, "identity": {"type": "None"}, "properties": - {"provisioningState": "Succeeded", "hostName": "mycommunicadxfa6pgbdeev.communication.azure.com", - "immutableResourceId": "e285a1e2-9da7-47d3-88f3-a0c32ba9ac56", "dataLocation": + "2023-12-15T10:38:29.3738001Z"}, "identity": {"type": "None"}, "properties": + {"provisioningState": "Succeeded", "hostName": "mycommunicavmbxyhrzjwqk.communication.azure.com", + "immutableResourceId": "9162a03c-27df-4241-9002-a293f2ff492f", "dataLocation": "United States"}}' headers: cache-control: - no-cache content-length: - - '764' + - '777' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:28 GMT + - Fri, 15 Dec 2023 10:40:03 GMT etag: - - '"0c00bdba-0000-0700-0000-64ac73330000"' + - '"4700c85d-0000-0700-0000-657c2cb10000"' expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-providerhub-traffic: @@ -922,7 +892,7 @@ interactions: ParameterSetName: - --name --connection-string --resource-id --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001/linkNotificationHub?api-version=2023-04-01-preview response: @@ -936,27 +906,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:29 GMT + - Fri, 15 Dec 2023 10:40:05 GMT expires: - '-1' mise-correlation-id: - - 1534c0ae-8f62-4269-8260-156a08805b79 + - a4c20aae-7aa9-442a-be3d-c97d623e0334 pragma: - no-cache request-context: - appId= strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -976,44 +942,40 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001/listKeys?api-version=2023-04-01-preview response: body: - string: '{"primaryKey": "XQngcUR7OTjVCSE9zBsIM5ciXD3sg/N4kJiAegKWZu+dslJw9wL7r2HNwiBpDiphqMLa8pcitWWJZ3o8PdTAUw==", - "secondaryKey": "84h9Pc3i/gsfOfKFTIvqCFLn40EQIFjAZrwpWaIzQw69lhk7r+WpyMn0CDuIUpM4wxHDx5Vn0yplhpPvkdjBtg==", - "primaryConnectionString": "endpoint=https://mycommunicadxfa6pgbdeev.communication.azure.com/;accesskey=XQngcUR7OTjVCSE9zBsIM5ciXD3sg/N4kJiAegKWZu+dslJw9wL7r2HNwiBpDiphqMLa8pcitWWJZ3o8PdTAUw==", - "secondaryConnectionString": "endpoint=https://mycommunicadxfa6pgbdeev.communication.azure.com/;accesskey=84h9Pc3i/gsfOfKFTIvqCFLn40EQIFjAZrwpWaIzQw69lhk7r+WpyMn0CDuIUpM4wxHDx5Vn0yplhpPvkdjBtg=="}' + string: '{"primaryKey": "Ylias9tGlHabWCvpsnPL5p1laYvPzl9XfJ/5cC38bdtgnpr9e6J/mUvIj4GuKmQLqpresiAs5tyoEq2vRN9oUA==", + "secondaryKey": "7zbz9vHwf/dc69vYqUm3jxOmf+1Bvqv14WvIIZstpWOUPu7NKXMUduTrVHavvzUrHFneE+nzrsgCMzJf8/vZ8Q==", + "primaryConnectionString": "endpoint=https://mycommunicavmbxyhrzjwqk.communication.azure.com/;accesskey=Ylias9tGlHabWCvpsnPL5p1laYvPzl9XfJ/5cC38bdtgnpr9e6J/mUvIj4GuKmQLqpresiAs5tyoEq2vRN9oUA==", + "secondaryConnectionString": "endpoint=https://mycommunicavmbxyhrzjwqk.communication.azure.com/;accesskey=7zbz9vHwf/dc69vYqUm3jxOmf+1Bvqv14WvIIZstpWOUPu7NKXMUduTrVHavvzUrHFneE+nzrsgCMzJf8/vZ8Q=="}' headers: cache-control: - no-cache content-length: - - '606' + - '632' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:31 GMT + - Fri, 15 Dec 2023 10:40:07 GMT expires: - '-1' mise-correlation-id: - - e40ee736-0c10-4e6c-bb30-8a8d0147005b + - 31e86876-7770-4dfc-ad77-6526f5df2c3a pragma: - no-cache request-context: - appId= strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -1035,26 +997,26 @@ interactions: ParameterSetName: - --name --key-type --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001/regenerateKey?api-version=2023-04-01-preview response: body: - string: '{"primaryKey": "FmSyeCJwD8+Qeh1dXSOSf5Q8k2UeTxgkXsjba42na5wdvTIkb/atg3XjIygMs68ptVtifSFioS5Wn7V3sfHjgw==", - "primaryConnectionString": "endpoint=https://mycommunicadxfa6pgbdeev.communication.azure.com/;accesskey=FmSyeCJwD8+Qeh1dXSOSf5Q8k2UeTxgkXsjba42na5wdvTIkb/atg3XjIygMs68ptVtifSFioS5Wn7V3sfHjgw=="}' + string: '{"primaryKey": "95vIQvFvxRxsxe5XbbktQ94K+jOOdOJn6xGRNZXZVrabHI710h7RLUiTJKP/nN6KjO9p3vIstRxkZhdAg64HGQ==", + "primaryConnectionString": "endpoint=https://mycommunicavmbxyhrzjwqk.communication.azure.com/;accesskey=95vIQvFvxRxsxe5XbbktQ94K+jOOdOJn6xGRNZXZVrabHI710h7RLUiTJKP/nN6KjO9p3vIstRxkZhdAg64HGQ=="}' headers: cache-control: - no-cache content-length: - - '301' + - '314' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:31 GMT + - Fri, 15 Dec 2023 10:40:10 GMT expires: - '-1' mise-correlation-id: - - 524ad9f5-0a82-42a8-a162-d153f74ae212 + - 992e8809-29c1-461f-8ec3-a8117bf11595 pragma: - no-cache request-context: @@ -1070,7 +1032,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -1090,7 +1052,7 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2023-04-01-preview response: @@ -1098,7 +1060,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336117646092&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=kgysZoSVQkFO_fotIcYLv8a_jY_dl4_lstoPB3JcBNjxHVPUJB3XUzgTcVzLW9604q977glxbvWQYnmLmhaatdZrZFfZZtoN2etqs8Q9-VZLARk8jB_3nFXnYOjfXeA-ZuQDzzcTpz_pLqQ3s-S3t2KBEqeT7_cBghQiOXism6RBlF9zz4pqxEa0N39pY9GJZQwn-h49zBeJdBh_qWGymqddxWm67HDjYY2FbRXl2btB635FcuYxmKhF3mGt5L4FnJwhN0fvGENKmdgsaVUEcLjLvasEdwSDoZAMmWXLbPvH_LYN_zcGDF-oqpVwei04Fgjk5KSeWQoGnnthDAfKIw&h=jvm3c96lfvNqopZVSfrnTXwWH1NSHGiEeHIW8a26kcc cache-control: - no-cache content-length: @@ -1106,13 +1068,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:31 GMT + - Fri, 15 Dec 2023 10:40:11 GMT etag: - - '"0c00fbba-0000-0700-0000-64ac738c0000"' + - '"0000d610-0000-2000-0000-657c2d0b0000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336117646092&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=kgysZoSVQkFO_fotIcYLv8a_jY_dl4_lstoPB3JcBNjxHVPUJB3XUzgTcVzLW9604q977glxbvWQYnmLmhaatdZrZFfZZtoN2etqs8Q9-VZLARk8jB_3nFXnYOjfXeA-ZuQDzzcTpz_pLqQ3s-S3t2KBEqeT7_cBghQiOXism6RBlF9zz4pqxEa0N39pY9GJZQwn-h49zBeJdBh_qWGymqddxWm67HDjYY2FbRXl2btB635FcuYxmKhF3mGt5L4FnJwhN0fvGENKmdgsaVUEcLjLvasEdwSDoZAMmWXLbPvH_LYN_zcGDF-oqpVwei04Fgjk5KSeWQoGnnthDAfKIw&h=jvm3c96lfvNqopZVSfrnTXwWH1NSHGiEeHIW8a26kcc pragma: - no-cache strict-transport-security: @@ -1122,7 +1084,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' status: code: 202 message: Accepted @@ -1140,18 +1102,18 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336117646092&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=kgysZoSVQkFO_fotIcYLv8a_jY_dl4_lstoPB3JcBNjxHVPUJB3XUzgTcVzLW9604q977glxbvWQYnmLmhaatdZrZFfZZtoN2etqs8Q9-VZLARk8jB_3nFXnYOjfXeA-ZuQDzzcTpz_pLqQ3s-S3t2KBEqeT7_cBghQiOXism6RBlF9zz4pqxEa0N39pY9GJZQwn-h49zBeJdBh_qWGymqddxWm67HDjYY2FbRXl2btB635FcuYxmKhF3mGt5L4FnJwhN0fvGENKmdgsaVUEcLjLvasEdwSDoZAMmWXLbPvH_LYN_zcGDF-oqpVwei04Fgjk5KSeWQoGnnthDAfKIw&h=jvm3c96lfvNqopZVSfrnTXwWH1NSHGiEeHIW8a26kcc response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Deleting", "startTime": "2023-07-10T21:09:32.4659215Z"}' + "status": "Deleting", "startTime": "2023-12-15T10:40:11.5043851Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336125303926&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Byxv8NJPV4ipWxzIkMUIjMV23NUpTSCWTt0gzdwPHdQmY7-_zqe3nLxxZDQ5mbswoHSMq2VeN9GWL8ybbx8zLU482nKbwv1NII1uULFJ3cg3jH_fDFTf0QXDgZK9gDDGirT7CY0F1HjSYY1ujYa-PDvQL8QEyA5rxvA2dC_nQR2xxXl_genTwbY2p_Wm6yLTmjhQ3KFDJ8SwlBTmZdx5V4IzyFiptqDmhYQdVQxwcO1CzL2ajqaVyYgGOyREz7sdWVDH02DSCEFLOuBeLPucEgH502AnRM9NdTF4sFP6yVUbl3nRjsFOubkHqq-jlzK39xrnDsFUUBiHGeSSrLYq5w&h=sLhaV3kqBCUkewlXWKJcomT0U3G1xeLt4oxep0YRFPU cache-control: - no-cache content-length: @@ -1159,13 +1121,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:31 GMT + - Fri, 15 Dec 2023 10:40:12 GMT etag: - - '"1800e360-0000-0800-0000-64ac738c0000"' + - '"f91140c8-0000-0100-0000-657c2d0b0000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336125303926&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=Byxv8NJPV4ipWxzIkMUIjMV23NUpTSCWTt0gzdwPHdQmY7-_zqe3nLxxZDQ5mbswoHSMq2VeN9GWL8ybbx8zLU482nKbwv1NII1uULFJ3cg3jH_fDFTf0QXDgZK9gDDGirT7CY0F1HjSYY1ujYa-PDvQL8QEyA5rxvA2dC_nQR2xxXl_genTwbY2p_Wm6yLTmjhQ3KFDJ8SwlBTmZdx5V4IzyFiptqDmhYQdVQxwcO1CzL2ajqaVyYgGOyREz7sdWVDH02DSCEFLOuBeLPucEgH502AnRM9NdTF4sFP6yVUbl3nRjsFOubkHqq-jlzK39xrnDsFUUBiHGeSSrLYq5w&h=sLhaV3kqBCUkewlXWKJcomT0U3G1xeLt4oxep0YRFPU pragma: - no-cache strict-transport-security: @@ -1189,18 +1151,18 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336117646092&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=kgysZoSVQkFO_fotIcYLv8a_jY_dl4_lstoPB3JcBNjxHVPUJB3XUzgTcVzLW9604q977glxbvWQYnmLmhaatdZrZFfZZtoN2etqs8Q9-VZLARk8jB_3nFXnYOjfXeA-ZuQDzzcTpz_pLqQ3s-S3t2KBEqeT7_cBghQiOXism6RBlF9zz4pqxEa0N39pY9GJZQwn-h49zBeJdBh_qWGymqddxWm67HDjYY2FbRXl2btB635FcuYxmKhF3mGt5L4FnJwhN0fvGENKmdgsaVUEcLjLvasEdwSDoZAMmWXLbPvH_LYN_zcGDF-oqpVwei04Fgjk5KSeWQoGnnthDAfKIw&h=jvm3c96lfvNqopZVSfrnTXwWH1NSHGiEeHIW8a26kcc response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Deleting", "startTime": "2023-07-10T21:09:32.4659215Z"}' + "status": "Deleting", "startTime": "2023-12-15T10:40:11.5043851Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336428983274&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=UvqYJk__RwPXMeymrPGhhFGNHJk9krUyqT2IlE2L_PBa-8_xX9KqtXgvERi9q8X6XOBgReve_HjLFw3AVx9kP_23w95qp-xl6_uxnvpaA-NeGhYebvRkHLBFoAlxgbts_kHJOWvOu-xaEU8GhtrxeXIN00Za1QYwQjyP2Ox220ZcogSc1AzQzp8mpi9xOox2r-e04zrk7IBNh5y743DZ2lIz88AP1RbdgZjF21IQYDp_2xSwoL-1glqSQyplkrdHvu5wctO6Okwe9xKzOvihoa_7xGzZ0JstNCEJok5ZsKjHnFUAAGUz7f7_YnovRpBR_LtuXshSmTJKgBmJa1ETpA&h=P2fpi2iD7a4_ZLGZMBEex_SAJZu_JSKSF_SnqEQb8F4 cache-control: - no-cache content-length: @@ -1208,13 +1170,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:10:02 GMT + - Fri, 15 Dec 2023 10:40:42 GMT etag: - - '"1800e360-0000-0800-0000-64ac738c0000"' + - '"f91140c8-0000-0100-0000-657c2d0b0000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336429139965&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=mJZahnT2b9QQrhgrDK1ZaTq4rGtgUGf0iU-W2EH59XOl7mtzyzjXhbQ3X89odgtqkXdoVSw_HBj5yE-9jaanFh8rMaUniTIcxe1SMPvtzOBqgG5n_68jzvix0-D-Ga_6qd9Var6_NyNS_0BeZMA1iZpTP3zgmUlN0Xc3QNQEB5N_aswoZexLivtot_kMfDqcvA93J6X2jHodOi1-1TLqkmjB1rKcNUGvP-v5A09H2ty8UvvURcC02JRWqdLabqapUpL7XQdmy9tSeS172iQoOy8Y2YVeukWrFB_flhyjF1nQVwaA96lWlABxdzgHsuLRMrenEs0i6AZfX09loMmfbA&h=Yb1I0lkEf4t0bvr2vxhFuVzKgA_--PfOkjfm2mlzuaM pragma: - no-cache strict-transport-security: @@ -1238,18 +1200,18 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336117646092&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=kgysZoSVQkFO_fotIcYLv8a_jY_dl4_lstoPB3JcBNjxHVPUJB3XUzgTcVzLW9604q977glxbvWQYnmLmhaatdZrZFfZZtoN2etqs8Q9-VZLARk8jB_3nFXnYOjfXeA-ZuQDzzcTpz_pLqQ3s-S3t2KBEqeT7_cBghQiOXism6RBlF9zz4pqxEa0N39pY9GJZQwn-h49zBeJdBh_qWGymqddxWm67HDjYY2FbRXl2btB635FcuYxmKhF3mGt5L4FnJwhN0fvGENKmdgsaVUEcLjLvasEdwSDoZAMmWXLbPvH_LYN_zcGDF-oqpVwei04Fgjk5KSeWQoGnnthDAfKIw&h=jvm3c96lfvNqopZVSfrnTXwWH1NSHGiEeHIW8a26kcc response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Deleting", "startTime": "2023-07-10T21:09:32.4659215Z"}' + "status": "Deleting", "startTime": "2023-12-15T10:40:11.5043851Z"}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336732142154&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=b_WRZ4IgayKMq1AeCxwwFROYewveFmb5Q3SqxQkHHpeUj5ZPAWUzrfm3Cu8HfBZREyMruSoTfz5HwTvP_R3kfZiyzeGQ3Z6YIxTjfJuyldS0_WwSPPfqTVYBR7wd6PrO_I2GkUJ_jTyv4PezzgeSjslHJM799mNhrliExoOkcI7vAwdpVbM4vZtpFYSKhdYvHImFQzhqBTkBpTvSiColPocgR-2fRsd1g7F4YgZGdN8bNF85CUgAJq_M_TNmAKLDDs8NcwoKC5kwvyQLpG2Dbn89q7y3widNnvQRQMQbYwLGoKw7PcnnzTrVVdbfpQ3qUsXuAkLrXb9AuS25eksj4w&h=SkVF98iwhsdDExUi4f6X0Qhn9R2lcOZ-h9ouytPdHTA cache-control: - no-cache content-length: @@ -1257,13 +1219,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:10:32 GMT + - Fri, 15 Dec 2023 10:41:13 GMT etag: - - '"1800e360-0000-0800-0000-64ac738c0000"' + - '"f91140c8-0000-0100-0000-657c2d0b0000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/westus2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336732298988&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=NEfukS9Dm4uqcM1q36NI_n7Hys146KJqtlvkjgbNgj2I7wj0TvKSDAmQw_b5QkxG5EPrE4C1SWbPOImrgpj7pNqVetHiohHSizKDcz9_X5mV7R71SowhL5wKhbGciPIy7dxIrbRdQdsgR8OrVUSBrkI69_KsVKTi8UspmpLzr8gIFU7LZsihB4mCjjYULqTnTCab-yeCNtdew6ZfHTf98MQV1h9-nMf0cQBxrb2kbLYp2UsiFVXS1oy1qRcUGXtPeRNzrg6d6aW_uTbwNDnUXbHDnpr-W18Tue-Vv9wMXA1TLPn-F8AVhfzumWFkQfQ-vfL-b_VoYDltV-g8QRYm8g&h=_j7WHDh1Gzg2DGC3Uz53vZ9jY3fLvcOko1vncoE9AuE pragma: - no-cache strict-transport-security: @@ -1287,15 +1249,15 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336117646092&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=kgysZoSVQkFO_fotIcYLv8a_jY_dl4_lstoPB3JcBNjxHVPUJB3XUzgTcVzLW9604q977glxbvWQYnmLmhaatdZrZFfZZtoN2etqs8Q9-VZLARk8jB_3nFXnYOjfXeA-ZuQDzzcTpz_pLqQ3s-S3t2KBEqeT7_cBghQiOXism6RBlF9zz4pqxEa0N39pY9GJZQwn-h49zBeJdBh_qWGymqddxWm67HDjYY2FbRXl2btB635FcuYxmKhF3mGt5L4FnJwhN0fvGENKmdgsaVUEcLjLvasEdwSDoZAMmWXLbPvH_LYN_zcGDF-oqpVwei04Fgjk5KSeWQoGnnthDAfKIw&h=jvm3c96lfvNqopZVSfrnTXwWH1NSHGiEeHIW8a26kcc response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Succeeded", "startTime": "2023-07-10T21:09:32.4659215Z", "properties": + "status": "Succeeded", "startTime": "2023-12-15T10:40:11.5043851Z", "properties": null}' headers: cache-control: @@ -1305,9 +1267,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:11:02 GMT + - Fri, 15 Dec 2023 10:41:43 GMT etag: - - '"b4007840-0000-0700-0000-64ac73cd0000"' + - '"f911e9cc-0000-0100-0000-657c2d4e0000"' expires: - '-1' pragma: @@ -1337,15 +1299,15 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.29.5 Python/3.10.11 (Windows-10-10.0.19045-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675?api-version=2023-04-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2?api-version=2023-04-01-preview&t=638382336117646092&c=MIIHADCCBeigAwIBAgITHgOOTF2IP7nZFyla6AAAA45MXTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjMxMTAxMDMzOTAzWhcNMjQxMDI2MDMzOTAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKktUTh2v1SGL7dLk28cowQRt_0hicbpjq4Bo165pqYdhPZdZR58gWiSuY5k5s6B5gMa9D10Xjfynj9LGEik-W98DwEfgm4wXFu78jQJxAv50-XPkoizqK4lbk1wnLh7bItGww4tYgqKKEkO7K5O3rDRvFYOOf2xEYLB3APzCMnKyk0DGyXBYNmhtHajbi3NmP2Qa4wxTHPJpU3LfUuQieDVElhkWThcJRmHKYW0rw63bX9WmJJObX5cFUgKc84g6UBi6duzxAaz6X7E6BvUx9oIXP0_HLcJ9_1rjHbrcy6RUSgXExEtmdQNnKJJri2TccAeaY1Bw303JflacltM28kCAwEAAaOCA-0wggPpMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBQERNOvwwG8gNC_q_Svo16a4QGpPTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMBcGA1UdIAQQMA4wDAYKKwYBBAGCN3sBATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAIbmsySIop8ARfn3Uc4sq71s6OlH2KvNhPihjJeCSer2Z9iFHQtTPDG4uuJ6NWaFLOCZGGL_KENGz3J5wbD3b6QrzGDAMSYkyH_vDFv_av_MDo5FN5rlAL5O-ri2cFlO6_woZWUcpZt7fLs8YnJxk5kE8jmNbNapuomF9aKRFS-H2rHeDcsxyRpdmi-Q2OBhUjJ7Y9GDRKPgCNLqKg8Y7P-cE5DkkzRgmcJv1jx9CqIOPFWoHx0Uu7OCEOLyl5rkz-fGlMFCDbyLgSiy8qBFi_m5sg4FCDgMCrODS1dzOU1fuOmoGYbxLd-GoFFfCtcbfRJtQr8D2Bq306YSypf0nWY&s=kgysZoSVQkFO_fotIcYLv8a_jY_dl4_lstoPB3JcBNjxHVPUJB3XUzgTcVzLW9604q977glxbvWQYnmLmhaatdZrZFfZZtoN2etqs8Q9-VZLARk8jB_3nFXnYOjfXeA-ZuQDzzcTpz_pLqQ3s-S3t2KBEqeT7_cBghQiOXism6RBlF9zz4pqxEa0N39pY9GJZQwn-h49zBeJdBh_qWGymqddxWm67HDjYY2FbRXl2btB635FcuYxmKhF3mGt5L4FnJwhN0fvGENKmdgsaVUEcLjLvasEdwSDoZAMmWXLbPvH_LYN_zcGDF-oqpVwei04Fgjk5KSeWQoGnnthDAfKIw&h=jvm3c96lfvNqopZVSfrnTXwWH1NSHGiEeHIW8a26kcc response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", - "name": "aa5f046b-5414-4fb1-87b7-9a61d8367b10*343A3FB774DEFEE9E557D8E28F6823858A0701C2A49020FD89F7D10967A80675", + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", + "name": "47ad227d-0f7c-4f97-954d-24240d53d310*B080F8FD213B1E23F05685151FA4F70687E5B4B2173BB0D9A4A92D41CC4BD5A2", "resourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001", - "status": "Succeeded", "startTime": "2023-07-10T21:09:32.4659215Z", "properties": + "status": "Succeeded", "startTime": "2023-12-15T10:40:11.5043851Z", "properties": null}' headers: cache-control: @@ -1355,9 +1317,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:11:02 GMT + - Fri, 15 Dec 2023 10:41:43 GMT etag: - - '"b4007840-0000-0700-0000-64ac73cd0000"' + - '"f911e9cc-0000-0100-0000-657c2d4e0000"' 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 0163aa45fe0..2f69f56a3c5 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,41 +13,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:07:32 GMT + - Fri, 15 Dec 2023 10:40:10 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' 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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:07:31 GMT + - Fri, 15 Dec 2023 10:40:10 GMT ms-cv: - - h8TqYbVRyE+5nAAro30WFg.0 + - lZx2TiZSb0KpQqMEOGmu9w.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0E3OsZAAAAAC4zH3FIApWS7z1B4ze6Y2nWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ci18ZQAAAACprjGgrox1QrbCoWKxxVSNSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 103ms + - 21ms 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 30a9cad42a9..e8627bd2477 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,41 +13,40 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:08:05 GMT + - Fri, 15 Dec 2023 10:43:33 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' 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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:08:04 GMT + - Fri, 15 Dec 2023 10:43:33 GMT ms-cv: - - mrsS2CXHekqzludVp9Z66g.0 + - hhrW0dhidU+x80zcreG/mw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0NHOsZAAAAACtFH1fo7d/Ra+YTgUaHAbTWVZSMzExMDAwMTE1MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 01S18ZQAAAAAtk0W02rdoQ6V9jhAYNuQFRE9IMzBFREdFMDExMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 102ms + - 74ms status: code: 201 message: Created @@ -63,37 +62,36 @@ interactions: Content-Length: - '0' User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:08:05 GMT + - Fri, 15 Dec 2023 10:43:34 GMT x-ms-return-client-request-id: - 'true' method: DELETE - uri: https://sanitized.communication.azure.com/identities/sanitized?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities/sanitized?api-version=2023-10-01 response: body: string: '' 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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 date: - - Mon, 10 Jul 2023 21:08:04 GMT + - Fri, 15 Dec 2023 10:43:34 GMT ms-cv: - - 5aA5akS2LU2H9crjmaEyBw.0 + - OqplPIQVN06iys2QoGryUQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0NHOsZAAAAADQtkTPgsA1RKuPs/6OGG8DWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 01i18ZQAAAAC1/5rFJGhPR6J7yV5xXQbpSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 279ms + - 184ms 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 fd52c07029a..1e9f5fcb268 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 21:08:19 GMT + - Fri, 15 Dec 2023 10:40:40 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T21:08:18.4382228+00:00"}}' + "expiresOn": "2023-12-16T10:40:41.8245628+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:08:18 GMT + - Fri, 15 Dec 2023 10:40:41 GMT ms-cv: - - rVasE10w00Kyd/Wj+8S9LA.0 + - w7Xxy64SmUe/HjLPg22NqA.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0QnOsZAAAAAAhgqP1IHZlRapaPVxWr0BtWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0KC18ZQAAAADHNqNLleYIQKR2edcLzyZbRE9IMzBFREdFMDEyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 104ms + - 89ms 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 5150199734b..7f81ae55e50 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,45 +13,45 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.3.1 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:09:08 GMT + - Fri, 15 Dec 2023 10:40:38 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' 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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:07 GMT + - Fri, 15 Dec 2023 10:40:39 GMT ms-cv: - - PV+fKg57gU+5A/bZ9h1IMQ.0 + - 8vHot/8poUqJaqCJlX9W1g.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0c3OsZAAAAADVSirZXpFmTJQwonldnUY5WVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Jy18ZQAAAABTqv9pZ7zJRJU7+jcLFs1lRE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 101ms + - 16ms status: code: 201 message: Created - request: - body: '{"scopes": ["chat"], "expiresInMinutes": null}' + body: '{"scopes": ["chat"]}' headers: Accept: - application/json @@ -60,45 +60,44 @@ interactions: Connection: - keep-alive Content-Length: - - '46' + - '20' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - nhFAfqVNNvGtmqZXLZeMFVwYcIW0NuuEF0d+D1dlKIY= + - sZHRO4JkAmw3HcI1PyxrC5twHvkHIWjyMLVIkauXKRA= x-ms-date: - - Mon, 10 Jul 2023 21:09:08 GMT + - Fri, 15 Dec 2023 10:40:40 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2023-10-01 response: body: - string: '{"token": "sanitized", "expiresOn": "2023-07-11T21:09:08.3654345+00:00"}' + string: '{"token": "sanitized", "expiresOn": "2023-12-16T10:40:41.142006+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - - '72' + - '71' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:07 GMT + - Fri, 15 Dec 2023 10:40:40 GMT ms-cv: - - EEU/SsgaFUe8wISTANn/jg.0 + - a3bKd7iOG0GkyPOUJTUvsg.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0dHOsZAAAAACPEBTO/a8pTIJlCMynCafwWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0KC18ZQAAAABPBWz0L3f2Tb/vsPFeHj4RSFlEMzBFREdFMDQxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 171ms + - 25ms 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 94e20c3294d..af6b93ff634 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["voip", "chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["voip", "chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '69' + - '43' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - bGEykS6j4LLQpzjUOVC1uFnHwPRFp+8rGOt50FB/Z78= + - hlYiA5kT1yt3LwEdaupQDHzQEfodx+8svsStB5uolgw= x-ms-date: - - Mon, 10 Jul 2023 21:12:40 GMT + - Fri, 15 Dec 2023 10:41:26 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T21:12:39.8090105+00:00"}}' + "expiresOn": "2023-12-16T10:41:27.9397129+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:12:39 GMT + - Fri, 15 Dec 2023 10:41:28 GMT ms-cv: - - WfWnDzBN0EK1uq9y0hcLkQ.0 + - uL5TLA5GRkSRFAQ2XvfbPw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0R3SsZAAAAACLAd+aqWxOTYoc4EF7RUoWWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Vy18ZQAAAACp+lDCqYGmTLxcYkD8qP6hRE9IMzBFREdFMDEyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 114ms + - 82ms 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 fc566f95506..a0c35addba3 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,11 +14,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:05:47 GMT + - Fri, 15 Dec 2023 10:22:58 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -31,29 +31,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:05:49 GMT + - Fri, 15 Dec 2023 10:23:00 GMT location: - - /availablePhoneNumbers/searchResults/02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 ms-cv: - - A/2KkwMt8UeRsjO8iOwkDQ.0 + - 1SBwT6HY/USOwq3eeQCJjg.0 operation-id: - - search_02b237b9-548c-4c21-ba88-91bbb87b4447 + - search_f8389cfc-b062-4198-8504-aec12d2bb439 operation-location: - - /phoneNumbers/operations/search_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + - /phoneNumbers/operations/search_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 search-id: - - 02b237b9-548c-4c21-ba88-91bbb87b4447 + - f8389cfc-b062-4198-8504-aec12d2bb439 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0qnKsZAAAAABNtQT0R8d3RKsOuRG6CNEVWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ail8ZQAAAADLdoFocgWoSKZ1Xqs65JUrSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 2669ms + - 2398ms status: code: 202 message: Accepted @@ -67,45 +67,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:05:50 GMT + - Fri, 15 Dec 2023 10:23:01 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:05:49 GMT + - Fri, 15 Dec 2023 10:23:01 GMT location: - - /availablePhoneNumbers/searchResults/02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 ms-cv: - - QX01tYYVNU6d6auuUctxxA.0 + - zaO41BG72E6rKgFGpUxPyw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0rXKsZAAAAAAgR0d4HpJeRZhCPNrSwC9XWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0BSl8ZQAAAABaEYhhHMykT6RBdDaxryUzSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 196ms + - 254ms status: code: 200 message: OK @@ -120,45 +121,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:05:52 GMT + - Fri, 15 Dec 2023 10:23:04 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + "/availablePhoneNumbers/searchResults/f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:05:51 GMT + - Fri, 15 Dec 2023 10:23:03 GMT location: - - /availablePhoneNumbers/searchResults/02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 ms-cv: - - CinAK8Acn0qE/GY4X2Zk0g.0 + - GqYoBTMMf0W2oIGSn/io9g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0sHKsZAAAAAA/7bePslCyT4LRuG6Za79KWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0CCl8ZQAAAACTnCtw1GK6S5eFToDriLXtSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 187ms + - 246ms status: code: 200 message: OK @@ -173,48 +175,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:05:53 GMT + - Fri, 15 Dec 2023 10:23:04 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: - string: '{"searchId": "02b237b9-548c-4c21-ba88-91bbb87b4447", "phoneNumbers": + string: '{"searchId": "f8389cfc-b062-4198-8504-aec12d2bb439", "phoneNumbers": ["sanitized"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:21:51.2811199+00:00", "error": "NoError"}' + "2023-12-15T10:39:03.8380764+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '369' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:05:52 GMT + - Fri, 15 Dec 2023 10:23:04 GMT ms-cv: - - WQLMUmKLR0iytgTpypMJ4w.0 + - z8fTmY9ySkW0qtupwjcquQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0sHKsZAAAAADQ+gMI7JufSYHzOtN6kB/iWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0CCl8ZQAAAABE4CFd4vzjTrk9J0c1+2j2SFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 352ms + - 427ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "02b237b9-548c-4c21-ba88-91bbb87b4447"}' + body: '{"searchId": "f8389cfc-b062-4198-8504-aec12d2bb439"}' headers: Accept: - application/json @@ -227,11 +229,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - 2BczG0nWo2mTSzjnAxnrsJU+ODWNROT6vkg7QXkWaqw= + - JMAgvlt8JgiOEq3CIS9QBbUDJ8kthfDwwTsn1eYPVCg= x-ms-date: - - Mon, 10 Jul 2023 21:05:53 GMT + - Fri, 15 Dec 2023 10:23:05 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -244,27 +246,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:05:53 GMT + - Fri, 15 Dec 2023 10:23:05 GMT ms-cv: - - rqXwRYomdUC2SwDj21yLDQ.0 + - BZ9bIt6B9kOIUevVmWFUeg.0 operation-id: - - purchase_02b237b9-548c-4c21-ba88-91bbb87b4447 + - purchase_f8389cfc-b062-4198-8504-aec12d2bb439 operation-location: - - /phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 purchase-id: - - 02b237b9-548c-4c21-ba88-91bbb87b4447 + - f8389cfc-b062-4198-8504-aec12d2bb439 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0sHKsZAAAAABQ9fM4illeQqStBkS5bCcGWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0CSl8ZQAAAACvIj5J0YdoQKHyADoMdSTjSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 962ms + - 868ms status: code: 202 message: Accepted @@ -278,40 +280,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:05:54 GMT + - Fri, 15 Dec 2023 10:23:06 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:05:53 GMT + - Fri, 15 Dec 2023 10:23:05 GMT ms-cv: - - q+CEyZKtnkOSqCPoYNYc4g.0 + - cut6OoD9gk2ELMErQmSsTg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0sXKsZAAAAAC3sP6wYoKgRZ1+LWHJqfpyWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Cil8ZQAAAAAVR57Qh9OiRYcuAQ5HBccMSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 188ms + - 283ms status: code: 200 message: OK @@ -326,136 +329,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:05:56 GMT + - Fri, 15 Dec 2023 10:23:09 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 21:05:56 GMT - ms-cv: - - uBw2VaCoPEC29P701CKqHA.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 0tHKsZAAAAADG7L3YtlP6Qq6cofDki6/PWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 189ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 21:05:59 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 21:05:58 GMT - ms-cv: - - 9SIWSGsFf0qm/Uhn9Fl5zg.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 0tnKsZAAAAAB43hynl1wpRYSnG+DTMdgqWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 199ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 21:06:01 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + string: '{"operationType": "purchase", "status": "running", "resourceLocation": + null, "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:00 GMT + - Fri, 15 Dec 2023 10:23:08 GMT ms-cv: - - GrDKQdVzUkyWRmRmLeqvbg.0 + - BsfpRiN5z0i9L5oOKfxcOQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0uHKsZAAAAACHYW3AQPS+SI3iwfqkhUvWWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DCl8ZQAAAAAOs08PKT0mRKounl/1zhUeSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 181ms + - 260ms status: code: 200 message: OK @@ -470,40 +378,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:06:03 GMT + - Fri, 15 Dec 2023 10:23:11 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:02 GMT + - Fri, 15 Dec 2023 10:23:10 GMT ms-cv: - - o2y1Va/7J0yldzBVoQTsvg.0 + - QXGxmVGMJ0a4Qs4TbtFIoA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0u3KsZAAAAAApwnb9NVVYSLPQe6wYovRNWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Dyl8ZQAAAADSudVD6zCZQ7X05Ve5y/mPSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 194ms + - 231ms status: code: 200 message: OK @@ -518,40 +427,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:06:06 GMT + - Fri, 15 Dec 2023 10:23:14 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:05 GMT + - Fri, 15 Dec 2023 10:23:13 GMT ms-cv: - - 2uGO7u+VVkyTUaQt0N4rAQ.0 + - qWIs2vCZsEO8GT1LJgujYw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0vXKsZAAAAACeUOpaAx7eQpR59Nq1RGm6WVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ESl8ZQAAAAA85w58k6/nRIvsJK5rw1qZSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 185ms + - 243ms status: code: 200 message: OK @@ -566,40 +476,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:06:08 GMT + - Fri, 15 Dec 2023 10:23:16 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:07 GMT + - Fri, 15 Dec 2023 10:23:16 GMT ms-cv: - - XYuojyr39kiU+LCDcHm6fA.0 + - 3LeOVoMj/UCjwKRlI6H//g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0v3KsZAAAAAAnmJgu5+E1QrhUBYjLXzNFWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0FCl8ZQAAAAA/fKrP7ok1RbGi3ytqSgRqSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 188ms + - 290ms status: code: 200 message: OK @@ -614,40 +525,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:06:10 GMT + - Fri, 15 Dec 2023 10:23:19 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:09 GMT + - Fri, 15 Dec 2023 10:23:19 GMT ms-cv: - - L4rSnVlpnkSlb5VfsD46hw.0 + - IU1ddHtPmUOoPlcLWQ+x6w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0wXKsZAAAAAAHUxgMuR4MSY/wn6jcPjhFWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Fil8ZQAAAADbxrOJCkn8QKvpSgnrxwbeSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 191ms + - 255ms status: code: 200 message: OK @@ -662,40 +574,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:06:12 GMT + - Fri, 15 Dec 2023 10:23:21 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:12 GMT + - Fri, 15 Dec 2023 10:23:21 GMT ms-cv: - - bR+Fux4xcUCMHZ0l4f4DbA.0 + - dg3Vok5Zn0m9VhucI8icdg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0xHKsZAAAAADd1p0WK8i9RLMyis/TkM+fWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0GSl8ZQAAAABHxjBuBc9OTIwT9yM+RS3ISFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 187ms + - 250ms status: code: 200 message: OK @@ -710,40 +623,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:06:15 GMT + - Fri, 15 Dec 2023 10:23:24 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:14 GMT + - Fri, 15 Dec 2023 10:23:24 GMT ms-cv: - - xFXUAHrcb02baHb7Jdj4XQ.0 + - ZRqR9TPoekOjHouoPZVTkg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0xnKsZAAAAABwHh8iPMzYTaB35igwA5fFWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0HCl8ZQAAAACs98LAcJLvT7vvfnPiTxVlSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 196ms + - 237ms status: code: 200 message: OK @@ -758,40 +672,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:06:17 GMT + - Fri, 15 Dec 2023 10:23:26 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_02b237b9-548c-4c21-ba88-91bbb87b4447?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_f8389cfc-b062-4198-8504-aec12d2bb439?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:05:49.2804031+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:23:00.8316391+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:16 GMT + - Fri, 15 Dec 2023 10:23:26 GMT ms-cv: - - /Zt6xODsSU+GQKJoBninRQ.0 + - kDMTyGoYckyMHxdiBFBNcA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0yHKsZAAAAABd+0Sm9rSoQIn4WI0N4UHEWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Hil8ZQAAAAB3rxZUYkJXTp4gnmKXHI0fSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 192ms + - 257ms status: code: 200 message: OK @@ -806,12 +721,12 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 + (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:06:18 GMT + - Fri, 15 Dec 2023 10:23:27 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -821,28 +736,28 @@ interactions: string: '{"phoneNumbers": [{"id": "sanitized", "phoneNumber": "sanitized", "countryCode": "US", "phoneNumberType": "tollFree", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "assignmentType": "application", "purchaseDate": - "2023-07-10T21:06:11.5919024+00:00", "cost": {"amount": 2.0, "currencyCode": + "2023-12-15T10:23:20.3408641+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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '351' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:06:18 GMT + - Fri, 15 Dec 2023 10:23:28 GMT ms-cv: - - o9et3t1IZEeB7h1RDdUCZQ.0 + - b0IJYevp10CqNjWtbLXglw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0yXKsZAAAAAClVt+GIaTUSJGC1NtjKp/3WVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Hyl8ZQAAAACLuB6jU5XlSIAJmGxI2ZCbSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1377ms + - 1437ms 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 52f7e942776..ac191830039 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,11 +14,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 20:59:21 GMT + - Fri, 15 Dec 2023 10:25:13 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -31,29 +31,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 20:59:21 GMT + - Fri, 15 Dec 2023 10:25:18 GMT location: - - /availablePhoneNumbers/searchResults/97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 ms-cv: - - Kih3k9AGG02q8lskCCjdGg.0 + - ZjuQwmRD+UuE9gn9OkeMzQ.0 operation-id: - - search_97abbb77-a4b0-4061-ab59-f21fe05933d1 + - search_8414f375-f1ee-4423-a399-c370ccfd78bc operation-location: - - /phoneNumbers/operations/search_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + - /phoneNumbers/operations/search_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 search-id: - - 97abbb77-a4b0-4061-ab59-f21fe05933d1 + - 8414f375-f1ee-4423-a399-c370ccfd78bc strict-transport-security: - max-age=2592000 x-azure-ref: - - 0KHGsZAAAAACyQ0c8TsasRI+ToBM08IxxWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0iSl8ZQAAAAAu3Ahpx16sQqFBJ/3/9DMaSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1708ms + - 3542ms status: code: 202 message: Accepted @@ -67,45 +67,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:23 GMT + - Fri, 15 Dec 2023 10:25:18 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01", - "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:22 GMT + - Fri, 15 Dec 2023 10:25:18 GMT location: - - /availablePhoneNumbers/searchResults/97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 ms-cv: - - Zm7cwZGAcka5PeYo1kLChA.0 + - HhIFQILnRU6APX3HJSi/Fg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0KnGsZAAAAAC7d/FNPk8LRZNHbe/G0RJEWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0jil8ZQAAAABRVKpglxRgSaUG/8PlwmwSSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 189ms + - 394ms status: code: 200 message: OK @@ -120,45 +121,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:25 GMT + - Fri, 15 Dec 2023 10:25:20 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01", - "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + "/availablePhoneNumbers/searchResults/8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:24 GMT + - Fri, 15 Dec 2023 10:25:21 GMT location: - - /availablePhoneNumbers/searchResults/97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 ms-cv: - - HMw2mJ2N/02cdupmyyI5CA.0 + - QhP5LZvXLUibLoL0WP/cqA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0LHGsZAAAAABC+vhDc1Q4Q7g729vOUbGvWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kCl8ZQAAAAB0zcWTxYvzT468sJr4sq80SFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 192ms + - 226ms status: code: 200 message: OK @@ -173,48 +175,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:25 GMT + - Fri, 15 Dec 2023 10:25:21 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: - string: '{"searchId": "97abbb77-a4b0-4061-ab59-f21fe05933d1", "phoneNumbers": + string: '{"searchId": "8414f375-f1ee-4423-a399-c370ccfd78bc", "phoneNumbers": ["sanitized"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:15:24.2168531+00:00", "error": "NoError"}' + "2023-12-15T10:41:19.4704755+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '369' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:24 GMT + - Fri, 15 Dec 2023 10:25:21 GMT ms-cv: - - pl1KaCBvTEu8MqVs7cg4cA.0 + - hhI+nKnJlUyBMP4C4jukAg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0LXGsZAAAAABNuFI4r1HyR6Lm5OXQiabJWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kSl8ZQAAAAC2PDg3s3NkQ5AM7yEENJZCSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 336ms + - 391ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "97abbb77-a4b0-4061-ab59-f21fe05933d1"}' + body: '{"searchId": "8414f375-f1ee-4423-a399-c370ccfd78bc"}' headers: Accept: - application/json @@ -227,11 +229,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - wlb+dSQYE9LSMmFukClLmjMrAq/DvIyAad8Fq+JyON8= + - ILBb8nRRHyAMJrJUvyStDnykzNYEQ9g7J7mqoytI/SI= x-ms-date: - - Mon, 10 Jul 2023 20:59:26 GMT + - Fri, 15 Dec 2023 10:25:22 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -244,27 +246,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 20:59:25 GMT + - Fri, 15 Dec 2023 10:25:22 GMT ms-cv: - - wlftAzucvkq87xDCdoND3g.0 + - wCKzWmNA5Uixolyykj5jsg.0 operation-id: - - purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1 + - purchase_8414f375-f1ee-4423-a399-c370ccfd78bc operation-location: - - /phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 purchase-id: - - 97abbb77-a4b0-4061-ab59-f21fe05933d1 + - 8414f375-f1ee-4423-a399-c370ccfd78bc strict-transport-security: - max-age=2592000 x-azure-ref: - - 0LXGsZAAAAAB/FbHn/ySOQJJ95biBMe0yWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kil8ZQAAAAA3uIKwC6PqRo2mT9r+6LFISFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1021ms + - 824ms status: code: 202 message: Accepted @@ -278,40 +280,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:27 GMT + - Fri, 15 Dec 2023 10:25:23 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:26 GMT + - Fri, 15 Dec 2023 10:25:23 GMT ms-cv: - - 4E2g0pZEck+Qu164RFQsiw.0 + - oBI5GFBhzU2pQsUYOmdhlw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0LnGsZAAAAADrkeY0te2aRLMP0D3+MYOZWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kyl8ZQAAAABU4mEr6mxJRLhcb6YaXdtASFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 183ms + - 269ms status: code: 200 message: OK @@ -326,40 +329,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:29 GMT + - Fri, 15 Dec 2023 10:25:25 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:28 GMT + - Fri, 15 Dec 2023 10:25:25 GMT ms-cv: - - aKQz4w5/AEaq9iOXXepivg.0 + - KtGB/1iyZE+ldWXs99/Dsg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0MXGsZAAAAADijoCoIcoTQIx1sOQXMcRWWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lSl8ZQAAAABqwAQ2Zx6VR57sQujdoEWsSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 196ms + - 227ms status: code: 200 message: OK @@ -374,40 +378,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:32 GMT + - Fri, 15 Dec 2023 10:25:28 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:30 GMT + - Fri, 15 Dec 2023 10:25:28 GMT ms-cv: - - 1+Tcdip0+ky00fGvaiEb5Q.0 + - mazFoK4VSU6ua7jJNmFhDw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0M3GsZAAAAAAVPjbqGs4QQamzOFHrK06hWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mCl8ZQAAAACbPCvgMs6HSboNiyGpGK1ySFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 210ms + - 231ms status: code: 200 message: OK @@ -422,40 +427,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:34 GMT + - Fri, 15 Dec 2023 10:25:30 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:33 GMT + - Fri, 15 Dec 2023 10:25:31 GMT ms-cv: - - dTM8gerzXUCCeCBWVv78zg.0 + - umxcr5fgsE+KrOI7/qmg1Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0NXGsZAAAAABi06wlXG6xRat46F42gvqEWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mil8ZQAAAAB4FHIoE+QaSo0AH41qvfB5SFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 187ms + - 228ms status: code: 200 message: OK @@ -470,40 +476,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:36 GMT + - Fri, 15 Dec 2023 10:25:33 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:35 GMT + - Fri, 15 Dec 2023 10:25:33 GMT ms-cv: - - MEv7TJlm706YcAxxZZBvCw.0 + - 4JUKN5J/p02EV4lPKKT2iQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0N3GsZAAAAAAj/7fOzac/SayPKdO/FxnMWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0nSl8ZQAAAAD5wXVJcyOoR6D4emiQcy+iSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 192ms + - 215ms status: code: 200 message: OK @@ -518,40 +525,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:38 GMT + - Fri, 15 Dec 2023 10:25:35 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:37 GMT + - Fri, 15 Dec 2023 10:25:36 GMT ms-cv: - - yaH//txs2UOiCYmc5IC5Qw.0 + - lGFFY/eabk6SemjbO9CTCg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0OnGsZAAAAACUhP+k55o9T7dyM9sdeD8cWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0nyl8ZQAAAAA9nXYupQBdRrzvsXsja6oMSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 183ms + - 226ms status: code: 200 message: OK @@ -566,40 +574,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:41 GMT + - Fri, 15 Dec 2023 10:25:38 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:39 GMT + - Fri, 15 Dec 2023 10:25:38 GMT ms-cv: - - X2kQfZ4Yb0qLqJeUG6Xg+A.0 + - 8UxLQPyzH020mfJhkOpH4A.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0PHGsZAAAAADjuI2UdBgQQpynvOf8n3fBWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oil8ZQAAAAAuT2fzyzvnTLTMOfqvLGYbSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 196ms + - 211ms status: code: 200 message: OK @@ -614,88 +623,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:43 GMT + - Fri, 15 Dec 2023 10:25:40 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:22.3543309+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 20:59:42 GMT - ms-cv: - - RBudZDfiF02GiTRzLjpAXw.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 0PnGsZAAAAABn6exUq+wIRZ0RY6F06x9HWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 204ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 20:59:45 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_97abbb77-a4b0-4061-ab59-f21fe05933d1?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8414f375-f1ee-4423-a399-c370ccfd78bc?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:22.3543309+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:17.5771415+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:44 GMT + - Fri, 15 Dec 2023 10:25:41 GMT ms-cv: - - ppLZdVAOeEeKvDhq2ZYU0w.0 + - k33ojrwaI0iWBlfnnt+GMA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0QXGsZAAAAABya6Ji5jciSYVOu23MwdSWWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0pCl8ZQAAAABM7S3FPwGmT4k7ELz3Gg3mSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 189ms + - 222ms status: code: 200 message: OK @@ -710,12 +672,12 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 + (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:46 GMT + - Fri, 15 Dec 2023 10:25:41 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -725,28 +687,28 @@ interactions: string: '{"phoneNumbers": [{"id": "sanitized", "phoneNumber": "sanitized", "countryCode": "US", "phoneNumberType": "tollFree", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "assignmentType": "application", "purchaseDate": - "2023-07-10T20:59:40.2944186+00:00", "cost": {"amount": 2.0, "currencyCode": + "2023-12-15T10:25:36.3095546+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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '351' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:47 GMT + - Fri, 15 Dec 2023 10:25:42 GMT ms-cv: - - /LMpJ3o24UCkRlaVjzfakQ.0 + - xgqNTbTC50iUVp4z4b+Ntw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0QXGsZAAAAAATPhkgJngpT5jcrg6MCQ3tWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0pSl8ZQAAAABLh6VQTfprSLEiueSSlj3aSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 2787ms + - 1248ms 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 3822a89b155..d8e5ea32948 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,11 +14,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:01:24 GMT + - Fri, 15 Dec 2023 10:22:54 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -31,29 +31,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:01:25 GMT + - Fri, 15 Dec 2023 10:22:56 GMT location: - - /availablePhoneNumbers/searchResults/23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 ms-cv: - - eCS9sDwiAUeMR7chRjzCWg.0 + - 67MeaOVik0+LLxCJgTJQOQ.0 operation-id: - - search_23afbab8-d303-4d27-bdef-692e046f4234 + - search_dddf6235-a581-4700-b81b-2ceab69a66c6 operation-location: - - /phoneNumbers/operations/search_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + - /phoneNumbers/operations/search_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 search-id: - - 23afbab8-d303-4d27-bdef-692e046f4234 + - dddf6235-a581-4700-b81b-2ceab69a66c6 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0o3GsZAAAAADntcxiHSDJSoX/QScrqVW2WVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0/ih8ZQAAAADL97jcKhPxSILwhYjzCKI0SFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1442ms + - 2229ms status: code: 202 message: Accepted @@ -67,45 +67,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:26 GMT + - Fri, 15 Dec 2023 10:22:57 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:25 GMT + - Fri, 15 Dec 2023 10:22:57 GMT location: - - /availablePhoneNumbers/searchResults/23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 ms-cv: - - OtXApgCilkSRFjfOBSKpew.0 + - oXfTzTF20E6nGYA7knbj5A.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0pXGsZAAAAAD6aiy8E1sJSY7e7JUoRPrDWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ASl8ZQAAAAClQsqzCzSmTaL7oaOTsIFqSFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 215ms + - 244ms status: code: 200 message: OK @@ -120,45 +121,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:28 GMT + - Fri, 15 Dec 2023 10:22:59 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + "/availablePhoneNumbers/searchResults/dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:27 GMT + - Fri, 15 Dec 2023 10:22:59 GMT location: - - /availablePhoneNumbers/searchResults/23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 ms-cv: - - PKH0Wpe8EkG+I9BDc4a4Pg.0 + - IwtQ8aTmikimx7Wdyp2zJw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0qHGsZAAAAAD3Ep7Qj2LeSIf9GvrYR7qyWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ayl8ZQAAAABPtPN+sdsSSJbAecjRC2R7SFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 259ms + - 217ms status: code: 200 message: OK @@ -173,48 +175,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:29 GMT + - Fri, 15 Dec 2023 10:23:00 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: - string: '{"searchId": "23afbab8-d303-4d27-bdef-692e046f4234", "phoneNumbers": + string: '{"searchId": "dddf6235-a581-4700-b81b-2ceab69a66c6", "phoneNumbers": ["sanitized"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:17:26.9824261+00:00", "error": "NoError"}' + "2023-12-15T10:38:59.6508267+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '369' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:28 GMT + - Fri, 15 Dec 2023 10:23:00 GMT ms-cv: - - MCrlDYR0CUyXudy1Umny8w.0 + - vxFhrPC3D0u+nnwHBLYZCQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0qHGsZAAAAACiVT1IPQ66S5pNSae9K7TgWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0BCl8ZQAAAAA9nMfxyQClQq93EszE0Qd3SFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 520ms + - 481ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "23afbab8-d303-4d27-bdef-692e046f4234"}' + body: '{"searchId": "dddf6235-a581-4700-b81b-2ceab69a66c6"}' headers: Accept: - application/json @@ -227,11 +229,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - K/jFWqmBKe8f9cuLn37SAlw7U6WtJRH4xeQUACYU4sY= + - HsAmmmqp8nv8hWSFtKxxCvygGoPghBsrcoNSIyeRMr4= x-ms-date: - - Mon, 10 Jul 2023 21:01:29 GMT + - Fri, 15 Dec 2023 10:23:01 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -244,27 +246,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:01:29 GMT + - Fri, 15 Dec 2023 10:23:01 GMT ms-cv: - - mnZ+yCyy1ES+zyNRAeNLag.0 + - Otz2K8AuNEOQiF+dbKNaow.0 operation-id: - - purchase_23afbab8-d303-4d27-bdef-692e046f4234 + - purchase_dddf6235-a581-4700-b81b-2ceab69a66c6 operation-location: - - /phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 purchase-id: - - 23afbab8-d303-4d27-bdef-692e046f4234 + - dddf6235-a581-4700-b81b-2ceab69a66c6 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0qXGsZAAAAABt7vXPHkzXSYd6FctGoY2lWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0BSl8ZQAAAACpO7vmLhviRJ9dgGq5qSq/SFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 779ms + - 834ms status: code: 202 message: Accepted @@ -278,40 +280,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:30 GMT + - Fri, 15 Dec 2023 10:23:02 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:29 GMT + - Fri, 15 Dec 2023 10:23:01 GMT ms-cv: - - Zl2w+oGkckOGywAj4Abz8A.0 + - rHsipLd8A0CAvBa9VKYRhg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0qXGsZAAAAADAjusZLMzoRa6WSmlnEr0dWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Bil8ZQAAAAA0raucAI/NTKla4nxK5DODSFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 263ms + - 220ms status: code: 200 message: OK @@ -326,40 +329,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:33 GMT + - Fri, 15 Dec 2023 10:23:04 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:31 GMT + - Fri, 15 Dec 2023 10:23:04 GMT ms-cv: - - ODi1T//x9EadF2anlx8rGg.0 + - XMQbqbF/NkenaDHoqX/Vsw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0rHGsZAAAAAC0zxf1OVRdQ7Cd/3jI4kOjWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0CCl8ZQAAAAAeZ7x4EOTcT676vBQwyuxcSFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 248ms + - 220ms status: code: 200 message: OK @@ -374,88 +378,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:35 GMT + - Fri, 15 Dec 2023 10:23:07 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:34 GMT + - Fri, 15 Dec 2023 10:23:06 GMT ms-cv: - - S1nLSB5x3ECij+V/TcPufA.0 + - jYbFd3VqdEyHCbkVejr44g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0rnGsZAAAAAD4TutlhgYXT5sra4e7E0DvWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Cyl8ZQAAAABQAldZxjxCQ7jhg1RLPw7SSFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 239ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 21:01:37 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:01:25.4982957+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 21:01:36 GMT - ms-cv: - - OlaEizVoNkC+UZTkVvDubw.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 0sHGsZAAAAACbAaTkJ34RQrjTDkVkB49sWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 244ms + - 218ms status: code: 200 message: OK @@ -470,40 +427,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:40 GMT + - Fri, 15 Dec 2023 10:23:09 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:38 GMT + - Fri, 15 Dec 2023 10:23:09 GMT ms-cv: - - 1iG4LafFuEKYg/Sbx/rReg.0 + - AfoScNyEck6kX/iAm2zV9w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0s3GsZAAAAABn8YD5HPgxSYo2Dt2OfXkUWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DSl8ZQAAAABKVmcAB4vwQYiz8Z6a5y36SFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 242ms + - 212ms status: code: 200 message: OK @@ -518,40 +476,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:42 GMT + - Fri, 15 Dec 2023 10:23:12 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:41 GMT + - Fri, 15 Dec 2023 10:23:11 GMT ms-cv: - - 1smSgOX//EWweVgvd9YqUA.0 + - p8CW2zJ8H0mviIpX8JN6vg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0tXGsZAAAAADYAJfmU3yBSbsQ2u4vUqkiWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ECl8ZQAAAAB6WAhkJzRHRJL1qFQBq4d7SFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 239ms + - 227ms status: code: 200 message: OK @@ -566,40 +525,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:44 GMT + - Fri, 15 Dec 2023 10:23:14 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:43 GMT + - Fri, 15 Dec 2023 10:23:14 GMT ms-cv: - - qlVsTq22BkakqwIw5UuE5A.0 + - /IdZir0Y4kCG3kAak67w8w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0uHGsZAAAAAAEmUAxbLDAR5L+WR8M0RAXWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Eil8ZQAAAADT47Z+ngwIT7ac7q3A9VqtSFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 253ms + - 204ms status: code: 200 message: OK @@ -614,40 +574,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:47 GMT + - Fri, 15 Dec 2023 10:23:17 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:45 GMT + - Fri, 15 Dec 2023 10:23:16 GMT ms-cv: - - GYCt0w/HhEGGId/T/NllPA.0 + - JOP0G6o6D0aUmElNEePnhQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0unGsZAAAAACVCq5LAcz3QpgqjpWOWskKWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0FSl8ZQAAAAAmiqUHbQ/oRKH9gYZyGHP/SFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 247ms + - 227ms status: code: 200 message: OK @@ -662,40 +623,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:49 GMT + - Fri, 15 Dec 2023 10:23:19 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_23afbab8-d303-4d27-bdef-692e046f4234?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_dddf6235-a581-4700-b81b-2ceab69a66c6?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:01:25.4982957+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:22:56.7043729+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:48 GMT + - Fri, 15 Dec 2023 10:23:19 GMT ms-cv: - - 92cvaWSyHUiNu2UzGxj1+g.0 + - XeAeq97+EUSaYuXrRKFV0g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0vHGsZAAAAACIou6MT1KdQ4FSPvWhwC0HWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Fyl8ZQAAAABU/rw6Vpc8RYtfMlZe4xP5SFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 248ms + - 350ms status: code: 200 message: OK @@ -710,12 +672,12 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 + (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:01:49 GMT + - Fri, 15 Dec 2023 10:23:20 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -724,28 +686,28 @@ interactions: body: string: '{"id": "sanitized", "phoneNumber": "sanitized", "countryCode": "US", "phoneNumberType": "tollFree", "capabilities": {"calling": "inbound", "sms": - "inbound+outbound"}, "assignmentType": "application", "purchaseDate": "2023-07-10T21:01:43.2980676+00:00", + "inbound+outbound"}, "assignmentType": "application", "purchaseDate": "2023-12-15T10:23:15.5759114+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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '331' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:01:50 GMT + - Fri, 15 Dec 2023 10:23:22 GMT ms-cv: - - rbrug4MPFECbe320FJq6RQ.0 + - oARUlzEnWEGXzAaD5Z4ssg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0vXGsZAAAAACsSAfqBD32S4hGKFu53iYxWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0GCl8ZQAAAADxodXJ3KnARoF4AL6BtTodSFlEMzBFREdFMDYxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 2215ms + - 1547ms 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 c4888bbdb9b..6d5eb6f2a63 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,40 +13,40 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.3.1 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:09:41 GMT + - Fri, 15 Dec 2023 10:41:52 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' 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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:40 GMT + - Fri, 15 Dec 2023 10:41:53 GMT ms-cv: - - iv85lCtxeUi7Dq8j5xDcDg.0 + - jq6uv6enx0OkQAh+zxh2qQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0lHOsZAAAAAAdl4QTMZgsS5oAF1lD36OjWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0cC18ZQAAAABlV1t+IgR0QoM8JnRCJOdLSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 105ms + - 136ms status: code: 201 message: Created @@ -62,37 +62,36 @@ interactions: Content-Length: - '0' User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:09:41 GMT + - Fri, 15 Dec 2023 10:41:54 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2023-10-01 response: body: string: '' 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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 date: - - Mon, 10 Jul 2023 21:09:40 GMT + - Fri, 15 Dec 2023 10:41:54 GMT ms-cv: - - zhdDcKucOUOT6nUkYAliVA.0 + - hXToCUKWxkKyZekPoZ9VdQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0lHOsZAAAAAACm2uglxPARqj4PlT1wVzNWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ci18ZQAAAACYhTlT3EmEToBWfaO0zqwBRE9IMzBFREdFMDExMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 94ms + - 89ms status: code: 204 message: No Content diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_add_invalid_consumer_participant.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_add_invalid_consumer_participant.yaml index ed4087e2e2a..6e362273acc 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_add_invalid_consumer_participant.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_add_invalid_consumer_participant.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:27:17 GMT Repeatability-Request-Id: - - f617c7f0-6c3e-11ee-8059-8cf8c5abc371 + - 854b8eb6-9b34-11ee-a012-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:27:17 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:13:39.5922465+00:00", - "validFrom": "2023-10-16T16:13:39.2550799+00:00", "validUntil": "2024-04-13T16:13:39.2550799+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:27:17.9359141+00:00", + "validFrom": "2023-12-15T10:27:17.7413529+00:00", "validUntil": "2024-06-12T10:27:17.7413529+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:39 GMT + - Fri, 15 Dec 2023 10:27:17 GMT location: - - '9946018372970179' + - '99491359081892924' ms-cv: - - 7n6m/xDiAUSvx9rSclWs4w.0 + - wPTzvogyIEaj3QSMpyLzZQ.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0MmEtZQAAAACFL4nXt0BNSoDK5AhRiKupWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0BSp8ZQAAAABgdPrFrsmXTISSCGqFbdflSFlEMzBFREdFMDYyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -71,11 +71,11 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - GGeywqkmwEbmvIr+M7fYvPtgLYHCAoJWqoApBN7ZlcA= x-ms-date: - - Mon, 16 Oct 2023 16:13:40 GMT + - Fri, 15 Dec 2023 10:27:18 GMT x-ms-return-client-request-id: - 'true' method: PATCH @@ -92,15 +92,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:41 GMT + - Fri, 15 Dec 2023 10:27:19 GMT ms-cv: - - qPBzbbrBbk+F5631gTZgzg.0 + - YHh2PBeu60eP6A/Nfa5oWA.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0NWEtZQAAAADLK5auIM7XT4Y3+82hBVlFWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Bip8ZQAAAACkQGl3vagxQpGeOxdcSpDTSFlEMzBFREdFMDQyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-ms-error-code: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_add_valid_presenter_participant.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_add_valid_presenter_participant.yaml index ece011d1583..284720f4f4f 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_add_valid_presenter_participant.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_add_valid_presenter_participant.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 19:22:19 GMT + - Fri, 15 Dec 2023 10:29:01 GMT Repeatability-Request-Id: - - 53393c50-6c59-11ee-9e02-8cf8c5abc371 + - c3688226-9b34-11ee-9f36-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 19:22:19 GMT + - Fri, 15 Dec 2023 10:29:01 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T19:22:21.1110984+00:00", - "validFrom": "2023-10-16T19:22:20.7404667+00:00", "validUntil": "2024-04-13T19:22:20.7404667+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:29:02.4785701+00:00", + "validFrom": "2023-12-15T10:29:02.0132321+00:00", "validUntil": "2024-06-12T10:29:02.0132321+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:22:20 GMT + - Fri, 15 Dec 2023 10:29:02 GMT location: - - '99469077492042008' + - '99410964320769040' ms-cv: - - ZNrY2ALZQUWf0dNJ3coLSw.0 + - ihy23Xh1LkuP7GE/jE1wGQ.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0bI0tZQAAAACgYDH3cBm+S4z6znEEpc1EWVZSMzExMDAwMTE1MDQ1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0bSp8ZQAAAABk/6dXAM8oQqHXxB8VxsoVSFlEMzBFREdFMDYxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -71,15 +71,15 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-identity/1.3.1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 19:22:21 GMT + - Fri, 15 Dec 2023 10:29:02 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' @@ -92,24 +92,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:22:21 GMT + - Fri, 15 Dec 2023 10:29:03 GMT ms-cv: - - HeOzJm0MyUyBNiR+l/POrg.0 + - DryRWMdVoEG1UWlE4aP1xA.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0bY0tZQAAAADxNYczFACyRJ04OBLuG8wzWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0byp8ZQAAAACUUtIK81rQT7ra5zK6bwUjRE9IMzBFREdFMDIxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 79ms + - 87ms status: code: 201 message: Created - request: - body: '{"participants": {"8:acs:xxxx": + body: '{"participants": {"8:acs:441c651c-e0dd-470c-a5d2-2cdd96b902d1_0000001d-0ce7-68a7-9f3b-8e3a0d008f99": {"role": "Presenter"}}}' headers: Accept: @@ -123,11 +123,11 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - UK/WvZXTujvmaDDabXaOHCMYvijedokZdvcgjQ2ain8= + - /Ts0CwlE9lqxIq0WxVhYk7PtG0pHH1gg00REpMyi624= x-ms-date: - - Mon, 16 Oct 2023 19:22:22 GMT + - Fri, 15 Dec 2023 10:29:04 GMT x-ms-return-client-request-id: - 'true' method: PATCH @@ -143,15 +143,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:22:22 GMT + - Fri, 15 Dec 2023 10:29:05 GMT ms-cv: - - mgsO93YUsE+8jGuJKssI4g.0 + - +2Y9rMWFNUaeDe9I3yKXtw.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0bo0tZQAAAABobvNo1G74SJsUdWOnUX+ZWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0cCp8ZQAAAACRQmI1vZ6LRrKDYI+vYQd1RE9IMzBFREdFMDEwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -167,11 +167,11 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 19:22:23 GMT + - Fri, 15 Dec 2023 10:29:05 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -187,15 +187,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:22:22 GMT + - Fri, 15 Dec 2023 10:29:06 GMT ms-cv: - - ZzpMmXRadkG6RzRk7azPGQ.0 + - TAbYnfCW7U6uVEEjB1NQbA.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0b40tZQAAAABP4uS6uYaXQI3KIqp7C62dWVZSMzExMDAwMTE1MDQ1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0cSp8ZQAAAABoHG2Uo2N8SqyvdKA1nvS9RE9IMzBFREdFMDIxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create.yaml index d0ccafbcc07..d2113668307 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:27:23 GMT Repeatability-Request-Id: - - f61e6332-6c3e-11ee-90a9-8cf8c5abc371 + - 88dac557-9b34-11ee-a519-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:27:23 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:13:39.3118049+00:00", - "validFrom": "2023-10-16T16:13:39.2324069+00:00", "validUntil": "2024-04-13T16:13:39.2324069+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:27:23.6559515+00:00", + "validFrom": "2023-12-15T10:27:23.5090466+00:00", "validUntil": "2024-06-12T10:27:23.5090466+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:38 GMT + - Fri, 15 Dec 2023 10:27:23 GMT location: - - '99415750115958845' + - '99428744598464443' ms-cv: - - U/0nF6S9PECfWD7kCJQ+8w.0 + - hCZnnlTeV0i3IJn7elHoew.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0MmEtZQAAAAD9r8qfXdr+R4LnU/oxkDOwWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Cyp8ZQAAAABvid/jWwWAQIwbKriH3+HxSFlEMzBFREdFMDQyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_all_optional_attributes.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_all_optional_attributes.yaml index 7e87b5a705b..1524314b023 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_all_optional_attributes.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_all_optional_attributes.yaml @@ -13,15 +13,15 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-identity/1.3.1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:29:04 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' @@ -34,26 +34,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:29:05 GMT ms-cv: - - ORT1XZ3SA0OR4orwmcFL0Q.0 + - stXmC073x0+5uOToeY9OIA.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 08cAtZQAAAACeWb4cG8LQR44OkyqetV4NWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0cSp8ZQAAAADU9R0axwZWRZBVcxBhBYh1SFlEMzBFREdFMDYxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 81ms + - 17ms status: code: 201 message: Created - request: - body: '{"validFrom": "2023-10-17T00:02:09.109998", "validUntil": "2023-10-17T01:02:09.109998", - "pstnDialOutEnabled": true, - "participants": {"8:acs:xxxx": + body: '{"validFrom": "2023-12-15T11:29:04.820270", "validUntil": "2023-12-15T12:29:04.820270", + "pstnDialOutEnabled": true, "participants": {"8:acs:006dd2c0-d2bc-41fd-90fe-e7a85d92d0c1_0000001d-0ce7-715f-1000-343a0d0004a5": {"role": "Presenter"}}}' headers: Accept: @@ -67,23 +66,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:29:06 GMT Repeatability-Request-Id: - - 09177066-6c78-11ee-bfe6-8cf8c5abc371 + - c6669cb8-9b34-11ee-b7f9-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - wEuhyYA8IxBJbZlT1Vle0NFtkr8oSQkPqzd3zWmIRKE= + - 6hKlhJ6cT5JNTDLYG0uv1O4rAQQ2S79KykqyNeIMccw= x-ms-date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:29:06 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:11.4910054+00:00", - "validFrom": "2023-10-17T00:02:09.109998+00:00", "validUntil": "2023-10-17T01:02:09.109998+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:29:07.3082387+00:00", + "validFrom": "2023-12-15T11:29:04.82027+00:00", "validUntil": "2023-12-15T12:29:04.82027+00:00", "pstnDialOutEnabled": true}' headers: api-deprecated-versions: @@ -93,11 +92,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:11 GMT + - Fri, 15 Dec 2023 10:29:06 GMT location: - - '99419929984491282' + - '99463836077726369' ms-cv: - - n36ljJCk4EeXeFYlyQyl0A.0 + - +xFVFf3qpkCDwTbP1MD6+A.0 repeatability-result: - accepted request-context: @@ -105,7 +104,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 08sAtZQAAAAB7r3h+4Uz+So6FLMidDthrWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0cip8ZQAAAAAw+EsfrrMwT4jtCBLZaWdBRE9IMzBFREdFMDEyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_expired_validUntil.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_expired_validUntil.yaml index a901e964ce7..cbfcdf905a5 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_expired_validUntil.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_expired_validUntil.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"validFrom": "2023-10-16T17:13:35.247740", "validUntil": "2023-10-16T14:13:35.247740", + body: '{"validFrom": "2023-12-15T11:28:04.288637", "validUntil": "2023-12-15T08:28:04.288637", "pstnDialOutEnabled": false}' headers: Accept: @@ -14,15 +14,15 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:13:35 GMT + - Fri, 15 Dec 2023 10:28:04 GMT Repeatability-Request-Id: - - f5526e79-6c3e-11ee-869d-8cf8c5abc371 + - a1752d40-9b34-11ee-b538-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - xkaveAEA67OWHZgK5DIQEPpMoSh9xDaa39IG4FAb7FA= + - 2d6/NkAdp8qG9a/JT+wVSL0ZDxYgsjK3QeYlbPal+N0= x-ms-date: - - Mon, 16 Oct 2023 16:13:35 GMT + - Fri, 15 Dec 2023 10:28:04 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -37,15 +37,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:37 GMT + - Fri, 15 Dec 2023 10:28:04 GMT ms-cv: - - a0IZyUu2mkyv1LZqYU0HfQ.0 + - Pimh1q0FokmdLlv5y7QdsQ.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0MGEtZQAAAABj+o8V55HbRpQX8k6S4+V6WVZSMzExMDAwMTE1MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0NCp8ZQAAAACxoYhZZQj8SYV1ZkETXZW+SFlEMzBFREdFMDYyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-ms-error-code: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_invalid_participants_MRI.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_invalid_participants_MRI.yaml index f49185c549b..dde721c8eb4 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_invalid_participants_MRI.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_invalid_participants_MRI.yaml @@ -14,15 +14,15 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:29:46 GMT Repeatability-Request-Id: - - f60b2688-6c3e-11ee-a48c-8cf8c5abc371 + - de37b462-9b34-11ee-a0d0-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - StjPbZ+anErZes8IJRa2STDgsBYIizhcGHmw6U39sio= x-ms-date: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:29:46 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -39,15 +39,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:38 GMT + - Fri, 15 Dec 2023 10:29:46 GMT ms-cv: - - nrCnkTxJakqeNIc/ejuDtQ.0 + - d7C3GLqc8kCPCiAs9dfsdw.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0MmEtZQAAAAAT5wbAanxtQqmg5expA2bEWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mip8ZQAAAAAuzPln9pxiSbf18nCc+ahRRE9IMzBFREdFMDIwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-ms-error-code: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_participants_attributes.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_participants_attributes.yaml index 599e2352984..7329306b3d5 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_participants_attributes.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_participants_attributes.yaml @@ -13,15 +13,15 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-identity/1.3.1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:20:45 GMT + - Fri, 15 Dec 2023 10:28:08 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' @@ -34,25 +34,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:20:46 GMT + - Fri, 15 Dec 2023 10:28:09 GMT ms-cv: - - RZ92Ph+Ftk26YUuYyPdm7g.0 + - MJU51965kkS/0z2RUoN5aQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 03mItZQAAAAAHdLHC1Fn/RY5aDk3/H+IQWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0OCp8ZQAAAADA0Wyvy1s2QZV+yhdRTy4eSFlEMzBFREdFMDYxOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 80ms + - 17ms status: code: 201 message: Created - request: body: '{"validFrom": null, "validUntil": null, "pstnDialOutEnabled": false, "participants": - {"8:acs:cba72366-3594-48c4-bf5c-7996036a1501_0000001b-d92b-d9f2-b967-563a0d0004c3": + {"8:acs:ef717c03-ae33-4aa6-a4a1-3dbca6a7a8fc_0000001d-0ce6-95cb-1000-343a0d00046f": {"role": "Presenter"}}}' headers: Accept: @@ -66,23 +66,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:20:47 GMT + - Fri, 15 Dec 2023 10:28:10 GMT Repeatability-Request-Id: - - f6923107-6c3f-11ee-8ea2-8cf8c5abc371 + - a4ed8c39-9b34-11ee-804d-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - xeaIMPiugeJPGaUFk0mJ7oo/DTQrDxBwQ28gIBAnGpg= + - Urx0F+IurMbjR9iStmfpYEDUNT3AK592uPOA/fua3ZM= x-ms-date: - - Mon, 16 Oct 2023 16:20:47 GMT + - Fri, 15 Dec 2023 10:28:10 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:20:49.6614458+00:00", - "validFrom": "2023-10-16T16:20:49.3259927+00:00", "validUntil": "2024-04-13T16:20:49.3259927+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:28:11.6721391+00:00", + "validFrom": "2023-12-15T10:28:10.95372+00:00", "validUntil": "2024-06-12T10:28:10.95372+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -92,11 +92,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:20:49 GMT + - Fri, 15 Dec 2023 10:28:11 GMT location: - - '99474336671679882' + - '99469354341576489' ms-cv: - - 9xPNYBa860C/iIj20fWUuA.0 + - n0X7t1fmVEuk98i3aJ584g.0 repeatability-result: - accepted request-context: @@ -104,7 +104,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 04GItZQAAAABQY/QLGpA8RKDc5J/ZQ1JQWVZSMzExMDAwMTE1MDQ1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Oip8ZQAAAAC4UCEmzV4BRJC3cJMDufYpSFlEMzBFREdFMDYxNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_pstn_dial_out_enabled.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_pstn_dial_out_enabled.yaml index fa4b9f93d37..f016c62aff6 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_pstn_dial_out_enabled.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_pstn_dial_out_enabled.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:29:53 GMT Repeatability-Request-Id: - - 08f3af77-6c78-11ee-830d-8cf8c5abc371 + - e29b314b-9b34-11ee-8a1c-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - QQKbDQ8A0x7b9852DAZ3wjSpELmfU1PGiuAyzF0GbQg= x-ms-date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:29:53 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:10.5417766+00:00", - "validFrom": "2023-10-16T23:02:10.5097313+00:00", "validUntil": "2024-04-13T23:02:10.5097313+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:29:54.7053407+00:00", + "validFrom": "2023-12-15T10:29:54.555015+00:00", "validUntil": "2024-06-12T10:29:54.555015+00:00", "pstnDialOutEnabled": true}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:29:54 GMT location: - - '99456291228429085' + - '99437239921060969' ms-cv: - - KfmtLNn1UkaDBffGZuaJiQ.0 + - +236gmCR5UySn5r0+OEhIw.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 08sAtZQAAAADAJmCz0hXiRoH838n3SS1LWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oSp8ZQAAAADN7BwrPUeQSL9K8rYKie2oRE9IMzBFREdFMDExMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -71,23 +71,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 23:02:10 GMT + - Fri, 15 Dec 2023 10:29:55 GMT Repeatability-Request-Id: - - 0977b43b-6c78-11ee-9ecd-8cf8c5abc371 + - e374df4a-9b34-11ee-ba09-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 23:02:10 GMT + - Fri, 15 Dec 2023 10:29:55 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:11.8020967+00:00", - "validFrom": "2023-10-16T23:02:11.4531578+00:00", "validUntil": "2024-04-13T23:02:11.4531578+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:29:56.3558294+00:00", + "validFrom": "2023-12-15T10:29:56.2043322+00:00", "validUntil": "2024-06-12T10:29:56.2043322+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -97,11 +97,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:11 GMT + - Fri, 15 Dec 2023 10:29:56 GMT location: - - '99457440333291163' + - '99445040290727762' ms-cv: - - 5W7cKTQ8VUSeP8RgZOYZsg.0 + - yneyQypPu0GL9bhUm6BREQ.0 repeatability-result: - accepted request-context: @@ -109,7 +109,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 088AtZQAAAADpLDn/DmHmQ6sYJJah70OaWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oyp8ZQAAAAAlkLEToBGCSp75dpJiCzwLRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_validUntil_Exceed_180days.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_validUntil_Exceed_180days.yaml index a6a3f76c51c..99d93e7d466 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_validUntil_Exceed_180days.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_validUntil_Exceed_180days.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"validFrom": "2023-10-16T17:13:36.379953", "validUntil": "2024-05-03T16:13:36.379953", + body: '{"validFrom": "2023-12-15T11:34:46.197113", "validUntil": "2024-07-02T10:34:46.197113", "pstnDialOutEnabled": false}' headers: Accept: @@ -14,15 +14,15 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:34:46 GMT Repeatability-Request-Id: - - f5fa0267-6c3e-11ee-a86d-8cf8c5abc371 + - 9104150d-9b35-11ee-935e-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - UjUF3RVFY92HljPSHH+J3lf672VDuHtcWi0j4M9fRSI= + - biSARVxfNV5cNlEeho3rE5TzFu47su5qxkErQ2444Xo= x-ms-date: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:34:46 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -37,15 +37,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:38 GMT + - Fri, 15 Dec 2023 10:34:46 GMT ms-cv: - - qih+7tXIBU+QFAmYR6xElg.0 + - VnyOwbhatkS2aXR+StakVA.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0MmEtZQAAAABmvwxOx/W1T7QYlXSoQmEMWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0xit8ZQAAAABB74C2mmIzTbrAQLm0MWMTSFlEMzBFREdFMDYwNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-ms-error-code: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_participants_pstn_dial_out_attributes.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_participants_pstn_dial_out_attributes.yaml index 8a3b7a6e737..b3b0c5c998c 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_participants_pstn_dial_out_attributes.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_participants_pstn_dial_out_attributes.yaml @@ -13,15 +13,15 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-identity/1.3.1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:28:15 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' @@ -34,25 +34,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:28:16 GMT ms-cv: - - RNfxAYHDD0+/FTKY1lIUeA.0 + - +ebUyj/6M0aD6jEHFU5Dwg.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 08cAtZQAAAABywgO2G4rrRaLn7mCAy1thWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Pyp8ZQAAAAAVadEMSgN6QZD6yfYUqG2nRE9IMzBFREdFMDExOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 80ms + - 81ms status: code: 201 message: Created - request: body: '{"validFrom": null, "validUntil": null, "pstnDialOutEnabled": true, "participants": - {"8:acs:c1749b6a-6223-4a0d-9037-363e4076d5d2_0000001b-da9b-55f1-9806-113a0d00240b": + {"8:acs:022b1cdc-9f13-4d09-aade-58549a930bf8_0000001d-0ce6-aee7-7bfa-553a0d0089df": {"role": "Presenter"}}}' headers: Accept: @@ -66,23 +66,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 23:02:10 GMT + - Fri, 15 Dec 2023 10:28:16 GMT Repeatability-Request-Id: - - 09414e88-6c78-11ee-98a9-8cf8c5abc371 + - a8c94988-9b34-11ee-91bc-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - e4yZElf4gZ67nhEoISk0bgnRyVzKaVIUPXc6eo+He6s= + - RVx0+o4Nz8TpnlTfE6iEDoJ14rW0uqnv+c78lbJ5Cn4= x-ms-date: - - Mon, 16 Oct 2023 23:02:10 GMT + - Fri, 15 Dec 2023 10:28:16 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:11.398774+00:00", - "validFrom": "2023-10-16T23:02:11.3637955+00:00", "validUntil": "2024-04-13T23:02:11.3637955+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:28:17.6202505+00:00", + "validFrom": "2023-12-15T10:28:17.2769341+00:00", "validUntil": "2024-06-12T10:28:17.2769341+00:00", "pstnDialOutEnabled": true}' headers: api-deprecated-versions: @@ -92,11 +92,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:11 GMT + - Fri, 15 Dec 2023 10:28:17 GMT location: - - '99445662401276942' + - '99498810410952089' ms-cv: - - BIf2Cee0QUipfFBVz5fy6A.0 + - TEgkO1UWE0Km8+lIUh1cEw.0 repeatability-result: - accepted request-context: @@ -104,7 +104,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 088AtZQAAAAAHx/vQ9N9lQrDcAs0n42wlWVZSMzExMDAwMTE1MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0QCp8ZQAAAADCqDWc0s53RJBksSOw4jsmSFlEMzBFREdFMDQyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_time_attributes.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_time_attributes.yaml index 695cfe64241..ccfc4a90af4 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_time_attributes.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_time_attributes.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"validFrom": "2023-10-16T17:13:36.518236", "validUntil": "2023-10-16T18:13:36.518236", + body: '{"validFrom": "2023-12-15T11:30:00.261475", "validUntil": "2023-12-15T12:30:00.261475", "pstnDialOutEnabled": false}' headers: Accept: @@ -14,23 +14,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:30:00 GMT Repeatability-Request-Id: - - f61c3afb-6c3e-11ee-b639-8cf8c5abc371 + - e6924b7a-9b34-11ee-9c02-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - 2pmy+k+qvpdfeqHQkDksXKvD4FtpbvoOY1S0pR7mb5I= + - o0UBIifcS1uE5JvWWaJ3W2SKyJ0clcTS2XtMmErWr/o= x-ms-date: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:30:00 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:13:39.5917499+00:00", - "validFrom": "2023-10-16T17:13:36.518236+00:00", "validUntil": "2023-10-16T18:13:36.518236+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:30:01.3670221+00:00", + "validFrom": "2023-12-15T11:30:00.261475+00:00", "validUntil": "2023-12-15T12:30:00.261475+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -40,11 +40,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:39 GMT + - Fri, 15 Dec 2023 10:30:00 GMT location: - - '99447798050795120' + - '99487409291573523' ms-cv: - - MxtZFYAUqUqIIg4VlB4nyg.0 + - I1CcAJiCq0+tT1MsTFxt1g.0 repeatability-result: - accepted request-context: @@ -52,7 +52,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0M2EtZQAAAAC2k3DX679FSJQkwUEwApIaWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qCp8ZQAAAAACA/K4YmHtS5ryTdR7oN2VRE9IMzBFREdFMDExOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_time_pstn_dial_out_attributes.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_time_pstn_dial_out_attributes.yaml index 0e2a47331f3..f993ef9aa69 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_time_pstn_dial_out_attributes.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_create_with_valid_time_pstn_dial_out_attributes.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"validFrom": "2023-10-17T00:02:09.693977", "validUntil": "2023-10-17T01:02:09.693977", + body: '{"validFrom": "2023-12-15T11:30:49.013603", "validUntil": "2023-12-15T12:30:49.013603", "pstnDialOutEnabled": true}' headers: Accept: @@ -14,23 +14,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:30:49 GMT Repeatability-Request-Id: - - 0902f3fc-6c78-11ee-9ddf-8cf8c5abc371 + - 03a0f4fb-9b35-11ee-a47b-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - zbu9ldONtM5YI6z2DTqxemxru31RM6mB4EMoJwMNqug= + - F7f41vH1dMx8izaX3StCkof7ZTuA6VwvtjiZNq5Fjk8= x-ms-date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:30:49 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:11.5003072+00:00", - "validFrom": "2023-10-17T00:02:09.693977+00:00", "validUntil": "2023-10-17T01:02:09.693977+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:30:50.3135556+00:00", + "validFrom": "2023-12-15T11:30:49.013603+00:00", "validUntil": "2023-12-15T12:30:49.013603+00:00", "pstnDialOutEnabled": true}' headers: api-deprecated-versions: @@ -40,11 +40,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:11 GMT + - Fri, 15 Dec 2023 10:30:50 GMT location: - - '99463881843320044' + - '99463786863172329' ms-cv: - - Ni0TExSb3U65tcJNjDTeLQ.0 + - hQAADna1f0SUdqSruCkz5Q.0 repeatability-result: - accepted request-context: @@ -52,7 +52,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 08sAtZQAAAAB/6t1iDN5YRI9DlV5f0NJBWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 02Sp8ZQAAAAD1kzS4fzbsTK+DOHIEAyX/SFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete.yaml index c505c090fcc..7e389b3e270 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:13:35 GMT + - Fri, 15 Dec 2023 10:30:50 GMT Repeatability-Request-Id: - - f55a9daa-6c3e-11ee-a417-8cf8c5abc371 + - 043f0199-9b35-11ee-82fc-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:13:35 GMT + - Fri, 15 Dec 2023 10:30:50 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:13:37.4627844+00:00", - "validFrom": "2023-10-16T16:13:37.2658638+00:00", "validUntil": "2024-04-13T16:13:37.2658638+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:30:51.3687106+00:00", + "validFrom": "2023-12-15T10:30:50.7170454+00:00", "validUntil": "2024-06-12T10:30:50.7170454+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:30:53 GMT location: - - '99434353617077843' + - '99499556443153667' ms-cv: - - vRXE75XHQEiVZ97vxjQR5A.0 + - FTBtmHRXh0+U5dZTD/yPFw.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0MGEtZQAAAADtht2x+hheSaI016Hz6CQeWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 02ip8ZQAAAAA0ziVSONwvQ7I9HaoRcL+nSFlEMzBFREdFMDQxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -69,11 +69,11 @@ interactions: Content-Length: - '0' User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:13:37 GMT + - Fri, 15 Dec 2023 10:30:54 GMT x-ms-return-client-request-id: - 'true' method: DELETE @@ -87,13 +87,13 @@ interactions: api-supported-versions: - 2023-03-31-preview, 2023-06-14, 2023-10-30-preview date: - - Mon, 16 Oct 2023 16:13:40 GMT + - Fri, 15 Dec 2023 10:30:55 GMT ms-cv: - - 4Opb7AhBcU+BaMvFVUyCZA.0 + - xxWN/zS4kk2bKt4pvhbMGQ.0 request-context: - appId= x-azure-ref: - - 0M2EtZQAAAAC7g6/zCRExSoy5AMlKtc03WVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 03ip8ZQAAAACgfunCRVWNRIdbUvKyfX/JSFlEMzBFREdFMDYwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants.yaml index e4b066fbd99..cc80a5a0cc4 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 19:29:21 GMT + - Fri, 15 Dec 2023 10:31:28 GMT Repeatability-Request-Id: - - 4e7f0d0c-6c5a-11ee-aeec-8cf8c5abc371 + - 1b1182be-9b35-11ee-8850-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 19:29:21 GMT + - Fri, 15 Dec 2023 10:31:28 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T19:29:22.5133516+00:00", - "validFrom": "2023-10-16T19:29:22.2611285+00:00", "validUntil": "2024-04-13T19:29:22.2611285+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:31:29.6801899+00:00", + "validFrom": "2023-12-15T10:31:29.549874+00:00", "validUntil": "2024-06-12T10:31:29.549874+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:29:22 GMT + - Fri, 15 Dec 2023 10:31:28 GMT location: - - '99475399851401985' + - '99443299992871603' ms-cv: - - 4zkHciA0s06HkV5mKeKywg.0 + - S9sysJI+NE6wWxeQ32pSZA.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0EY8tZQAAAAB80RBtmVc3R5cxXUCRil4nWVZSMzExMDAwMTE1MDQ1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ACt8ZQAAAAAG36g5lt9HRa2F3gs7szRSRE9IMzBFREdFMDEwNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -71,15 +71,15 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-identity/1.3.1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 19:29:22 GMT + - Fri, 15 Dec 2023 10:31:30 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' @@ -92,24 +92,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:29:22 GMT + - Fri, 15 Dec 2023 10:31:30 GMT ms-cv: - - oP3qFVXAeEmNwy3hJH4P6Q.0 + - DwTgIULlXE+AlSrL9wG/zw.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0Eo8tZQAAAADYwg0Yxt01QKde1q88VbOBWVZSMzExMDAwMTE1MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ait8ZQAAAAAOx+3n63RNSL3lkT5y6STOSFlEMzBFREdFMDYxMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 79ms + - 22ms status: code: 201 message: Created - request: - body: '{"participants": {"8:acs:xxxx": + body: '{"participants": {"8:acs:60e4e2fb-e8d6-4264-8e54-cad1ac3ef980_0000001d-0ce9-a832-28f4-343a0d00024c": {"role": "Consumer"}}}' headers: Accept: @@ -123,11 +123,11 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - BkxQCiSnT4bP3VXiJsRJPa4JcMhf5odFSJRlUjTYssE= + - 2f21wMk6lqJXiHR1xJYyqXTr2+ioyr8KJ3X8CuUbbRM= x-ms-date: - - Mon, 16 Oct 2023 19:29:23 GMT + - Fri, 15 Dec 2023 10:31:31 GMT x-ms-return-client-request-id: - 'true' method: PATCH @@ -143,22 +143,22 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:29:24 GMT + - Fri, 15 Dec 2023 10:31:32 GMT ms-cv: - - 5AZDHH+h1k2Xz6Ffv608TA.0 + - ZVtsWSbliUuede5fZ0/3CQ.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0E48tZQAAAACX1HT9U7iNQqiExKFukCMgWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ayt8ZQAAAADkmUKs8SlxQK/vGF9u6/wFSFlEMzBFREdFMDYyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: - body: '{"participants": {"8:acs:xxxx": + body: '{"participants": {"8:acs:60e4e2fb-e8d6-4264-8e54-cad1ac3ef980_0000001d-0ce9-a832-28f4-343a0d00024c": null}}' headers: Accept: @@ -172,11 +172,11 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - oFcKteDdGDnvzYK2OiOsTMA9pNeA2tEP6pWqOxK0w/c= + - +NRIaiKMq+6rQzxx9X6ej9gEajOxdO53tqtPMSXIkyA= x-ms-date: - - Mon, 16 Oct 2023 19:29:24 GMT + - Fri, 15 Dec 2023 10:31:33 GMT x-ms-return-client-request-id: - 'true' method: PATCH @@ -192,15 +192,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:29:24 GMT + - Fri, 15 Dec 2023 10:31:33 GMT ms-cv: - - keWb2zuzfkmHqggujF+lXg.0 + - FlOO12o98UKcDANcGt7BNg.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0FI8tZQAAAACVNeFqlFyyS43kT17knZjdWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0BSt8ZQAAAADkDzEXihYXQbSy+bMO+Zu9SFlEMzBFREdFMDQwNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -216,11 +216,11 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 19:29:25 GMT + - Fri, 15 Dec 2023 10:31:34 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -236,15 +236,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:29:25 GMT + - Fri, 15 Dec 2023 10:31:34 GMT ms-cv: - - S/R050tJ+0qvumcI5sOeqg.0 + - jz4WqgHTGEaqeqieTAQidQ.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0FY8tZQAAAAAJ7uqX+A9AQIU+bA9PPAsiWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Bit8ZQAAAAALOHkXLQjYTYFqC4cSL6mzSFlEMzBFREdFMDYyMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants_not_exist_in_room.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants_not_exist_in_room.yaml index d84e5c4cac6..a60cd9b9ce6 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants_not_exist_in_room.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants_not_exist_in_room.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 19:33:26 GMT + - Fri, 15 Dec 2023 10:31:37 GMT Repeatability-Request-Id: - - e0c9825c-6c5a-11ee-8b83-8cf8c5abc371 + - 20a0a261-9b35-11ee-ae32-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 19:33:26 GMT + - Fri, 15 Dec 2023 10:31:37 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T19:33:27.7729292+00:00", - "validFrom": "2023-10-16T19:33:27.7034513+00:00", "validUntil": "2024-04-13T19:33:27.7034513+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:31:39.3571507+00:00", + "validFrom": "2023-12-15T10:31:38.9853508+00:00", "validUntil": "2024-06-12T10:31:38.9853508+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:33:27 GMT + - Fri, 15 Dec 2023 10:31:39 GMT location: - - '99420517353174983' + - '99438265901486046' ms-cv: - - Zy6QbA8o0U2dVGoPCElQug.0 + - 7JfuFVCdpkeNnh1RYHfnjg.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0B5AtZQAAAABrzHwfDbh5S5OF3vlfEoKzWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0CSt8ZQAAAADH0MIBrgtOQ5gQEbgBef93SFlEMzBFREdFMDYxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -71,15 +71,15 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-identity/1.3.1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 19:33:27 GMT + - Fri, 15 Dec 2023 10:31:39 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' @@ -92,15 +92,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:33:28 GMT + - Fri, 15 Dec 2023 10:31:39 GMT ms-cv: - - dmhnvKSae0yqJSC0myOIRA.0 + - 8B85x0Nr80+CQ/8zwR4QYQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0CJAtZQAAAABCVTIFhyKRSZ4OlovsIr0QWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Cyt8ZQAAAABzOCto6tNAQL/x1ct4gANTRE9IMzBFREdFMDExMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: @@ -122,15 +122,15 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-identity/1.3.1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 19:33:28 GMT + - Fri, 15 Dec 2023 10:31:40 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' @@ -143,24 +143,24 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:33:28 GMT + - Fri, 15 Dec 2023 10:31:40 GMT ms-cv: - - AXjm93Up8kC0NrlKoSv5uA.0 + - IQlO0a4Bz0+g2ukwEHWPKQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0CJAtZQAAAADk8ITbJYrNR5JZeTELIffaWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DCt8ZQAAAAD1CAqZdadWQ7FsBXrZEyz9RE9IMzBFREdFMDExOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 77ms + - 84ms status: code: 201 message: Created - request: - body: '{"participants": {"8:acs:xxxx": + body: '{"participants": {"8:acs:91e32d02-e348-4a10-b947-ac78b82cc1d2_0000001d-0ce9-cb9f-eef0-8b3a0d008822": {"role": "Consumer"}}}' headers: Accept: @@ -174,11 +174,11 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - 931ChFzGYV8s5r4AG0LKRWZmEtXRIAzhtXvfUtWoa5w= + - Ct6PeP/FM1v0eCpaYtWQsyXrEK+3opBeQY35FxYhneg= x-ms-date: - - Mon, 16 Oct 2023 19:33:28 GMT + - Fri, 15 Dec 2023 10:31:41 GMT x-ms-return-client-request-id: - 'true' method: PATCH @@ -194,22 +194,22 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:33:29 GMT + - Fri, 15 Dec 2023 10:31:42 GMT ms-cv: - - k78ayf4u4k6Z2za8DlF/rA.0 + - hzXF1Ru710On4w9y3sperg.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0CZAtZQAAAADcELEjwiSCRY7ng8438oxIWVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DSt8ZQAAAACHzqBG8fvURL/weuF0AFRFSFlEMzBFREdFMDQxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: - body: '{"participants": {"8:acs:xxxx": + body: '{"participants": {"8:acs:91e32d02-e348-4a10-b947-ac78b82cc1d2_0000001d-0ce9-cf06-5b3d-8e3a0d008da6": null}}' headers: Accept: @@ -223,11 +223,11 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - nw6DOY6CmqQR5wIBxkp0CaJ9VF8XGHTots3eKCHL2JM= + - BKbBY+LtCV0gq4tQ/P4d7e88DtIeV8NDB5RO3qNj5lw= x-ms-date: - - Mon, 16 Oct 2023 19:33:29 GMT + - Fri, 15 Dec 2023 10:31:43 GMT x-ms-return-client-request-id: - 'true' method: PATCH @@ -243,15 +243,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:33:30 GMT + - Fri, 15 Dec 2023 10:31:44 GMT ms-cv: - - Sd8E2GtP4ES3n48TPHvbaQ.0 + - 5tc58p7EREys+fxxWurW/w.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0CpAtZQAAAACEBev4HgY+SIxbAd1rVziJWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Dyt8ZQAAAADqXO92csLWTrpIHf6jl6SSRE9IMzBFREdFMDExOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -267,11 +267,11 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 19:33:31 GMT + - Fri, 15 Dec 2023 10:31:45 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -287,15 +287,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 19:33:31 GMT + - Fri, 15 Dec 2023 10:31:46 GMT ms-cv: - - My72GAtVtkW7vO8lPvHxCw.0 + - 9d5lyeC20Eu2qI+RTQHudw.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0C5AtZQAAAABSDtn7U9MCTJzJt3e1a36WWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ESt8ZQAAAAAfEyzfRvPaRIKH9DF9cnFZSFlEMzBFREdFMDYxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants_with_invalid_MRI.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants_with_invalid_MRI.yaml index 865fdba3b79..6d566e1f4d7 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants_with_invalid_MRI.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_participants_with_invalid_MRI.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:13:34 GMT + - Fri, 15 Dec 2023 10:31:42 GMT Repeatability-Request-Id: - - f4aa7cff-6c3e-11ee-a11b-8cf8c5abc371 + - 238d5f13-9b35-11ee-82d5-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:13:34 GMT + - Fri, 15 Dec 2023 10:31:42 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:13:36.9459994+00:00", - "validFrom": "2023-10-16T16:13:36.7454196+00:00", "validUntil": "2024-04-13T16:13:36.7454196+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:31:43.7122407+00:00", + "validFrom": "2023-12-15T10:31:43.5339016+00:00", "validUntil": "2024-06-12T10:31:43.5339016+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:37 GMT + - Fri, 15 Dec 2023 10:31:44 GMT location: - - '99426039633343941' + - '99445972733166041' ms-cv: - - Dr2eIDTxI06zI8EYmDGhrA.0 + - /9y/7K90BUOzKordIC0LXQ.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0MGEtZQAAAAAETel46SlMRZbnVs5N5ePZWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Dit8ZQAAAAD3zrYgXfC0QJLXNxZ6I8NKRE9IMzBFREdFMDExMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_with_id_with_invalid_length.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_with_id_with_invalid_length.yaml index 5db1d059530..000a1386f81 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_with_id_with_invalid_length.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_delete_with_id_with_invalid_length.yaml @@ -11,11 +11,11 @@ interactions: Content-Length: - '0' User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:13:36 GMT + - Fri, 15 Dec 2023 10:34:12 GMT x-ms-return-client-request-id: - 'true' method: DELETE @@ -31,15 +31,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:13:38 GMT + - Fri, 15 Dec 2023 10:34:12 GMT ms-cv: - - 1C1xP25OvEqtEk3Za+nNQg.0 + - qVazoA+dl0uKsdUAlm6ZUw.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0MmEtZQAAAACxiYXARIvqRK0UbcVJ8jdMWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0pCt8ZQAAAAD0IVzly/rISY2nWWIIki17RE9IMzBFREdFMDIyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-ms-error-code: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_default_participants.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_default_participants.yaml index 935dbc19af4..54be9d6cb17 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_default_participants.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_default_participants.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:34:02 GMT Repeatability-Request-Id: - - 84132ea5-6c40-11ee-a957-8cf8c5abc371 + - 76ea6696-9b35-11ee-84ed-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:34:02 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:24:46.1567092+00:00", - "validFrom": "2023-10-16T16:24:45.9664666+00:00", "validUntil": "2024-04-13T16:24:45.9664666+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:34:03.2767829+00:00", + "validFrom": "2023-12-15T10:34:03.080028+00:00", "validUntil": "2024-06-12T10:34:03.080028+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:45 GMT + - Fri, 15 Dec 2023 10:34:03 GMT location: - - '99487692214429687' + - '99494614344467207' ms-cv: - - 0wC6ho+EyEWuughWAYYYaw.0 + - X5NA4+EyZUKqA7yoiDHMgQ.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0zWMtZQAAAAD/67ytpiuHRIhP6LBAjdn9WVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mit8ZQAAAAC0qYZHehf/SILfWu6Bl4hLRE9IMzBFREdFMDIxOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -67,11 +67,11 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:24:46 GMT + - Fri, 15 Dec 2023 10:34:04 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -87,15 +87,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:47 GMT + - Fri, 15 Dec 2023 10:34:05 GMT ms-cv: - - fhr5Xdyzx02N1GSB52Ox0A.0 + - L02XRvPYnUukpwnvYHFWpQ.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0z2MtZQAAAABhTVVgModSTLOXESGTiLUPWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0nCt8ZQAAAAALP1uyTMqUTpmU4fiSbohPRE9IMzBFREdFMDExOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_invalid_roomId.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_invalid_roomId.yaml index 40ec38060a7..0e0031f1528 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_invalid_roomId.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_invalid_roomId.yaml @@ -9,11 +9,11 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:34:11 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -29,15 +29,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:46 GMT + - Fri, 15 Dec 2023 10:34:12 GMT ms-cv: - - iMnOafto1UyMUXFcZllFZA.0 + - Nr5KREIe0EuqtzqJsfS7zw.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0zWMtZQAAAABmnNjKCYTfQoSi2A1rGQSNWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oyt8ZQAAAADvCd6csCvOTrJWNKNfl6U9SFlEMzBFREdFMDYxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-ms-error-code: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_nonexisting_roomId.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_nonexisting_roomId.yaml index 486faca652d..e1f7cc16bcd 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_nonexisting_roomId.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_nonexisting_roomId.yaml @@ -9,11 +9,11 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:34:10 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -30,15 +30,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:45 GMT + - Fri, 15 Dec 2023 10:34:11 GMT ms-cv: - - VmnTQ0hUNUaPyaKTldw8KQ.0 + - L2wFu9j+IkiIIiWZCcPEWw.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0zWMtZQAAAADXcgrtWkp6SJMFHWQGoxWpWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oit8ZQAAAAB6xE76r49QSZtcM9/Y+BTkSFlEMzBFREdFMDQwOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-ms-error-code: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_valid_roomId.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_valid_roomId.yaml index ee5054bc8e4..3fffa943ea8 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_valid_roomId.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_get_with_valid_roomId.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:34:11 GMT Repeatability-Request-Id: - - 8435aca9-6c40-11ee-b2a0-8cf8c5abc371 + - 7bfb6bb2-9b35-11ee-8741-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:34:11 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:24:46.4164373+00:00", - "validFrom": "2023-10-16T16:24:46.1483586+00:00", "validUntil": "2024-04-13T16:24:46.1483586+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:34:11.5436087+00:00", + "validFrom": "2023-12-15T10:34:11.4071531+00:00", "validUntil": "2024-06-12T10:34:11.4071531+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:45 GMT + - Fri, 15 Dec 2023 10:34:11 GMT location: - - '99495048148990165' + - '99459916413555349' ms-cv: - - oKjUrQ13hk6wF8+GTKkuHg.0 + - DuUxVkbsck2UqxwGwgVVzg.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0zWMtZQAAAABAc+BMLkTfTZIXQObMe8s+WVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oyt8ZQAAAADu2qQC+xB2QIDfRKXZbewCRE9IMzBFREdFMDIxOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -67,19 +67,19 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:24:46 GMT + - Fri, 15 Dec 2023 10:34:12 GMT x-ms-return-client-request-id: - 'true' method: GET uri: https://sanitized.communication.azure.com/rooms/sanitized?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:24:46.4164373+00:00", - "validFrom": "2023-10-16T16:24:46.1483586+00:00", "validUntil": "2024-04-13T16:24:46.1483586+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:34:11.5436087+00:00", + "validFrom": "2023-12-15T10:34:11.4071531+00:00", "validUntil": "2024-06-12T10:34:11.4071531+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -89,15 +89,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:47 GMT + - Fri, 15 Dec 2023 10:34:12 GMT ms-cv: - - 68D84B27cUCFH7Vpug870g.0 + - Q1ozWfeh/U6Dp0Ssb8tQ/w.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 00GMtZQAAAABKtScQAarQR4+D/yDFo2b0WVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0pCt8ZQAAAADNXfJHicGZRryw1HTAmkBxRE9IMzBFREdFMDExOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_list.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_list.yaml index 9af148bd7c5..e67ddead28e 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_list.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_list.yaml @@ -9,11 +9,11 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:35:54 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -29,15 +29,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:46 GMT + - Fri, 15 Dec 2023 10:35:55 GMT ms-cv: - - LKPSPc1Oc0u3qzJH5quCtA.0 + - tbbaGnTVRkaO7gase4tbJg.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 0zWMtZQAAAAANvGxxw0JUS5vBaCByPaqVWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Cix8ZQAAAACUTCHeBleuTpPt4dDIpLoSRE9IMzBFREdFMDExOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_expired_validUntil.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_expired_validUntil.yaml index ad4dec8ff47..a3b10725048 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_expired_validUntil.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_expired_validUntil.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:35:48 GMT Repeatability-Request-Id: - - 842abbd2-6c40-11ee-b2ec-8cf8c5abc371 + - b5ea81e6-9b35-11ee-b470-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:35:48 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:24:46.2988765+00:00", - "validFrom": "2023-10-16T16:24:46.0747179+00:00", "validUntil": "2024-04-13T16:24:46.0747179+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:35:49.5538186+00:00", + "validFrom": "2023-12-15T10:35:49.0510487+00:00", "validUntil": "2024-06-12T10:35:49.0510487+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:45 GMT + - Fri, 15 Dec 2023 10:35:49 GMT location: - - '99494278843105881' + - '99426346831415487' ms-cv: - - f8kZ6r/EK0mQfNjpf42vxg.0 + - O/26doJ/Zkmd/q+5Ka8F5g.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0zWMtZQAAAAC5liSEyECdRJci/YCFj6uTWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0BCx8ZQAAAAAuvRk9BEVdSY3jHBKwolniRE9IMzBFREdFMDIxMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -72,11 +72,11 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - VztSYEdQgt6r3uF5baFbPI5NYeeCpmEDvnwtcY9SMtw= x-ms-date: - - Mon, 16 Oct 2023 16:24:46 GMT + - Fri, 15 Dec 2023 10:35:50 GMT x-ms-return-client-request-id: - 'true' method: PATCH @@ -91,15 +91,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:47 GMT + - Fri, 15 Dec 2023 10:35:50 GMT ms-cv: - - OuexVT0p1UyeWsA/XKQ/Tg.0 + - E5bY+RZMS0Kame23vrtZKQ.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 00GMtZQAAAAAP4e5I1WjZR4loZ2QcdG+KWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Bix8ZQAAAAAJRx+TvwqOSKW6cxsl0sv9RE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-ms-error-code: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_multiple_participants.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_multiple_participants.yaml index 992b05114c5..744d99ad53a 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_multiple_participants.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_multiple_participants.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:46:17 GMT + - Fri, 15 Dec 2023 10:35:55 GMT Repeatability-Request-Id: - - 8709e2e4-6c43-11ee-a1db-8cf8c5abc371 + - ba6b73a8-9b35-11ee-ac59-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:46:17 GMT + - Fri, 15 Dec 2023 10:35:55 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:46:19.1080001+00:00", - "validFrom": "2023-10-16T16:46:18.9169442+00:00", "validUntil": "2024-04-13T16:46:18.9169442+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:35:56.9747455+00:00", + "validFrom": "2023-12-15T10:35:56.8718266+00:00", "validUntil": "2024-06-12T10:35:56.8718266+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:46:18 GMT + - Fri, 15 Dec 2023 10:35:56 GMT location: - - '99460606098630749' + - '99454422604574081' ms-cv: - - q8UGPgdtA0GqEg7pT8rs8g.0 + - 1Syh8GH22kyo6uzYEG9u1Q.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 02mgtZQAAAADze55A2iPsT5BhL/YlEh2VWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DCx8ZQAAAADMjBfloWztQ5KVx/9SwY1pRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -71,15 +71,15 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-identity/1.3.1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:46:19 GMT + - Fri, 15 Dec 2023 10:35:57 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' @@ -92,15 +92,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:46:20 GMT + - Fri, 15 Dec 2023 10:35:58 GMT ms-cv: - - R2cmXyTAi0Cp0vvlm5CfLg.0 + - umm9P7vOoUiyu9B1Ph6X4A.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 022gtZQAAAABX9ujAaxI3Qpw1IsJOSEleWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DSx8ZQAAAABqXCt4sXNeQpBRBSrrQMXvRE9IMzBFREdFMDIwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: @@ -122,15 +122,15 @@ interactions: Content-Type: - application/json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-identity/1.3.1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:46:20 GMT + - Fri, 15 Dec 2023 10:35:58 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' @@ -143,25 +143,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:46:20 GMT + - Fri, 15 Dec 2023 10:35:58 GMT ms-cv: - - HOfgp3N0NU2PmTAGdoFlLA.0 + - bA5XPPNF2EGw2AzTEHtoug.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 03WgtZQAAAADybAaykPxeSYXw3/sPO01+WVZSMzExMDAwMTE1MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Dix8ZQAAAACMji+W8+3jTLvFOntIe+7wRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 80ms + - 77ms status: code: 201 message: Created - request: - body: '{"participants": {"8:acs:xxxx": - {"role": "Presenter"}, "8:acs:xxxx": + body: '{"participants": {"8:acs:1a937433-096e-4975-af8e-8ce33bd59f3b_0000001d-0ced-bb8c-5b3d-8e3a0d008e8c": + {"role": "Presenter"}, "8:acs:1a937433-096e-4975-af8e-8ce33bd59f3b_0000001d-0ced-be8b-3d39-8e3a0d0095ca": {"role": "Consumer"}}}' headers: Accept: @@ -175,11 +175,11 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - JDUBca7SDR10TCHMdvb1AGT1V3RG3GWYFwjHEIPn11o= + - Mn3pDU2SvD4v38Mz/OiLYkqKXvxjTSXtB40DWTw+NVw= x-ms-date: - - Mon, 16 Oct 2023 16:46:21 GMT + - Fri, 15 Dec 2023 10:35:59 GMT x-ms-return-client-request-id: - 'true' method: PATCH @@ -195,15 +195,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:46:22 GMT + - Fri, 15 Dec 2023 10:36:00 GMT ms-cv: - - S/EZYin0UU+efGJEhJ8Ngw.0 + - vU2ymTupGESTJw1UL06sgw.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 03mgtZQAAAABbeGX6hZPvTb0QULPyZJeLWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Dyx8ZQAAAAB2/OU2saqqQrVj81PbVxnTSFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -219,11 +219,11 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 16 Oct 2023 16:46:22 GMT + - Fri, 15 Dec 2023 10:36:01 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -240,15 +240,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:46:23 GMT + - Fri, 15 Dec 2023 10:36:02 GMT ms-cv: - - 2ozYUFCsWUKqcTwDAZq46A.0 + - zD/Fc5XgFEa9aP2+fCTZkA.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 032gtZQAAAAD+zPWTUwKxS46LRyIPn8qKWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Eix8ZQAAAABKhtP3Fh/oTLiYnYDr2EFuRE9IMzBFREdFMDIxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_pstn_dial_out_enabled.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_pstn_dial_out_enabled.yaml index 089413e7425..32da79ff8a9 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_pstn_dial_out_enabled.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_pstn_dial_out_enabled.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:35:56 GMT Repeatability-Request-Id: - - 0912cf2a-6c78-11ee-b081-8cf8c5abc371 + - bb0950d0-9b35-11ee-be01-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:35:56 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:11.6378171+00:00", - "validFrom": "2023-10-16T23:02:11.1610902+00:00", "validUntil": "2024-04-13T23:02:11.1610902+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:35:57.7600955+00:00", + "validFrom": "2023-12-15T10:35:57.6779231+00:00", "validUntil": "2024-06-12T10:35:57.6779231+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:11 GMT + - Fri, 15 Dec 2023 10:35:56 GMT location: - - '99499678676145925' + - '99472740250708880' ms-cv: - - PLmHQhGCIUW/z2y2WBIKLQ.0 + - E+QhluFc+Um6BFuo6yO2PA.0 repeatability-result: - accepted request-context: @@ -51,7 +51,7 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 08sAtZQAAAAAsVUO9OE7vS6deWhmVT5ENWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DSx8ZQAAAABITe21BmgHR5CJJYvs6j8VRE9IMzBFREdFMDIxOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -71,19 +71,19 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - QQKbDQ8A0x7b9852DAZ3wjSpELmfU1PGiuAyzF0GbQg= x-ms-date: - - Mon, 16 Oct 2023 23:02:11 GMT + - Fri, 15 Dec 2023 10:35:58 GMT x-ms-return-client-request-id: - 'true' method: PATCH uri: https://sanitized.communication.azure.com/rooms/sanitized?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:11.6378171+00:00", - "validFrom": "2023-10-16T23:02:11.1610902+00:00", "validUntil": "2024-04-13T23:02:11.1610902+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:35:57.7600955+00:00", + "validFrom": "2023-12-15T10:35:57.6779231+00:00", "validUntil": "2024-06-12T10:35:57.6779231+00:00", "pstnDialOutEnabled": true}' headers: api-deprecated-versions: @@ -93,15 +93,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:12 GMT + - Fri, 15 Dec 2023 10:35:58 GMT ms-cv: - - DvgqJZmcKk61PHAOyhLGlg.0 + - wk/Iz3ZPXkidoO0vSStEpg.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 09MAtZQAAAAADvIx3sAyCR6mDKCXSprqvWVZSMzExMDAwMTE1MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Dix8ZQAAAACjaJMCCmgISKPBeYWeIh33RE9IMzBFREdFMDIwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: @@ -121,19 +121,19 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 23:02:12 GMT + - Fri, 15 Dec 2023 10:35:59 GMT x-ms-return-client-request-id: - 'true' method: PATCH uri: https://sanitized.communication.azure.com/rooms/sanitized?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:11.6378171+00:00", - "validFrom": "2023-10-16T23:02:11.1610902+00:00", "validUntil": "2024-04-13T23:02:11.1610902+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:35:57.7600955+00:00", + "validFrom": "2023-12-15T10:35:57.6779231+00:00", "validUntil": "2024-06-12T10:35:57.6779231+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -143,15 +143,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:12 GMT + - Fri, 15 Dec 2023 10:36:00 GMT ms-cv: - - ibjSGuAhM0uldf647FzZoQ.0 + - l0tCwMeGOUCLMEtMzBvlzg.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 09cAtZQAAAAC65/7TvAXLTbmrMSGEEddVWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Dyx8ZQAAAADSWxh11sF3R5ff/0ANa/KRRE9IMzBFREdFMDExMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_validUntil_Exceeds_180days.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_validUntil_Exceeds_180days.yaml index 83590b52914..fb728fc62c9 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_validUntil_Exceeds_180days.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_validUntil_Exceeds_180days.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:35:52 GMT Repeatability-Request-Id: - - 84587a6c-6c40-11ee-b0ee-8cf8c5abc371 + - b845d979-9b35-11ee-a224-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:24:44 GMT + - Fri, 15 Dec 2023 10:35:52 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:24:46.4020491+00:00", - "validFrom": "2023-10-16T16:24:46.1335492+00:00", "validUntil": "2024-04-13T16:24:46.1335492+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:35:53.2044726+00:00", + "validFrom": "2023-12-15T10:35:53.0069573+00:00", "validUntil": "2024-06-12T10:35:53.0069573+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:46 GMT + - Fri, 15 Dec 2023 10:35:53 GMT location: - - '99499938245196785' + - '99488076369717287' ms-cv: - - Lv+fymYBfUyCM3d7c2QP7w.0 + - XlOc/jH4fkGeq2uFzD2tPQ.0 repeatability-result: - accepted request-context: @@ -51,14 +51,14 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 0zWMtZQAAAABb8YnVe4EZQ6aN1NPNV101WVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0CCx8ZQAAAABpBLE3yirzTp9ggVUBCpN5RE9IMzBFREdFMDIxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: code: 201 message: Created - request: - body: '{"validFrom": "2023-10-16T17:24:46.512882", "validUntil": "2024-05-03T16:24:46.512882", + body: '{"validFrom": "2023-12-15T11:35:54.068813", "validUntil": "2024-07-02T10:35:54.068813", "pstnDialOutEnabled": null}' headers: Accept: @@ -72,11 +72,11 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - XBGXMQDs/9g+Q+s8Cu+IbUdcSGQ8a/axrpPeocg7lks= + - AswGxHGxaDsE0ZXTWQhlQJRkhE7/e0c2l0S2G6G3s9w= x-ms-date: - - Mon, 16 Oct 2023 16:24:46 GMT + - Fri, 15 Dec 2023 10:35:54 GMT x-ms-return-client-request-id: - 'true' method: PATCH @@ -91,15 +91,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:24:47 GMT + - Fri, 15 Dec 2023 10:35:53 GMT ms-cv: - - 6SmnGBmr4E6bJjSad/kWCA.0 + - DBG4jQ/GikWNw5KtHC7xOQ.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 00GMtZQAAAACNIk7aIiOPTrVhvgSLZREvWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Cix8ZQAAAAAZptg5pjyHQ5aw9gKj6G74SFlEMzBFREdFMDQxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-ms-error-code: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_valid_elapsed_time.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_valid_elapsed_time.yaml index 9d402b90785..4c4d70fbc65 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_valid_elapsed_time.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_valid_elapsed_time.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 16:46:17 GMT + - Fri, 15 Dec 2023 10:38:27 GMT Repeatability-Request-Id: - - 8709bbde-6c43-11ee-a57a-8cf8c5abc371 + - 14ded910-9b36-11ee-b872-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 16:46:17 GMT + - Fri, 15 Dec 2023 10:38:27 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:46:19.1932148+00:00", - "validFrom": "2023-10-16T16:46:18.9300652+00:00", "validUntil": "2024-04-13T16:46:18.9300652+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:38:28.7696837+00:00", + "validFrom": "2023-12-15T10:38:28.3330018+00:00", "validUntil": "2024-06-12T10:38:28.3330018+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:46:19 GMT + - Fri, 15 Dec 2023 10:38:28 GMT location: - - '99449228803743247' + - '99477100449610080' ms-cv: - - yEclhZy+zUCDfrbjTKctNQ.0 + - Qkt/tKJo40q6Dbr2B8GG6w.0 repeatability-result: - accepted request-context: @@ -51,14 +51,14 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 02mgtZQAAAAAA9vsCFmLKTLPnDlgjf/2BWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oyx8ZQAAAADWbUy3N2u0Q5vFKRjlXd30SFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: code: 201 message: Created - request: - body: '{"validFrom": "2023-10-16T17:46:19.246374", "validUntil": "2023-10-16T18:46:19.246374", + body: '{"validFrom": "2023-12-15T11:38:29.104229", "validUntil": "2023-12-15T12:38:29.104229", "pstnDialOutEnabled": null}' headers: Accept: @@ -72,19 +72,19 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - l/Bm7HbdggQd0FbfQx+hXQ3R6lETwRqZcTRZ5tZzyYk= + - hDR752aFUwY2ElQNtKGEFXLEXPLivgXuDDYnFf3T4Yg= x-ms-date: - - Mon, 16 Oct 2023 16:46:19 GMT + - Fri, 15 Dec 2023 10:38:29 GMT x-ms-return-client-request-id: - 'true' method: PATCH uri: https://sanitized.communication.azure.com/rooms/sanitized?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T16:46:19.1932148+00:00", - "validFrom": "2023-10-16T17:46:19.246374+00:00", "validUntil": "2023-10-16T18:46:19.246374+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:38:28.7696837+00:00", + "validFrom": "2023-12-15T11:38:29.104229+00:00", "validUntil": "2023-12-15T12:38:29.104229+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -94,15 +94,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 16:46:20 GMT + - Fri, 15 Dec 2023 10:38:30 GMT ms-cv: - - MDkTDI2irEe6t0lQYVJ6Cw.0 + - nJNWYRW070m0VSXbPRWV0g.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 03GgtZQAAAABhN06hCx0tR5yMsSAihbnGWVZSMzExMDAwMTE1MDQ1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0pSx8ZQAAAADo+VwhfGiQQZkkxTTX2n+xRE9IMzBFREdFMDIyMgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_valid_elapsed_time_pstn_dial_out_enabled.yaml b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_valid_elapsed_time_pstn_dial_out_enabled.yaml index 75ddf17120e..5f0a5b15651 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_valid_elapsed_time_pstn_dial_out_enabled.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_rooms_update_valid_elapsed_time_pstn_dial_out_enabled.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json Repeatability-First-Sent: - - Mon, 16 Oct 2023 23:02:08 GMT + - Fri, 15 Dec 2023 10:38:27 GMT Repeatability-Request-Id: - - 085247d9-6c78-11ee-bce1-8cf8c5abc371 + - 14f0884d-9b36-11ee-8c19-a497b10aa3d0 User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 2xVVJJKx5brgL5bSWgeu9hhccJP/PkHHEzXUfUClsMI= x-ms-date: - - Mon, 16 Oct 2023 23:02:08 GMT + - Fri, 15 Dec 2023 10:38:27 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/rooms?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:10.0348769+00:00", - "validFrom": "2023-10-16T23:02:09.8750996+00:00", "validUntil": "2024-04-13T23:02:09.8750996+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:38:28.6617167+00:00", + "validFrom": "2023-12-15T10:38:28.2081998+00:00", "validUntil": "2024-06-12T10:38:28.2081998+00:00", "pstnDialOutEnabled": false}' headers: api-deprecated-versions: @@ -39,11 +39,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:09 GMT + - Fri, 15 Dec 2023 10:38:28 GMT location: - - '99419603301089086' + - '99464104663198844' ms-cv: - - ihm+RkP0FUOQiVdBL2zjRA.0 + - lw6zbryqjk+8aUcglMoPDQ.0 repeatability-result: - accepted request-context: @@ -51,14 +51,14 @@ interactions: transfer-encoding: - chunked x-azure-ref: - - 08cAtZQAAAAAVIZMYMur5TL/ktYwZYK98WVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oyx8ZQAAAADZ/epbMQqNR60mTEZkWGtlSFlEMzBFREdFMDYxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: code: 201 message: Created - request: - body: '{"validFrom": "2023-10-17T00:02:09.964125", "validUntil": "2023-10-17T01:02:09.964125", + body: '{"validFrom": "2023-12-15T11:38:29.011221", "validUntil": "2023-12-15T12:38:29.011221", "pstnDialOutEnabled": true}' headers: Accept: @@ -72,19 +72,19 @@ interactions: Content-Type: - application/merge-patch+json User-Agent: - - AzureCli/1.7.2b1 azsdk-python-communication-rooms/1.1.0b1 Python/3.11.5 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-rooms/1.1.0b1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - SkiK8NbBsvEcCTZpKGJexOgPLvsFeOPW2leMqTgsg+U= + - PQfelHxfAgfVpzBiqwafNZIY29Rzc0tJ3SnQwenSIME= x-ms-date: - - Mon, 16 Oct 2023 23:02:10 GMT + - Fri, 15 Dec 2023 10:38:29 GMT x-ms-return-client-request-id: - 'true' method: PATCH uri: https://sanitized.communication.azure.com/rooms/sanitized?api-version=2023-10-30-preview response: body: - string: '{"id": "sanitized", "createdAt": "2023-10-16T23:02:10.0348769+00:00", - "validFrom": "2023-10-17T00:02:09.964125+00:00", "validUntil": "2023-10-17T01:02:09.964125+00:00", + string: '{"id": "sanitized", "createdAt": "2023-12-15T10:38:28.6617167+00:00", + "validFrom": "2023-12-15T11:38:29.011221+00:00", "validUntil": "2023-12-15T12:38:29.011221+00:00", "pstnDialOutEnabled": true}' headers: api-deprecated-versions: @@ -94,15 +94,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 16 Oct 2023 23:02:10 GMT + - Fri, 15 Dec 2023 10:38:29 GMT ms-cv: - - T70Clqm3+UCRw0ku11mXHg.0 + - keTna7y5e0itQEdD6/sbjg.0 request-context: - appId= transfer-encoding: - chunked x-azure-ref: - - 08sAtZQAAAAC0P2WUoKmrQ7LrDzm85iPgWVZSMzExMDAwMTE1MDQ1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0pSx8ZQAAAABmkuZYi/LATIimaJhiVchsRE9IMzBFREdFMDEyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE status: 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 20025f28752..06389469e7d 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,11 +14,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:14:57 GMT + - Fri, 15 Dec 2023 10:38:27 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -31,29 +31,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:14:59 GMT + - Fri, 15 Dec 2023 10:38:30 GMT location: - - /availablePhoneNumbers/searchResults/fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 ms-cv: - - Pae7WGMfKUu+q73HmPfnww.0 + - NPTX0gv2EkS2NclTh7S0jg.0 operation-id: - - search_fdb1bf99-fea2-4913-8496-d65d8c9cce67 + - search_1da29dfd-5654-4dd4-9821-1951ddfb1ef2 operation-location: - - /phoneNumbers/operations/search_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + - /phoneNumbers/operations/search_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 search-id: - - fdb1bf99-fea2-4913-8496-d65d8c9cce67 + - 1da29dfd-5654-4dd4-9821-1951ddfb1ef2 strict-transport-security: - max-age=2592000 x-azure-ref: - - 00HSsZAAAAAC7K1uHdzTaSYg5DuSyTa9XWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oyx8ZQAAAABp4Pi+46mkQqBedCYcGoc6RE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 2134ms + - 2656ms status: code: 202 message: Accepted @@ -67,45 +67,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:14:59 GMT + - Fri, 15 Dec 2023 10:38:31 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "search_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "search_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:14:59 GMT + - Fri, 15 Dec 2023 10:38:31 GMT location: - - /availablePhoneNumbers/searchResults/fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 ms-cv: - - a0LSdr9w+0O5AxZOCcxNMQ.0 + - kMQXEJVT6Uyg5RfkoS+mtQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 003SsZAAAAAB7omvtFSgaTKbshZKnrd+uWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0pyx8ZQAAAABZr8cLYze0RqPKxnO1XGSLRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 183ms + - 473ms status: code: 200 message: OK @@ -120,45 +121,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:34 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "search_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + "/availablePhoneNumbers/searchResults/1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "search_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:01 GMT + - Fri, 15 Dec 2023 10:38:33 GMT location: - - /availablePhoneNumbers/searchResults/fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 ms-cv: - - VRtsby49QEe72AkxJMJkCQ.0 + - ewY3AT6xp0iqY4IMHxuKjQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 01XSsZAAAAAAbqMwFP71+S72gQMU+iT/EWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qix8ZQAAAADJXkgGpwTBTIRLvT5qS9rLRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 185ms + - 265ms status: code: 200 message: OK @@ -173,48 +175,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:34 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: - string: '{"searchId": "fdb1bf99-fea2-4913-8496-d65d8c9cce67", "phoneNumbers": - ["+18332043152"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "phoneNumbers": + ["+18334231556"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:31:00.5420235+00:00", "error": "NoError"}' + "2023-12-15T10:54:33.1836416+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '372' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:34 GMT ms-cv: - - nHgkfjIuukagIvl5nbK2Iw.0 + - 4EZwy4y2C0SccEZqjTSZPw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 01XSsZAAAAADFkZanF0i7QZieRx0A0apwWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qix8ZQAAAABWfpmhrMCrT6R6pa2C+/GeRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 388ms + - 419ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "fdb1bf99-fea2-4913-8496-d65d8c9cce67"}' + body: '{"searchId": "1da29dfd-5654-4dd4-9821-1951ddfb1ef2"}' headers: Accept: - application/json @@ -227,11 +229,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - PI5qDunXAd6BWgnBpuqXJCmQSQ2a7NQ+qEaGR54PCLU= + - l9qbI6NOgIrNW26cH9vZZMDmd449VINfFa+ru4qDnAo= x-ms-date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:35 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -244,27 +246,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:35 GMT ms-cv: - - ujiHdExoZEWWInhB5k2Lcw.0 + - JjlJkAHlnkuyzS6oGNqGyg.0 operation-id: - - purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67 + - purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2 operation-location: - - /phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 purchase-id: - - fdb1bf99-fea2-4913-8496-d65d8c9cce67 + - 1da29dfd-5654-4dd4-9821-1951ddfb1ef2 strict-transport-security: - max-age=2592000 x-azure-ref: - - 01nSsZAAAAAAgqeqPl4DWTaVykaMdWfxrWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qyx8ZQAAAADBKgRbVzbJTrkN6r1r1k2pRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 698ms + - 920ms status: code: 202 message: Accepted @@ -278,40 +280,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:03 GMT + - Fri, 15 Dec 2023 10:38:36 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + null, "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:03 GMT + - Fri, 15 Dec 2023 10:38:36 GMT ms-cv: - - 1mGmDkBl3EWaIKbSgJS4GA.0 + - UJQ1OcTCU0e+tplgbAHRYg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 01nSsZAAAAAABRnDw96fwSLBV+RIe68zkWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0rCx8ZQAAAACeVQtNLw1GToW+uxqMb4qWRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 190ms + - 280ms status: code: 200 message: OK @@ -326,40 +329,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:05 GMT + - Fri, 15 Dec 2023 10:38:39 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + null, "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:05 GMT + - Fri, 15 Dec 2023 10:38:38 GMT ms-cv: - - EomMq39JIUeOUk4hHfCYZg.0 + - EycGbmVXgkqgedRDmfatyQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 02XSsZAAAAACMPrkmbx7RT4GgK9w5y7v1WVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ryx8ZQAAAAA9rxi4fdSZRp8hmWLt2d44RE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 194ms + - 307ms status: code: 200 message: OK @@ -374,40 +378,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:08 GMT + - Fri, 15 Dec 2023 10:38:41 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + null, "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:07 GMT + - Fri, 15 Dec 2023 10:38:41 GMT ms-cv: - - zxq8IZEXMEqOYA67U59YUQ.0 + - yPD2U001L0+ze0LjJGbJYQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 023SsZAAAAABnOuK65pj8T4kmdP4Tk2HEWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0sSx8ZQAAAABvGIMh5V99RoHmYZ/AHOY1RE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 179ms + - 329ms status: code: 200 message: OK @@ -422,40 +427,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:10 GMT + - Fri, 15 Dec 2023 10:38:44 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + null, "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:09 GMT + - Fri, 15 Dec 2023 10:38:43 GMT ms-cv: - - DHVLiTHsaE+cRwzkN0lTzQ.0 + - XVEtkI8LIk6uaN1Kz5Pufg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 03XSsZAAAAACB1I6BVOKOSJM69+m90GD8WVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0tCx8ZQAAAACPa76fwj6NRa+u2EQH/wODRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 179ms + - 311ms status: code: 200 message: OK @@ -470,40 +476,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:12 GMT + - Fri, 15 Dec 2023 10:38:47 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + null, "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:12 GMT + - Fri, 15 Dec 2023 10:38:46 GMT ms-cv: - - 4cWhVUW/9kmW2Ak6HNbIDQ.0 + - dLeEV+KKLUmLVT7bKhnfow.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 04HSsZAAAAAC5GCyXg+5nRraaqbv0xFPOWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0tix8ZQAAAAADFFaCdivaRKFNBHYg5QGDRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 192ms + - 275ms status: code: 200 message: OK @@ -518,40 +525,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:15 GMT + - Fri, 15 Dec 2023 10:38:49 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + null, "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:14 GMT + - Fri, 15 Dec 2023 10:38:49 GMT ms-cv: - - vlNwtW4XKUSYSDo8X59a3g.0 + - HS17li/33USJg7FFjKZ1ow.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 04nSsZAAAAABvProlBFcFRKEs3MaepeqSWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0uSx8ZQAAAAA+s38ps3gsQrHxNEIAeMpQRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 190ms + - 313ms status: code: 200 message: OK @@ -566,40 +574,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:17 GMT + - Fri, 15 Dec 2023 10:38:52 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + null, "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:16 GMT + - Fri, 15 Dec 2023 10:38:51 GMT ms-cv: - - bXpQAW0b3k+CUiLOA95SPw.0 + - y+cPBLwkNUaC27fJqdLsQw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 05HSsZAAAAAAViGKWgyj3TZeRiThAlQ23WVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0vCx8ZQAAAAA3FxVmpVtzQZh/4k3MdOzwRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 202ms + - 259ms status: code: 200 message: OK @@ -614,40 +623,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:19 GMT + - Fri, 15 Dec 2023 10:38:54 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + null, "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:19 GMT + - Fri, 15 Dec 2023 10:38:54 GMT ms-cv: - - bWLCY6UiMk+Vln9PWDw4+w.0 + - SpZO2vcSj0WHH98YKqg/Sg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 05nSsZAAAAAAtTXVCOc7wQa4RUt3vX8njWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0vix8ZQAAAADPfaxojCu5TpH7kDu8sQVJRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 196ms + - 306ms status: code: 200 message: OK @@ -662,40 +672,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:21 GMT + - Fri, 15 Dec 2023 10:38:57 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.7323589+00:00", "id": "purchase_fdb1bf99-fea2-4913-8496-d65d8c9cce67", + null, "createdDateTime": "2023-12-15T10:38:30.9678019+00:00", "id": "purchase_1da29dfd-5654-4dd4-9821-1951ddfb1ef2", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:21 GMT + - Fri, 15 Dec 2023 10:38:56 GMT ms-cv: - - Rwv4KcDmVUieYvRJ9hPtlQ.0 + - 1exK5sLNckW8Swg+u5ArWQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 06XSsZAAAAACDOfqIXXTqT6dB7CO0TlAEWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0wSx8ZQAAAABLVYaR3KrqRod7EdjqMOsiRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 206ms + - 394ms status: code: 200 message: OK @@ -716,11 +727,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 21:15:22 GMT + - Fri, 15 Dec 2023 10:38:58 GMT User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-sms/1.0.1 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-sms/1.0.1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - rjN34P54fGVFx+KwVx7LoWe0Pbbp3i1hD5EDZxTpitI= + - NYYLrRvm7MHw8w2gSGWPer1yNvLk0oWx1Px4dEjoEz8= x-ms-return-client-request-id: - 'true' method: POST @@ -732,22 +743,22 @@ interactions: headers: api-supported-versions: - 2020-07-20-preview1, 2020-08-20-preview, 2021-03-07, 2023-06-30-privatepreview - content-length: - - '136' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:21 GMT + - Fri, 15 Dec 2023 10:38:59 GMT ms-cv: - - YE/HWsqJvk2JfWzZMm3kyg.0 + - a5GYX8hURUWvq8BHKZeCXg.0 strict-transport-security: - max-age=2592000 + transfer-encoding: + - chunked x-azure-ref: - - 06XSsZAAAAACBgYDbVctBSr0DBhFx7FB2WVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0wix8ZQAAAACujHBMaP+rTLFClc1X1PkHSFlEMzBFREdFMDYxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 289ms + - 1203ms 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 c0f6e435498..34247247a59 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,11 +14,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:14:57 GMT + - Fri, 15 Dec 2023 10:38:27 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -31,29 +31,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:14:59 GMT + - Fri, 15 Dec 2023 10:38:31 GMT location: - - /availablePhoneNumbers/searchResults/08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 ms-cv: - - F2MI9028V0CQi0D2ufKuZA.0 + - PmWaauYroUyidqVLjEqkrQ.0 operation-id: - - search_08cdbf4f-8b3d-42a8-9979-cbd98bd85764 + - search_9661b2a7-615e-4ee3-b581-02a25159b803 operation-location: - - /phoneNumbers/operations/search_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + - /phoneNumbers/operations/search_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 search-id: - - 08cdbf4f-8b3d-42a8-9979-cbd98bd85764 + - 9661b2a7-615e-4ee3-b581-02a25159b803 strict-transport-security: - max-age=2592000 x-azure-ref: - - 00XSsZAAAAACuYrWSYRDdR6msPSwLl8kEWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oyx8ZQAAAABJuht+hFaARrz/Ok/2lELcRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 2154ms + - 3697ms status: code: 202 message: Accepted @@ -67,45 +67,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:00 GMT + - Fri, 15 Dec 2023 10:38:32 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "search_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "search_9661b2a7-615e-4ee3-b581-02a25159b803", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:14:59 GMT + - Fri, 15 Dec 2023 10:38:31 GMT location: - - /availablePhoneNumbers/searchResults/08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 ms-cv: - - xpx58qMmL0iVnJ/jxShsNw.0 + - liy5BsETxki2xAr4Dp5m0Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 003SsZAAAAAAuikPkuPi6QIqYiwCPpdKIWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qCx8ZQAAAADhqy1wnHZsSIZW7s3iB5p9RE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 241ms + - 233ms status: code: 200 message: OK @@ -120,45 +121,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:34 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "search_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + "/availablePhoneNumbers/searchResults/9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "search_9661b2a7-615e-4ee3-b581-02a25159b803", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:01 GMT + - Fri, 15 Dec 2023 10:38:34 GMT location: - - /availablePhoneNumbers/searchResults/08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 ms-cv: - - pVlTOzwv3U2guJ843k0lhw.0 + - alljMXB9UEe/1oXzKBD7tQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 01XSsZAAAAAD9KluX4dJxQYgCOJPYckHcWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qix8ZQAAAADfJ9QRNPRVT4rcYv7BjE6aRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 250ms + - 240ms status: code: 200 message: OK @@ -173,48 +175,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:03 GMT + - Fri, 15 Dec 2023 10:38:35 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: - string: '{"searchId": "08cdbf4f-8b3d-42a8-9979-cbd98bd85764", "phoneNumbers": - ["+18446225497"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "9661b2a7-615e-4ee3-b581-02a25159b803", "phoneNumbers": + ["+18552479538"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:31:01.0483778+00:00", "error": "NoError"}' + "2023-12-15T10:54:33.5349466+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '372' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:35 GMT ms-cv: - - Lu8T1rBMaECTIv3QeCPhYQ.0 + - y5JG+xE8HUqbjUW3ycjoQw.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 01nSsZAAAAABn2SQV6x37QLP/Vx6Y8ELVWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qyx8ZQAAAABEzi3gYcpJQ4icTkuCxxh4RE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 376ms + - 428ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "08cdbf4f-8b3d-42a8-9979-cbd98bd85764"}' + body: '{"searchId": "9661b2a7-615e-4ee3-b581-02a25159b803"}' headers: Accept: - application/json @@ -227,11 +229,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - SilC/aGrO1r5PpgpezkK0pI/+wmms1vTXnVOP3aaosU= + - TYKv7Zvb4STbnyBSvRsGmSKYmsYMHdbx+GjnqcwjiDo= x-ms-date: - - Mon, 10 Jul 2023 21:15:03 GMT + - Fri, 15 Dec 2023 10:38:36 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -244,27 +246,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:03 GMT + - Fri, 15 Dec 2023 10:38:36 GMT ms-cv: - - mrAd5sTsR0KUjpI6d6Aqog.0 + - VYOoF2NvkkiM31ItR7ifqA.0 operation-id: - - purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764 + - purchase_9661b2a7-615e-4ee3-b581-02a25159b803 operation-location: - - /phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 purchase-id: - - 08cdbf4f-8b3d-42a8-9979-cbd98bd85764 + - 9661b2a7-615e-4ee3-b581-02a25159b803 strict-transport-security: - max-age=2592000 x-azure-ref: - - 01nSsZAAAAACarNxUIf5UTr8lAUGlsFfOWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qyx8ZQAAAAC8ZLeyOHC4T6nZwjeR31YORE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 951ms + - 873ms status: code: 202 message: Accepted @@ -278,88 +280,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:04 GMT + - Fri, 15 Dec 2023 10:38:37 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", - "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' - headers: - api-supported-versions: - - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 21:15:03 GMT - ms-cv: - - 3tbRajXp80KbIEKwUE6fQA.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 013SsZAAAAAAvVffbBqVET6JeJBDu/8ZTWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 196ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 21:15:06 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + null, "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "purchase_9661b2a7-615e-4ee3-b581-02a25159b803", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:05 GMT + - Fri, 15 Dec 2023 10:38:36 GMT ms-cv: - - 3IpDOstIvUqOU6wWSMEg+A.0 + - 4DWgOzRCH0a39izbqlgmlg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 02nSsZAAAAABsoqpDgsHkS6zMDqCW5kMGWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0rSx8ZQAAAACXvtqQufKmT5JTqLosiCY/RE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 201ms + - 513ms status: code: 200 message: OK @@ -374,40 +329,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:09 GMT + - Fri, 15 Dec 2023 10:38:40 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + null, "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "purchase_9661b2a7-615e-4ee3-b581-02a25159b803", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:08 GMT + - Fri, 15 Dec 2023 10:38:39 GMT ms-cv: - - NNjZtJnha0adCls8XNwC/g.0 + - 4sDUV6PiUEyCSqQ6RL50SA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 03HSsZAAAAAA48MkvVqYdRqbV/9m3LqStWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ryx8ZQAAAABwy5Bp/KTSRpK/GoHb1dpIRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 242ms + - 286ms status: code: 200 message: OK @@ -422,40 +378,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:11 GMT + - Fri, 15 Dec 2023 10:38:42 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + null, "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "purchase_9661b2a7-615e-4ee3-b581-02a25159b803", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:10 GMT + - Fri, 15 Dec 2023 10:38:42 GMT ms-cv: - - YnRm5GuvxEKAMIc4kVtagw.0 + - b2kEffxhdUWCOguNLmpUIQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 03nSsZAAAAACe+kNuPPmvR5HrZRvph6gGWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0six8ZQAAAADqXVaPQLS+R58KSgMaJx3WRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 189ms + - 253ms status: code: 200 message: OK @@ -470,40 +427,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:13 GMT + - Fri, 15 Dec 2023 10:38:45 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + null, "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "purchase_9661b2a7-615e-4ee3-b581-02a25159b803", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:12 GMT + - Fri, 15 Dec 2023 10:38:44 GMT ms-cv: - - iMSQRPNAIUqyRJU7/tCBbg.0 + - N8Vntg2zJUCJ9XmEkQtYcQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 04HSsZAAAAAB4WXB6RQ8CS5Fjoq1VYX2eWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0tSx8ZQAAAABMIA9mKCQ+QJL3kdNAas1/RE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 202ms + - 265ms status: code: 200 message: OK @@ -518,40 +476,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:16 GMT + - Fri, 15 Dec 2023 10:38:47 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + null, "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "purchase_9661b2a7-615e-4ee3-b581-02a25159b803", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:14 GMT + - Fri, 15 Dec 2023 10:38:47 GMT ms-cv: - - fb4y4PEe8EWElTz8IrqVuA.0 + - Tl08syvIGEuJUPM57DEtAw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 043SsZAAAAAC7qoRBnzC5RJ7rcrCneuBMWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0tyx8ZQAAAAAsA5I9PWgZRKCrfCKKRxMJRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 184ms + - 271ms status: code: 200 message: OK @@ -566,40 +525,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:18 GMT + - Fri, 15 Dec 2023 10:38:50 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + null, "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "purchase_9661b2a7-615e-4ee3-b581-02a25159b803", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:17 GMT + - Fri, 15 Dec 2023 10:38:49 GMT ms-cv: - - x8m7DLC3DUCCBpxFHhZ9Sw.0 + - rDBEAFxWU0Cs8MP6/cZAfA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 05XSsZAAAAADYPkQZ3nl9R5Rc0mwlck0ZWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0uix8ZQAAAAAN0GA3DZ82RpNExUqNN9VaRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 200ms + - 242ms status: code: 200 message: OK @@ -614,40 +574,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:20 GMT + - Fri, 15 Dec 2023 10:38:52 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + null, "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "purchase_9661b2a7-615e-4ee3-b581-02a25159b803", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:19 GMT + - Fri, 15 Dec 2023 10:38:52 GMT ms-cv: - - OYVYQebpakmAabgsTaNA+Q.0 + - 4QNXZU+FLUehD/mOijVkoA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 053SsZAAAAAA8VxWS7q0EQof5j8UGztv4WVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0vCx8ZQAAAAAx3OUHZyLITbhXZrRf9AvlRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 187ms + - 243ms status: code: 200 message: OK @@ -662,40 +623,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:22 GMT + - Fri, 15 Dec 2023 10:38:55 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9661b2a7-615e-4ee3-b581-02a25159b803?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:59.0786737+00:00", "id": "purchase_08cdbf4f-8b3d-42a8-9979-cbd98bd85764", + null, "createdDateTime": "2023-12-15T10:38:31.7030304+00:00", "id": "purchase_9661b2a7-615e-4ee3-b581-02a25159b803", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:21 GMT + - Fri, 15 Dec 2023 10:38:54 GMT ms-cv: - - GCYYt9zAYEKdm7wG/FsULg.0 + - nFBgwERoPEGCXs2EL+Cj/g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 06nSsZAAAAAB0fHnvyyVeT6p+hefhkN1RWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0vyx8ZQAAAADNgdNZGeq8SJRXYCWte5NyRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 225ms + - 244ms status: code: 200 message: OK @@ -715,11 +677,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:15:23 GMT + - Fri, 15 Dec 2023 10:38:55 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -732,29 +694,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:23 GMT + - Fri, 15 Dec 2023 10:38:57 GMT location: - - /availablePhoneNumbers/searchResults/8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 ms-cv: - - Z9FySuI7kUSAqRgJVMBCxw.0 + - ZPtCa3Mft0+rORgdh2RaIw.0 operation-id: - - search_8dca2968-fe09-4d20-bc46-1f02ea844ac4 + - search_53a50672-fa58-4c64-92af-e4533ddbfa86 operation-location: - - /phoneNumbers/operations/search_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + - /phoneNumbers/operations/search_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 search-id: - - 8dca2968-fe09-4d20-bc46-1f02ea844ac4 + - 53a50672-fa58-4c64-92af-e4533ddbfa86 strict-transport-security: - max-age=2592000 x-azure-ref: - - 06nSsZAAAAADFVhDhTPP2R6wSv5rFfIDkWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0vyx8ZQAAAABaO5amiLVqQKEADLsU/Tq3RE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1114ms + - 997ms status: code: 202 message: Accepted @@ -768,45 +730,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:24 GMT + - Fri, 15 Dec 2023 10:38:57 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "search_8dca2968-fe09-4d20-bc46-1f02ea844ac4", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:38:57.4133178+00:00", "id": "search_53a50672-fa58-4c64-92af-e4533ddbfa86", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:24 GMT + - Fri, 15 Dec 2023 10:38:57 GMT location: - - /availablePhoneNumbers/searchResults/8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 ms-cv: - - cOuWD232vEK4EHDWiB9Ynw.0 + - ViEwfAtWEEKqusVjZJyH/w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 07HSsZAAAAAD+F0TT61JARbkmcRWNAwdSWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0wSx8ZQAAAADFDM6IjghMS7RrcJnTjT8bRE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 259ms + - 237ms status: code: 200 message: OK @@ -821,45 +784,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:27 GMT + - Fri, 15 Dec 2023 10:39:00 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "search_8dca2968-fe09-4d20-bc46-1f02ea844ac4", + "/availablePhoneNumbers/searchResults/53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:38:57.4133178+00:00", "id": "search_53a50672-fa58-4c64-92af-e4533ddbfa86", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:26 GMT + - Fri, 15 Dec 2023 10:39:00 GMT location: - - /availablePhoneNumbers/searchResults/8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 ms-cv: - - sFK4r+HtyU63P1i1DziSGg.0 + - FVXiotGKJkKgLt+rLc9hSg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 07nSsZAAAAAAhvK/21yYSRoWTav2X3hKEWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0xCx8ZQAAAACHNPxd/jqLTLWIkMSI8vB+RE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 242ms + - 241ms status: code: 200 message: OK @@ -874,48 +838,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:27 GMT + - Fri, 15 Dec 2023 10:39:01 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: - string: '{"searchId": "8dca2968-fe09-4d20-bc46-1f02ea844ac4", "phoneNumbers": - ["+18552466915"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "53a50672-fa58-4c64-92af-e4533ddbfa86", "phoneNumbers": + ["+18552479545"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:31:25.5029915+00:00", "error": "NoError"}' + "2023-12-15T10:54:59.4326536+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '372' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:26 GMT + - Fri, 15 Dec 2023 10:39:00 GMT ms-cv: - - KuvHfFe2iEmRdGPzQeSsmg.0 + - 1uMMPluGRkCrVqNNOTQ9Mg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 07nSsZAAAAABK+XQtZDpxT6crIwKHsoVOWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0xCx8ZQAAAADNYlKvFdK3Qa2aGcGeSrArRE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 485ms + - 416ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "8dca2968-fe09-4d20-bc46-1f02ea844ac4"}' + body: '{"searchId": "53a50672-fa58-4c64-92af-e4533ddbfa86"}' headers: Accept: - application/json @@ -928,11 +892,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - ggdBckhIxXexrGMq83RtOBXbsYZ0PO9nZCnFPBqt9+A= + - cyNyZMryzOyecT/w0Gk4YNl0YPIdyrBiKxBm4j9zlJw= x-ms-date: - - Mon, 10 Jul 2023 21:15:28 GMT + - Fri, 15 Dec 2023 10:39:01 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -945,27 +909,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:27 GMT + - Fri, 15 Dec 2023 10:39:02 GMT ms-cv: - - tmqFMOAjWEyv6OYm4zJpFg.0 + - K6M1HliQp0uOCDrqhgqhgg.0 operation-id: - - purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4 + - purchase_53a50672-fa58-4c64-92af-e4533ddbfa86 operation-location: - - /phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 purchase-id: - - 8dca2968-fe09-4d20-bc46-1f02ea844ac4 + - 53a50672-fa58-4c64-92af-e4533ddbfa86 strict-transport-security: - max-age=2592000 x-azure-ref: - - 073SsZAAAAACWLxgQ9voKTKspL0WuQcGCWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0xSx8ZQAAAABXLXp9QGRlSJj5t/POhGihRE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 736ms + - 944ms status: code: 202 message: Accepted @@ -979,40 +943,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:28 GMT + - Fri, 15 Dec 2023 10:39:02 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", + null, "createdDateTime": "2023-12-15T10:38:57.4133178+00:00", "id": "purchase_53a50672-fa58-4c64-92af-e4533ddbfa86", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:28 GMT + - Fri, 15 Dec 2023 10:39:03 GMT ms-cv: - - ttdWKfQrfUqmEGPnK9PVqg.0 + - gVTJXLmf3UqMJPQ2skpP4w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 08HSsZAAAAACZQdiSALCISIBHHuqd5ibRWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0xix8ZQAAAACzEUGopr9zQ4dEyKmzbUL5RE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 242ms + - 352ms status: code: 200 message: OK @@ -1027,184 +992,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:31 GMT + - Fri, 15 Dec 2023 10:39:05 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", - "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' - headers: - api-supported-versions: - - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 21:15:30 GMT - ms-cv: - - ZWsvYYosrUKM8zzA+dUS1Q.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 08nSsZAAAAAD1IgZRYI2PSrF4J9TRGcDlWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 297ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 21:15:33 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", + null, "createdDateTime": "2023-12-15T10:38:57.4133178+00:00", "id": "purchase_53a50672-fa58-4c64-92af-e4533ddbfa86", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:32 GMT + - Fri, 15 Dec 2023 10:39:05 GMT ms-cv: - - wItQNq92IU695cjpLtJd8w.0 + - YeF43lOtQE+Yov1ma8lQ5w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 09HSsZAAAAAAkOV/oH5svTJ4MC8FZy9raWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ySx8ZQAAAACAH6DmmhzdTp6sUZubY97eRE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 217ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 21:15:35 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", - "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' - headers: - api-supported-versions: - - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 21:15:35 GMT - ms-cv: - - W6c7RUgzLEaW3dgK9itrdQ.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 093SsZAAAAAADK7gua+cmR46UzCzqVrSiWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 224ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 21:15:38 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", - "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' - headers: - api-supported-versions: - - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 21:15:38 GMT - ms-cv: - - RiuVRqr/P0eul9jup7Ux8g.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 0+XSsZAAAAABz+sW96OMqR4ikjjgak8fNWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 1294ms + - 241ms status: code: 200 message: OK @@ -1219,40 +1041,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:41 GMT + - Fri, 15 Dec 2023 10:39:08 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", + null, "createdDateTime": "2023-12-15T10:38:57.4133178+00:00", "id": "purchase_53a50672-fa58-4c64-92af-e4533ddbfa86", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:40 GMT + - Fri, 15 Dec 2023 10:39:08 GMT ms-cv: - - fdTTWVPjm0KT9LqQc+QFpw.0 + - 5KXP0MZ34UurIZoZ+YuJIw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0/HSsZAAAAAB7Tfn5eSjLT5cKZk4DIgtCWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0zCx8ZQAAAAD3gG+pe+8NRp90wepVOJ6DRE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 234ms + - 223ms status: code: 200 message: OK @@ -1267,40 +1090,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:43 GMT + - Fri, 15 Dec 2023 10:39:10 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", + null, "createdDateTime": "2023-12-15T10:38:57.4133178+00:00", "id": "purchase_53a50672-fa58-4c64-92af-e4533ddbfa86", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:43 GMT + - Fri, 15 Dec 2023 10:39:10 GMT ms-cv: - - mY6OjSh7+Ui7O55/c0OpfQ.0 + - hdz9VMTlUkGzBYGYp4Cuag.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0/3SsZAAAAACxafdNwehIQqf5A3trFrMsWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0zix8ZQAAAADzfkKSj6YtSIcgwrqqs8maRE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 413ms + - 259ms status: code: 200 message: OK @@ -1315,40 +1139,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:46 GMT + - Fri, 15 Dec 2023 10:39:13 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", + null, "createdDateTime": "2023-12-15T10:38:57.4133178+00:00", "id": "purchase_53a50672-fa58-4c64-92af-e4533ddbfa86", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:45 GMT + - Fri, 15 Dec 2023 10:39:13 GMT ms-cv: - - rTfowPLcL0qmT4/MAmlzlQ.0 + - 2MsWn2/5fUOTnRzafU/MTA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0AXWsZAAAAACp4ekCebuyTp4X3i1A2SNAWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 00Sx8ZQAAAACCKJJYbWB8S6G92YzbHvubRE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 290ms + - 230ms status: code: 200 message: OK @@ -1363,40 +1188,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:48 GMT + - Fri, 15 Dec 2023 10:39:16 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", + null, "createdDateTime": "2023-12-15T10:38:57.4133178+00:00", "id": "purchase_53a50672-fa58-4c64-92af-e4533ddbfa86", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:47 GMT + - Fri, 15 Dec 2023 10:39:15 GMT ms-cv: - - STzhaLIyJkyqcMGD6UgTcA.0 + - LJpG2ZTh5kGg3vpUqrIS8Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0BHWsZAAAAADwHcKYTjsETJZ/jI8iYp4hWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 00yx8ZQAAAADsUQmdik5CRaj0DzDOZG7dRE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 224ms + - 227ms status: code: 200 message: OK @@ -1411,40 +1237,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:51 GMT + - Fri, 15 Dec 2023 10:39:18 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_53a50672-fa58-4c64-92af-e4533ddbfa86?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:23.785555+00:00", "id": "purchase_8dca2968-fe09-4d20-bc46-1f02ea844ac4", + null, "createdDateTime": "2023-12-15T10:38:57.4133178+00:00", "id": "purchase_53a50672-fa58-4c64-92af-e4533ddbfa86", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:50 GMT + - Fri, 15 Dec 2023 10:39:18 GMT ms-cv: - - ObH2IxjA0UOU1Lzcpf6WHw.0 + - 48Yl6oxrqkmAJOUyQR2ivQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0BnWsZAAAAADiatEROcNuRJgfsREQLaCGWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 01ix8ZQAAAABeuiTF0A0TToi1B3RcFR8ARE9IMzBFREdFMDIxNAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 376ms + - 291ms status: code: 200 message: OK @@ -1464,11 +1291,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:15:51 GMT + - Fri, 15 Dec 2023 10:39:19 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -1481,29 +1308,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:52 GMT + - Fri, 15 Dec 2023 10:39:21 GMT location: - - /availablePhoneNumbers/searchResults/9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 ms-cv: - - v+E+EEbGaUGg5jJEzP2e2g.0 + - c8/XRNFayEuDl65hIrzx2A.0 operation-id: - - search_9512bf7b-cb15-4962-b413-c3d37c0d5150 + - search_c267bbb9-d2b7-4a9e-ad38-1975754ae970 operation-location: - - /phoneNumbers/operations/search_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + - /phoneNumbers/operations/search_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 search-id: - - 9512bf7b-cb15-4962-b413-c3d37c0d5150 + - c267bbb9-d2b7-4a9e-ad38-1975754ae970 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0BnWsZAAAAACiSExdMTPsR6tRCqk0M22HWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 01yx8ZQAAAADwys1RHy3pRblOxWJqOIbRSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1077ms + - 1348ms status: code: 202 message: Accepted @@ -1517,45 +1344,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:53 GMT + - Fri, 15 Dec 2023 10:39:21 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "search_9512bf7b-cb15-4962-b413-c3d37c0d5150", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "search_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:52 GMT + - Fri, 15 Dec 2023 10:39:21 GMT location: - - /availablePhoneNumbers/searchResults/9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 ms-cv: - - 9qqC7seTrk+jHpG72BzFGQ.0 + - AVKfhfSOA0WwT+OKY440Aw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0CHWsZAAAAAB0cb7ksGvVQol7acpGtlE1WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 02Sx8ZQAAAABE4LICbgt2RpmgEQqUQrUuSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 252ms + - 230ms status: code: 200 message: OK @@ -1570,45 +1398,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:55 GMT + - Fri, 15 Dec 2023 10:39:24 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "search_9512bf7b-cb15-4962-b413-c3d37c0d5150", + "/availablePhoneNumbers/searchResults/c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "search_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:55 GMT + - Fri, 15 Dec 2023 10:39:24 GMT location: - - /availablePhoneNumbers/searchResults/9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 ms-cv: - - 7pGNx+ntx0SV5I42cCFpXQ.0 + - CioCc0Uxo0y+Sw7M+/pFCA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0CnWsZAAAAACoDlH4RDNwTbQPMqimDWRwWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 03Cx8ZQAAAABewvdk0k3ORasGknEbuAQrSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 228ms + - 257ms status: code: 200 message: OK @@ -1623,48 +1452,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:55 GMT + - Fri, 15 Dec 2023 10:39:24 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: - string: '{"searchId": "9512bf7b-cb15-4962-b413-c3d37c0d5150", "phoneNumbers": - ["+18552472163"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "c267bbb9-d2b7-4a9e-ad38-1975754ae970", "phoneNumbers": + ["+18552479569"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:31:53.9228973+00:00", "error": "NoError"}' + "2023-12-15T10:55:23.0411894+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '372' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:55 GMT + - Fri, 15 Dec 2023 10:39:25 GMT ms-cv: - - WT/o3cJKeEyVXD0KYRCzeQ.0 + - fwDRpZwx5katRo1ryP9aaQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0C3WsZAAAAADgdtLp/EmWQ7MIJqYQPCBRWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 03Cx8ZQAAAACzskVSPUZ3QbqfJRor/mXoSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 404ms + - 380ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "9512bf7b-cb15-4962-b413-c3d37c0d5150"}' + body: '{"searchId": "c267bbb9-d2b7-4a9e-ad38-1975754ae970"}' headers: Accept: - application/json @@ -1677,11 +1506,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - sDQeRMDbzBTV5IDRKE7QfjAxn+SpWyO9g9H/LToF248= + - K1E/fKBY6abJHRdZBIycDSbmCAdTwAYjS+qf0G2jsvI= x-ms-date: - - Mon, 10 Jul 2023 21:15:56 GMT + - Fri, 15 Dec 2023 10:39:25 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -1694,27 +1523,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:56 GMT + - Fri, 15 Dec 2023 10:39:26 GMT ms-cv: - - N2SxP8asakKloppoefEeAg.0 + - M/57R+ofT0yB9lmkZr8Y5Q.0 operation-id: - - purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150 + - purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970 operation-location: - - /phoneNumbers/operations/purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 purchase-id: - - 9512bf7b-cb15-4962-b413-c3d37c0d5150 + - c267bbb9-d2b7-4a9e-ad38-1975754ae970 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0C3WsZAAAAABI+tW3TespS5gbftprwxAcWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 03Sx8ZQAAAABogXSxNoHMQrv3BcHphFYQSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 726ms + - 823ms status: code: 202 message: Accepted @@ -1728,40 +1557,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:57 GMT + - Fri, 15 Dec 2023 10:39:26 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150", + null, "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:56 GMT + - Fri, 15 Dec 2023 10:39:26 GMT ms-cv: - - VLLDCFR2mk6ueoNglGpGjQ.0 + - idUwzrgEJkC+j18K+iTXoA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0DHWsZAAAAAC3sWRNFRKPSr1S01IV6oMBWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 03ix8ZQAAAAD46Eo5GdScTp9ECcF8+TM9SFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 196ms + - 277ms status: code: 200 message: OK @@ -1776,40 +1606,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:59 GMT + - Fri, 15 Dec 2023 10:39:28 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150", + null, "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:58 GMT + - Fri, 15 Dec 2023 10:39:29 GMT ms-cv: - - 4whbBuQIakSjEQxa3z26jw.0 + - 1N/ImbyEMkSQkM765fqI8Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0DnWsZAAAAAAMhzkK+kChQI2r0Ko5G6tsWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 04Cx8ZQAAAACn3tlBuOq1R6v9G6fjHIQRSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 189ms + - 249ms status: code: 200 message: OK @@ -1824,40 +1655,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:01 GMT + - Fri, 15 Dec 2023 10:39:31 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150", + null, "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:01 GMT + - Fri, 15 Dec 2023 10:39:31 GMT ms-cv: - - 7HER5v3j1U6YWfs2xF5+fg.0 + - vrxmB6DbZEChRi8hrgQleQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0EHWsZAAAAADMyU4YhCxxQaXveE4ztXUQWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 04yx8ZQAAAADYLXao4CFjRr2lkhw31yMQSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 188ms + - 259ms status: code: 200 message: OK @@ -1872,40 +1704,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:04 GMT + - Fri, 15 Dec 2023 10:39:34 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150", + null, "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:03 GMT + - Fri, 15 Dec 2023 10:39:34 GMT ms-cv: - - VOpGGvhdD02OkJP4JHsiAw.0 + - sq4SfroivUG+dsW/me04BQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0E3WsZAAAAADP/SnQZPYzRpqIoFMuido9WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 05Sx8ZQAAAAC1gS1ZXIBTToURNIivYoJzSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 190ms + - 236ms status: code: 200 message: OK @@ -1920,40 +1753,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:06 GMT + - Fri, 15 Dec 2023 10:39:36 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150", + null, "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:05 GMT + - Fri, 15 Dec 2023 10:39:36 GMT ms-cv: - - KR0BAN24OU+WkchGVhfaTQ.0 + - TZu1nC9Ph0+x9LQlYTSkQg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0FXWsZAAAAACoIb2aeR//TJMvrwPTvR1PWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 06Cx8ZQAAAAAzNE/JeQvRRLOSNJMUWWyMSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 183ms + - 212ms status: code: 200 message: OK @@ -1968,40 +1802,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:08 GMT + - Fri, 15 Dec 2023 10:39:39 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150", + null, "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:08 GMT + - Fri, 15 Dec 2023 10:39:39 GMT ms-cv: - - rAEW2MYwPUuLChspmD4zTQ.0 + - qDPNMiyWO0CSEJBV3J8mmg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0F3WsZAAAAAAIjVx2eLqkTbV2sOXp3rI3WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 06ix8ZQAAAABwhNjZ66j+RoVXR89QYoAcSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 188ms + - 218ms status: code: 200 message: OK @@ -2016,40 +1851,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:10 GMT + - Fri, 15 Dec 2023 10:39:41 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150", + null, "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:10 GMT + - Fri, 15 Dec 2023 10:39:41 GMT ms-cv: - - s33JK5qF1UiWJL2IgSoPvQ.0 + - YTUpBSPL1E6VPpuctFRrjA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0GnWsZAAAAAAjqxfkk3xGSptlcBCqXkMUWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 07Sx8ZQAAAABQJ+FXXOQhRa2E+Av9e78vSFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 186ms + - 217ms status: code: 200 message: OK @@ -2064,40 +1900,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:13 GMT + - Fri, 15 Dec 2023 10:39:44 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:52.1257321+00:00", "id": "purchase_9512bf7b-cb15-4962-b413-c3d37c0d5150", + null, "createdDateTime": "2023-12-15T10:39:21.0808368+00:00", "id": "purchase_c267bbb9-d2b7-4a9e-ad38-1975754ae970", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:12 GMT + - Fri, 15 Dec 2023 10:39:44 GMT ms-cv: - - rWc9/GpqFEalaZAKkjON5g.0 + - gXK2b8Ob6UePwMWHV47PxA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0HHWsZAAAAABAAKcHHL71SqN4zjE+zAr6WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 07yx8ZQAAAADdZ19397wnRbKVOf8v6uq4SFlEMzBFREdFMDQxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 202ms + - 252ms status: code: 200 message: OK @@ -2119,11 +1956,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 21:16:13 GMT + - Fri, 15 Dec 2023 10:39:44 GMT User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-sms/1.0.1 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-sms/1.0.1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - pGj2qJbI+9+LVmxuTVoB4TRTtbF9x1VQ4/ju7sjDEiY= + - TziW6AE1SI6jSH2FYZAdJDWtwx6HmtNukZ5IAD4BzLU= x-ms-return-client-request-id: - 'true' method: POST @@ -2137,22 +1974,22 @@ interactions: headers: api-supported-versions: - 2020-07-20-preview1, 2020-08-20-preview, 2021-03-07, 2023-06-30-privatepreview - content-length: - - '261' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:12 GMT + - Fri, 15 Dec 2023 10:39:46 GMT ms-cv: - - Zxgei8ZsnkOJ0lvmYUsIvw.0 + - SVcBpkSaHEK65QuVkdQb0g.0 strict-transport-security: - max-age=2592000 + transfer-encoding: + - chunked x-azure-ref: - - 0HXWsZAAAAABybRVF7FGRRLgB6Lp8oOERWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 08Cx8ZQAAAADdrNlFGd8/QLxIrpDItR4JSFlEMzBFREdFMDQwNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 179ms + - 1569ms status: code: 202 message: Accepted 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 7e82aeed32f..f1a720c6e66 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,11 +14,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 20:59:26 GMT + - Fri, 15 Dec 2023 10:25:06 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -31,29 +31,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 20:59:30 GMT + - Fri, 15 Dec 2023 10:25:09 GMT location: - - /availablePhoneNumbers/searchResults/67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 ms-cv: - - k3af33BXr0ycwz9wyUxjCA.0 + - aBq3fcKzeUqEqgC5sCl2cA.0 operation-id: - - search_67b324ee-d39e-466b-93e9-44cfa001710b + - search_ab32e990-6124-4f1c-bf93-d3206d3ff94e operation-location: - - /phoneNumbers/operations/search_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + - /phoneNumbers/operations/search_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 search-id: - - 67b324ee-d39e-466b-93e9-44cfa001710b + - ab32e990-6124-4f1c-bf93-d3206d3ff94e strict-transport-security: - max-age=2592000 x-azure-ref: - - 0LXGsZAAAAAB8K20Gn6kjSZ1qzmwB2BXdWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0gil8ZQAAAADy1O6SRQvaQJdAJbhExulhSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 3891ms + - 2063ms status: code: 202 message: Accepted @@ -67,45 +67,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:30 GMT + - Fri, 15 Dec 2023 10:25:10 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01", - "createdDateTime": "2023-07-10T20:59:29.7782073+00:00", "id": "sanitized", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:25:09.3762327+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:30 GMT + - Fri, 15 Dec 2023 10:25:10 GMT location: - - /availablePhoneNumbers/searchResults/67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 ms-cv: - - iBHPFEJ+JEOP75G9PAt+9g.0 + - 09m138acIkGKFUTHSjLIRg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0MnGsZAAAAACuBjtZ2bZSRZIrlO8dK7sqWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0hSl8ZQAAAACzbyC84wioT4/FI+I8xEqISFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 232ms + - 246ms status: code: 200 message: OK @@ -120,45 +121,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:33 GMT + - Fri, 15 Dec 2023 10:25:12 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01", - "createdDateTime": "2023-07-10T20:59:29.7782073+00:00", "id": "sanitized", + "/availablePhoneNumbers/searchResults/ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:25:09.3762327+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:32 GMT + - Fri, 15 Dec 2023 10:25:12 GMT location: - - /availablePhoneNumbers/searchResults/67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 ms-cv: - - FMya+Yv8W064DIplUH1EEw.0 + - FUB2ZMsp9E+Qnn7DriYYfg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0NHGsZAAAAAA7h+qNm2S8RIQEr+M/F1vWWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0iCl8ZQAAAADltFS+DW5RRrnjPFpgSGtBSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 237ms + - 247ms status: code: 200 message: OK @@ -173,48 +175,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:33 GMT + - Fri, 15 Dec 2023 10:25:13 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: - string: '{"searchId": "67b324ee-d39e-466b-93e9-44cfa001710b", "phoneNumbers": + string: '{"searchId": "ab32e990-6124-4f1c-bf93-d3206d3ff94e", "phoneNumbers": ["sanitized"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:15:31.5014379+00:00", "error": "NoError"}' + "2023-12-15T10:41:10.9855034+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '369' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:33 GMT + - Fri, 15 Dec 2023 10:25:13 GMT ms-cv: - - l+2gZDXT4ECZA1IDDSpe1g.0 + - +5bwW36Wh0+LzubeUtGAig.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0NHGsZAAAAAD4QzbBFKblQbPgdTqGDdkhWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0iSl8ZQAAAAAUVeshQSiIQafTXgzVG+cqSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 371ms + - 421ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "67b324ee-d39e-466b-93e9-44cfa001710b"}' + body: '{"searchId": "ab32e990-6124-4f1c-bf93-d3206d3ff94e"}' headers: Accept: - application/json @@ -227,11 +229,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - YFNfHOkay0bDRlqNgOGcEHRKLMMSa6VIGEC2fUzEwpI= + - RNChV0IhqmGt5h6DENhEoZE7mxT+FAdVdRA3r1713DA= x-ms-date: - - Mon, 10 Jul 2023 20:59:33 GMT + - Fri, 15 Dec 2023 10:25:13 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -244,27 +246,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 20:59:34 GMT + - Fri, 15 Dec 2023 10:25:14 GMT ms-cv: - - KM8qufmsLk6PJQ9EekMfHg.0 + - xXMCls/MoUq3r6Vds99NCA.0 operation-id: - - purchase_67b324ee-d39e-466b-93e9-44cfa001710b + - purchase_ab32e990-6124-4f1c-bf93-d3206d3ff94e operation-location: - - /phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 purchase-id: - - 67b324ee-d39e-466b-93e9-44cfa001710b + - ab32e990-6124-4f1c-bf93-d3206d3ff94e strict-transport-security: - max-age=2592000 x-azure-ref: - - 0NXGsZAAAAABY285qxKlvQYh2biOjH4d1WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0iSl8ZQAAAACL8L3m9JXqQIFFdMkEqkDJSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 884ms + - 835ms status: code: 202 message: Accepted @@ -278,40 +280,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:34 GMT + - Fri, 15 Dec 2023 10:25:14 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:29.7782073+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:09.3762327+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:34 GMT + - Fri, 15 Dec 2023 10:25:15 GMT ms-cv: - - NZAcj6A37US7OqUbA5M6LA.0 + - 42lruDYPP0K3lMCS7Qn0XA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0NnGsZAAAAACKav7Paj/7SZ3jyFExOP5BWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0iil8ZQAAAADa8yEcjur7RKnEESRLDSeKSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 237ms + - 245ms status: code: 200 message: OK @@ -326,40 +329,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:37 GMT + - Fri, 15 Dec 2023 10:25:17 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:29.7782073+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:09.3762327+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:36 GMT + - Fri, 15 Dec 2023 10:25:17 GMT ms-cv: - - Tr73zvduvkqrvQTZsEIpIA.0 + - HYCxAYe9MUWSaPyCUDUsww.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0OHGsZAAAAAANLdn04ilbS5d3PtF6E6L1WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0jSl8ZQAAAAD968sj5nODSLNvbuoESzGrSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 252ms + - 271ms status: code: 200 message: OK @@ -374,40 +378,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:39 GMT + - Fri, 15 Dec 2023 10:25:19 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:29.7782073+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:09.3762327+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:39 GMT + - Fri, 15 Dec 2023 10:25:20 GMT ms-cv: - - YK5aJAo1KUuLBCVyUQpkww.0 + - eZ7IrgKqLU69EdbcsmCLOA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0OnGsZAAAAABf3zccb5tYTaLqk9eFhHDaWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0jyl8ZQAAAABTwTEos+jVRprvktQaGtvpSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 233ms + - 265ms status: code: 200 message: OK @@ -422,40 +427,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:41 GMT + - Fri, 15 Dec 2023 10:25:22 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:29.7782073+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:09.3762327+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:41 GMT + - Fri, 15 Dec 2023 10:25:22 GMT ms-cv: - - UXYSZ5yqcECEUaLQG2mR/w.0 + - T+8iQvogWkiEAp6FHj3uQg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0PXGsZAAAAADhV0YZzvPXTqe05hx2gqQaWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kil8ZQAAAADKLvSxytxLT6WQn/FiGp9wSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 228ms + - 258ms status: code: 200 message: OK @@ -470,40 +476,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:44 GMT + - Fri, 15 Dec 2023 10:25:25 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:29.7782073+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:09.3762327+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:43 GMT + - Fri, 15 Dec 2023 10:25:25 GMT ms-cv: - - 0ypmk0ZDnUyK4n5Pe63BOQ.0 + - xGaaCaHJvUqU2GVFsre/Hg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0P3GsZAAAAABcAXtJNbQkQJhxWfnBJhluWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lCl8ZQAAAAA9z1cAC6S+Q6I4ovUtYJE+SFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 233ms + - 240ms status: code: 200 message: OK @@ -518,40 +525,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:46 GMT + - Fri, 15 Dec 2023 10:25:27 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:29.7782073+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:09.3762327+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:46 GMT + - Fri, 15 Dec 2023 10:25:27 GMT ms-cv: - - VIrQYMOYZEO2c0cdpEywZA.0 + - ltEKO6n7D0KTHBTP9/P/ZQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0QXGsZAAAAABQ8PU+8GiCTIObpxGOP7EAWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lyl8ZQAAAAASXWJRISrMT4YAhLcKZkOcSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 260ms + - 251ms status: code: 200 message: OK @@ -566,136 +574,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:49 GMT + - Fri, 15 Dec 2023 10:25:30 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:29.7782073+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 20:59:48 GMT - ms-cv: - - sxKW3qF+pUef4o+/y/y/Ng.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 0RHGsZAAAAACBX9lrAw4BSoRsT4l5hk4NWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 238ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 20:59:51 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:29.7782073+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 20:59:50 GMT - ms-cv: - - odl0ateL1kysyinv9eoK6Q.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 0RnGsZAAAAADyoYgpHM5aS4LxU9bRzLzKWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 221ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 20:59:53 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_67b324ee-d39e-466b-93e9-44cfa001710b?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ab32e990-6124-4f1c-bf93-d3206d3ff94e?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T20:59:29.7782073+00:00", "id": "sanitized", + null, "createdDateTime": "2023-12-15T10:25:09.3762327+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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:53 GMT + - Fri, 15 Dec 2023 10:25:30 GMT ms-cv: - - BrGhBLBny0ey+jHrCqICCg.0 + - G2uyEfZmCku13rRW6+zfEw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0SHGsZAAAAADgxsHzkjW5RowHxO1JyFekWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0mSl8ZQAAAAB2bpSD6E0iR4E67AURK9YgSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 237ms + - 389ms status: code: 200 message: OK @@ -710,12 +623,12 @@ interactions: Connection: - keep-alive User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 + (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 20:59:54 GMT + - Fri, 15 Dec 2023 10:25:30 GMT x-ms-return-client-request-id: - 'true' method: GET @@ -724,28 +637,28 @@ interactions: body: string: '{"id": "sanitized", "phoneNumber": "sanitized", "countryCode": "US", "phoneNumberType": "tollFree", "capabilities": {"calling": "inbound", "sms": - "inbound+outbound"}, "assignmentType": "application", "purchaseDate": "2023-07-10T20:59:49.2524538+00:00", + "inbound+outbound"}, "assignmentType": "application", "purchaseDate": "2023-12-15T10:25:27.8543294+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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '331' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 20:59:58 GMT + - Fri, 15 Dec 2023 10:25:33 GMT ms-cv: - - nFGkeOA/O0+jsJerht8dkQ.0 + - g72LtqgrFUePCMbv9ZtNMg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0SXGsZAAAAADVmJX1MG/oRJtQYu9sNr01WVZSMzExMDAwMTE1MDM5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0myl8ZQAAAADUUdPQgvPrS5vM/lWg0wtWSFlEMzBFREdFMDQwOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 5101ms + - 1384ms 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 ba51469e8d8..fa87a9a90c3 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,11 +14,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:14:57 GMT + - Fri, 15 Dec 2023 10:38:27 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -31,29 +31,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:14:59 GMT + - Fri, 15 Dec 2023 10:38:30 GMT location: - - /availablePhoneNumbers/searchResults/e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 ms-cv: - - 0oCFa6AVs0OKZcaJHfr54Q.0 + - ZiWu21QrBk+1odhZi6bu6w.0 operation-id: - - search_e77a381c-4c83-4f0d-8c26-d8d134f9d325 + - search_5543862a-c890-44b0-8185-344e4eb4a1cf operation-location: - - /phoneNumbers/operations/search_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + - /phoneNumbers/operations/search_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 search-id: - - e77a381c-4c83-4f0d-8c26-d8d134f9d325 + - 5543862a-c890-44b0-8185-344e4eb4a1cf strict-transport-security: - max-age=2592000 x-azure-ref: - - 00XSsZAAAAAC95AuLYaI0Tb//iTt8s8dPWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0oyx8ZQAAAADMgGvX8l/JSpW32EI+tanFSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1666ms + - 1999ms status: code: 202 message: Accepted @@ -67,45 +67,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:14:59 GMT + - Fri, 15 Dec 2023 10:38:30 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "search_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "search_5543862a-c890-44b0-8185-344e4eb4a1cf", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:14:59 GMT + - Fri, 15 Dec 2023 10:38:30 GMT location: - - /availablePhoneNumbers/searchResults/e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 ms-cv: - - 1sgvu8ckHkiHfEW33NKjSA.0 + - ybuPT0sZv02yrZxFV28Ibw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 003SsZAAAAACOSRLM9qV+T4niIV8BuAGsWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0pix8ZQAAAACTBy9CpWf0QLYaItU+IQioSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 246ms + - 241ms status: code: 200 message: OK @@ -120,45 +121,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:33 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "search_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + "/availablePhoneNumbers/searchResults/5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "search_5543862a-c890-44b0-8185-344e4eb4a1cf", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:01 GMT + - Fri, 15 Dec 2023 10:38:33 GMT location: - - /availablePhoneNumbers/searchResults/e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 ms-cv: - - 33U6hqjrIEWy4bc890GYfg.0 + - MRmA2P6rRkGPuViZZSD48w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 01XSsZAAAAACpgya4m2CpR42WgUP22xw7WVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qSx8ZQAAAADpk+yL/Vq3R421FC1Sjo8PSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 231ms + - 232ms status: code: 200 message: OK @@ -173,48 +175,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:33 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: - string: '{"searchId": "e77a381c-4c83-4f0d-8c26-d8d134f9d325", "phoneNumbers": - ["+18447321375"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "5543862a-c890-44b0-8185-344e4eb4a1cf", "phoneNumbers": + ["+18334231557"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:31:00.6755562+00:00", "error": "NoError"}' + "2023-12-15T10:54:32.2521896+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '372' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:02 GMT + - Fri, 15 Dec 2023 10:38:34 GMT ms-cv: - - NHz5Q+E6PEKa/mQX8AxETg.0 + - SwDQ4/RLpEifQgKUS+SKHA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 01XSsZAAAAAAv51ddZmpGRKwYsNw085m/WVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qSx8ZQAAAAB2K3uFxQviR77v5AUxn0rtSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 397ms + - 387ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "e77a381c-4c83-4f0d-8c26-d8d134f9d325"}' + body: '{"searchId": "5543862a-c890-44b0-8185-344e4eb4a1cf"}' headers: Accept: - application/json @@ -227,11 +229,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - WP4JrPiFdzuDJOokeXfZvnsXm7AaxUE3f4hMyoiAv6s= + - CdFhDMe/8hLDuzOPH7U+vz4/xTRcIHB5EqjgMY04Iho= x-ms-date: - - Mon, 10 Jul 2023 21:15:03 GMT + - Fri, 15 Dec 2023 10:38:34 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -244,27 +246,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:03 GMT + - Fri, 15 Dec 2023 10:38:35 GMT ms-cv: - - +JpRfpMMEUugtvMvQ+a6HQ.0 + - RqmtBzQEHUarzzHl3V7kKQ.0 operation-id: - - purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325 + - purchase_5543862a-c890-44b0-8185-344e4eb4a1cf operation-location: - - /phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 purchase-id: - - e77a381c-4c83-4f0d-8c26-d8d134f9d325 + - 5543862a-c890-44b0-8185-344e4eb4a1cf strict-transport-security: - max-age=2592000 x-azure-ref: - - 01nSsZAAAAAA2S7GG0NTXQ4IFQ0Kjj3TeWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qix8ZQAAAAB0aevxvqAXRafUtgyCFYEgSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 852ms + - 822ms status: code: 202 message: Accepted @@ -278,40 +280,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:04 GMT + - Fri, 15 Dec 2023 10:38:35 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + null, "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "purchase_5543862a-c890-44b0-8185-344e4eb4a1cf", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:03 GMT + - Fri, 15 Dec 2023 10:38:35 GMT ms-cv: - - wb3rHtp1VUuYvPjeuWc8gQ.0 + - K/s+Y5xjtEOASAmDRCmxjw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 013SsZAAAAAA+SIEl89a7SJvLq8Jr6MGgWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0qyx8ZQAAAACuDnUiYzDzQpA6x5XVxpVTSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 288ms + - 239ms status: code: 200 message: OK @@ -326,40 +329,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:06 GMT + - Fri, 15 Dec 2023 10:38:38 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: - string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": + null, "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "purchase_5543862a-c890-44b0-8185-344e4eb4a1cf", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:05 GMT + - Fri, 15 Dec 2023 10:38:38 GMT ms-cv: - - xvhbDThHzk6SEC1CCuMOOQ.0 + - KG4quIgFfEOfZGf74R7wMQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 02XSsZAAAAAAyBzLUdZzmSIJkMWTWnm0oWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0rSx8ZQAAAACGzriCiU9ASbT6dc/V+IqQSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 266ms + - 243ms status: code: 200 message: OK @@ -374,40 +378,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:08 GMT + - Fri, 15 Dec 2023 10:38:40 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + null, "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "purchase_5543862a-c890-44b0-8185-344e4eb4a1cf", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:08 GMT + - Fri, 15 Dec 2023 10:38:40 GMT ms-cv: - - s90YimVj+0+ZX0xlCr6BgA.0 + - aM7ZpyFCHkicIFafolF8/w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 03HSsZAAAAABr/T/iCpJUR6sSFvlpU/ewWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0sCx8ZQAAAAC31rtGwAcqQKEaLRwpAELnSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 233ms + - 229ms status: code: 200 message: OK @@ -422,40 +427,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:11 GMT + - Fri, 15 Dec 2023 10:38:43 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + null, "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "purchase_5543862a-c890-44b0-8185-344e4eb4a1cf", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:10 GMT + - Fri, 15 Dec 2023 10:38:43 GMT ms-cv: - - JRTvr7WeLEGV0QG9hV0qKQ.0 + - Du2WFQqHzEqX0u9alVCm/w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 03nSsZAAAAABnb648n/noRr4CMOI19YcOWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0six8ZQAAAAB9JaQ+9aIZQb55IAUHvJq6SFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 237ms + - 239ms status: code: 200 message: OK @@ -470,40 +476,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:13 GMT + - Fri, 15 Dec 2023 10:38:45 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + null, "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "purchase_5543862a-c890-44b0-8185-344e4eb4a1cf", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:12 GMT + - Fri, 15 Dec 2023 10:38:45 GMT ms-cv: - - HKQF0Cvhn0qIsvVqhe0ang.0 + - iZ10XiqcWUaQ0bXl3dJkFQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 04HSsZAAAAAC8LmBrmGggTYx9zgK3on+LWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0tSx8ZQAAAACeRxW3T33jSKyzGvpcOTc5SFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 247ms + - 282ms status: code: 200 message: OK @@ -518,40 +525,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:15 GMT + - Fri, 15 Dec 2023 10:38:48 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + null, "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "purchase_5543862a-c890-44b0-8185-344e4eb4a1cf", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:15 GMT + - Fri, 15 Dec 2023 10:38:48 GMT ms-cv: - - 9KqQsZp4OEecG1SzsMamtw.0 + - E0rvW0GG50ybdDdqs8QzhQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 043SsZAAAAACKOX8OFX/JRLfUnuvKOWYPWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0uCx8ZQAAAABcDWjO3dDKQ5jpE0rPm3L6SFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 264ms + - 252ms status: code: 200 message: OK @@ -566,40 +574,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:18 GMT + - Fri, 15 Dec 2023 10:38:50 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + null, "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "purchase_5543862a-c890-44b0-8185-344e4eb4a1cf", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:17 GMT + - Fri, 15 Dec 2023 10:38:50 GMT ms-cv: - - mqtL4ETPd0ilCoUZKTlrbQ.0 + - zynbXQJ17EKItwyJre8RsA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 05XSsZAAAAAD7/wzLwZxeQJmPGmmmmmSyWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0uix8ZQAAAABbaNolvzVlRb3mXgvcEqyOSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 315ms + - 222ms status: code: 200 message: OK @@ -614,40 +623,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:20 GMT + - Fri, 15 Dec 2023 10:38:53 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + null, "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "purchase_5543862a-c890-44b0-8185-344e4eb4a1cf", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:20 GMT + - Fri, 15 Dec 2023 10:38:53 GMT ms-cv: - - Sy43HMd8J0eNqXqN8Koinw.0 + - 14XfN8NoxUyCMIGeVSOPbg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 053SsZAAAAABwsteQbtNZR7alugLkuVTVWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0vSx8ZQAAAAAzJ1t8pgWCRbDkHiaD8PHQSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 263ms + - 252ms status: code: 200 message: OK @@ -662,40 +672,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:22 GMT + - Fri, 15 Dec 2023 10:38:55 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_5543862a-c890-44b0-8185-344e4eb4a1cf?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:14:58.8936032+00:00", "id": "purchase_e77a381c-4c83-4f0d-8c26-d8d134f9d325", + null, "createdDateTime": "2023-12-15T10:38:29.9903011+00:00", "id": "purchase_5543862a-c890-44b0-8185-344e4eb4a1cf", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:22 GMT + - Fri, 15 Dec 2023 10:38:56 GMT ms-cv: - - jpmtxniaEkmbaHCTZnI9Yw.0 + - J+1hxHEYBUqfBUWTtT8hJA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 06nSsZAAAAADXuQb4+LkDSrGuF3FFQCoTWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0vyx8ZQAAAACu3hC8Rku0R6TLd2eDKJasSFlEMzBFREdFMDYyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 248ms + - 221ms status: code: 200 message: OK @@ -716,11 +727,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 21:15:23 GMT + - Fri, 15 Dec 2023 10:38:56 GMT User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-sms/1.0.1 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-sms/1.0.1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - F2gVsoKiGelKKuS7WAcQeMVo+zgc6eP2kq1x35uSRvE= + - mTZQ95A3DYhTNm71uh3PoglH5lqNrvjx6YJAGEVrllc= x-ms-return-client-request-id: - 'true' method: POST @@ -732,22 +743,22 @@ interactions: headers: api-supported-versions: - 2020-07-20-preview1, 2020-08-20-preview, 2021-03-07, 2023-06-30-privatepreview - content-length: - - '136' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:22 GMT + - Fri, 15 Dec 2023 10:38:57 GMT ms-cv: - - 045coQPEAUelpfWekAOqFQ.0 + - DDkomV0auEyFjGt+LXBJWA.0 strict-transport-security: - max-age=2592000 + transfer-encoding: + - chunked x-azure-ref: - - 06nSsZAAAAABcZrW1Iv/eRq67NShBCXmtWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0wCx8ZQAAAACljp49iuG2SKgev5fpVQ5rSFlEMzBFREdFMDQxMwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 137ms + - 955ms 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 4fab1e4e395..b3bc2c83d85 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,11 +14,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:15:00 GMT + - Fri, 15 Dec 2023 10:40:13 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -31,29 +31,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:04 GMT + - Fri, 15 Dec 2023 10:40:17 GMT location: - - /availablePhoneNumbers/searchResults/3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 ms-cv: - - AKppjwhvLk+PfCQSST4Imw.0 + - nIApLfcLb0KTTqhEJwn6wQ.0 operation-id: - - search_3f9228e2-7743-405c-8323-4aa0e8dcbf91 + - search_ce1f231d-8c7e-4095-b1d9-079b2b8681a3 operation-location: - - /phoneNumbers/operations/search_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + - /phoneNumbers/operations/search_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 search-id: - - 3f9228e2-7743-405c-8323-4aa0e8dcbf91 + - ce1f231d-8c7e-4095-b1d9-079b2b8681a3 strict-transport-security: - max-age=2592000 x-azure-ref: - - 01HSsZAAAAACuuSzbBA4XRodb7dtx9MFTWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Di18ZQAAAAChhkuVoFmUQpRyqi3hQS7fRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 4363ms + - 3332ms status: code: 202 message: Accepted @@ -67,45 +67,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:05 GMT + - Fri, 15 Dec 2023 10:40:17 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "search_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "search_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:04 GMT + - Fri, 15 Dec 2023 10:40:17 GMT location: - - /availablePhoneNumbers/searchResults/3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 ms-cv: - - Trgp8zmyfEm1R25QvOZdcg.0 + - ycaP4IUgy0+6OVU8/sSjiw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 02HSsZAAAAAD7S8C0XWujQ4IjWAZf9MxgWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ES18ZQAAAABWASPytlFgQLbF9nyVg3bDRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 229ms + - 244ms status: code: 200 message: OK @@ -120,45 +121,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:08 GMT + - Fri, 15 Dec 2023 10:40:20 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "search_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + "/availablePhoneNumbers/searchResults/ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "search_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:06 GMT + - Fri, 15 Dec 2023 10:40:20 GMT location: - - /availablePhoneNumbers/searchResults/3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 ms-cv: - - KLpcpBWssEuHq/RjjJ0Upw.0 + - dV8x7Y64VkGxJeSenHQEXw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 023SsZAAAAACHd+E4WqPuT6FOSfOnGCx7WVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0FC18ZQAAAAAJZ0lB0dfaSI6mS+i6Fwb5RE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 201ms + - 259ms status: code: 200 message: OK @@ -173,48 +175,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:08 GMT + - Fri, 15 Dec 2023 10:40:20 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: - string: '{"searchId": "3f9228e2-7743-405c-8323-4aa0e8dcbf91", "phoneNumbers": - ["+18552466141"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "phoneNumbers": + ["+18442941733"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:31:06.3694051+00:00", "error": "NoError"}' + "2023-12-15T10:56:18.6842459+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '372' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:07 GMT + - Fri, 15 Dec 2023 10:40:20 GMT ms-cv: - - o+BPF8xNi02a8zDgzLOmsA.0 + - DiZ3/uEyzEmA7gU3QTNWTg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 023SsZAAAAADjQuYMvaYUSalMSlYvYVOtWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0FC18ZQAAAADMDf1u/NhbTYgim1Dd9quIRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 383ms + - 388ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "3f9228e2-7743-405c-8323-4aa0e8dcbf91"}' + body: '{"searchId": "ce1f231d-8c7e-4095-b1d9-079b2b8681a3"}' headers: Accept: - application/json @@ -227,11 +229,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - KKHxCC4/4BbuUs15YP5a98K2XT970E1EZWDgfT8wv9U= + - xlKgLmDmQW5Cs+p+9Y/c/9xr8lHNVRljYbKDp0Vbw2o= x-ms-date: - - Mon, 10 Jul 2023 21:15:08 GMT + - Fri, 15 Dec 2023 10:40:21 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -244,27 +246,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:08 GMT + - Fri, 15 Dec 2023 10:40:22 GMT ms-cv: - - n6nHj52tQ0WVBIRwDycr1w.0 + - dnG6CVN3F0u/xl/L0nfbFg.0 operation-id: - - purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91 + - purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3 operation-location: - - /phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 purchase-id: - - 3f9228e2-7743-405c-8323-4aa0e8dcbf91 + - ce1f231d-8c7e-4095-b1d9-079b2b8681a3 strict-transport-security: - max-age=2592000 x-azure-ref: - - 03HSsZAAAAABHWd7s/MRSSrImgyoYg3mVWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0FS18ZQAAAADRlvzLBhz9SbLSNlaxXbXyRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 761ms + - 968ms status: code: 202 message: Accepted @@ -278,88 +280,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:09 GMT + - Fri, 15 Dec 2023 10:40:22 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91", - "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' - headers: - api-supported-versions: - - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 21:15:08 GMT - ms-cv: - - CDb/JgQIhUqOpcM1lDzzTA.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 03HSsZAAAAAADYm5fy85eQ4l0atxcGpTkWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 202ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 21:15:11 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + null, "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:10 GMT + - Fri, 15 Dec 2023 10:40:22 GMT ms-cv: - - qCW/w5max0aCL+L7KZFQdw.0 + - CQ6931dZ8kel8LZ4g1OT5A.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 033SsZAAAAADMV3PWg7k5TY4H+GnRY92rWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Fi18ZQAAAAC4KLyzPFY1T7iU/1L5FNSwRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 182ms + - 250ms status: code: 200 message: OK @@ -374,40 +329,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:14 GMT + - Fri, 15 Dec 2023 10:40:25 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + null, "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:12 GMT + - Fri, 15 Dec 2023 10:40:25 GMT ms-cv: - - Ksd/deqtO02nkZTM+RR0dA.0 + - 8DiIod6+FUi0Qr+Ac2vWNA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 04XSsZAAAAADvHri3cs+LTaJ79fEeyvmwWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0GS18ZQAAAACmwYb6gpzSR75mLxP2nGNmRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 191ms + - 270ms status: code: 200 message: OK @@ -422,40 +378,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:16 GMT + - Fri, 15 Dec 2023 10:40:27 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + null, "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:15 GMT + - Fri, 15 Dec 2023 10:40:27 GMT ms-cv: - - xfXWTSKGg0O2Rsbg5tI7jw.0 + - KPsIg69CTEe/Zt0loru6Iw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 043SsZAAAAABmERN7DsvjS4QFsd/mR5wVWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Gy18ZQAAAACWGTriePcUS6lgqp1dVMziRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 200ms + - 247ms status: code: 200 message: OK @@ -470,40 +427,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:18 GMT + - Fri, 15 Dec 2023 10:40:30 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + null, "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:17 GMT + - Fri, 15 Dec 2023 10:40:30 GMT ms-cv: - - KiiYeh54H0G97pDFKwWxGA.0 + - 3tXTbFh0Qk2KENgIWeKa4g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 05nSsZAAAAACVG7hQYwC8QYp7yjGD/KftWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Hi18ZQAAAAAm/FNeMCc6TYivjPm6jLIVRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 193ms + - 272ms status: code: 200 message: OK @@ -518,40 +476,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:21 GMT + - Fri, 15 Dec 2023 10:40:32 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + null, "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:19 GMT + - Fri, 15 Dec 2023 10:40:32 GMT ms-cv: - - sMxWxMkUp0OaLgZa1Xtvtw.0 + - +MYCEjSP8Em285BVUmI6Rw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 06HSsZAAAAACGvBG3QC/tTrqomVtqTqcwWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0IC18ZQAAAABRXiHOsKU6TJRuRfXMcxVBRE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 216ms + - 227ms status: code: 200 message: OK @@ -566,40 +525,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:23 GMT + - Fri, 15 Dec 2023 10:40:35 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + null, "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:22 GMT + - Fri, 15 Dec 2023 10:40:35 GMT ms-cv: - - iDkhC9NCcE+zfog0MeQmjA.0 + - ORvzoszogEm4LBBNId3Ybw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 06nSsZAAAAACkA3pzLj0qRrBuNGmToC5nWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Iy18ZQAAAADaHp9OiOtkT6OaYXdAjib6RE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 248ms + - 256ms status: code: 200 message: OK @@ -614,40 +574,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:25 GMT + - Fri, 15 Dec 2023 10:40:37 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + null, "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:24 GMT + - Fri, 15 Dec 2023 10:40:37 GMT ms-cv: - - ScwohgPTBE2CezuwfdF4Gw.0 + - qA2oWIKbIkip9eSJPN6uDA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 07XSsZAAAAABT9GVqupTcR4sEiZIHGU5uWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0JS18ZQAAAAAxonKT+aApQqOqzefcgHY8RE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 284ms + - 267ms status: code: 200 message: OK @@ -662,40 +623,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:28 GMT + - Fri, 15 Dec 2023 10:40:40 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:04.3802259+00:00", "id": "purchase_3f9228e2-7743-405c-8323-4aa0e8dcbf91", + null, "createdDateTime": "2023-12-15T10:40:17.0958937+00:00", "id": "purchase_ce1f231d-8c7e-4095-b1d9-079b2b8681a3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:27 GMT + - Fri, 15 Dec 2023 10:40:40 GMT ms-cv: - - 2ZjZfeIcV0KeeH+s+oEKDw.0 + - S3rB3TU3rUW280OnTTcWzg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 073SsZAAAAAC07HkfDvP5QKdwobuyVBsIWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0KC18ZQAAAADWsBZ9qJY8RpuJPQEBVGiURE9IMzBFREdFMDExMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 195ms + - 264ms status: code: 200 message: OK @@ -715,11 +677,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:15:28 GMT + - Fri, 15 Dec 2023 10:40:40 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -732,29 +694,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:29 GMT + - Fri, 15 Dec 2023 10:40:42 GMT location: - - /availablePhoneNumbers/searchResults/4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 ms-cv: - - M1qs10WWL0Gul5kl29CYDg.0 + - 2AVw7ER6U0ejydbldFYJiQ.0 operation-id: - - search_4a3a289e-23d0-4634-98a2-03891cb717c8 + - search_c299aa40-e68c-4680-9390-ba91946fbb9f operation-location: - - /phoneNumbers/operations/search_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + - /phoneNumbers/operations/search_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 search-id: - - 4a3a289e-23d0-4634-98a2-03891cb717c8 + - c299aa40-e68c-4680-9390-ba91946fbb9f strict-transport-security: - max-age=2592000 x-azure-ref: - - 073SsZAAAAAA/SJhT7QoNSIMYxymWwZuIWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0KS18ZQAAAACyokPdPEIjSLRTXDJkgAQdRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1260ms + - 1567ms status: code: 202 message: Accepted @@ -768,45 +730,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:30 GMT + - Fri, 15 Dec 2023 10:40:43 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "search_4a3a289e-23d0-4634-98a2-03891cb717c8", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "search_c299aa40-e68c-4680-9390-ba91946fbb9f", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:29 GMT + - Fri, 15 Dec 2023 10:40:43 GMT location: - - /availablePhoneNumbers/searchResults/4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 ms-cv: - - BPJbJk6x3EGc2eWCZfdhTA.0 + - o8XIRZ9NvUyHNuRMWB8TFQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 08XSsZAAAAABtcYeL2/9CS6hM2eD4mHY2WVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ky18ZQAAAACYe5LIPPFlRbqHSNRaX+7NRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 224ms + - 229ms status: code: 200 message: OK @@ -821,45 +784,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:32 GMT + - Fri, 15 Dec 2023 10:40:46 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "search_4a3a289e-23d0-4634-98a2-03891cb717c8", + "/availablePhoneNumbers/searchResults/c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "search_c299aa40-e68c-4680-9390-ba91946fbb9f", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:31 GMT + - Fri, 15 Dec 2023 10:40:45 GMT location: - - /availablePhoneNumbers/searchResults/4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 ms-cv: - - VfdRwjM390K2mSu1d9R+Fg.0 + - LAkSwENVpUGXwwKFmqubkQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 083SsZAAAAAANWznQEKFwQqCHDuBZUlRtWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Li18ZQAAAAAf9Vz1E5hHSoJ4OW6qc70gRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 231ms + - 267ms status: code: 200 message: OK @@ -874,48 +838,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:32 GMT + - Fri, 15 Dec 2023 10:40:46 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: - string: '{"searchId": "4a3a289e-23d0-4634-98a2-03891cb717c8", "phoneNumbers": - ["+18332311054"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "c299aa40-e68c-4680-9390-ba91946fbb9f", "phoneNumbers": + ["+18334231638"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:31:31.1135851+00:00", "error": "NoError"}' + "2023-12-15T10:56:44.9154833+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '372' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:32 GMT + - Fri, 15 Dec 2023 10:40:46 GMT ms-cv: - - VHCK5vTi+E+PR+ASj7yuCg.0 + - MArl0++HF0GDgGIn9Rg8hQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 09HSsZAAAAABeI8gCxc7SQKw6nJCdtJOyWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Li18ZQAAAAA0eqjkOb2DQKrS8OHiZBWlRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 360ms + - 372ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "4a3a289e-23d0-4634-98a2-03891cb717c8"}' + body: '{"searchId": "c299aa40-e68c-4680-9390-ba91946fbb9f"}' headers: Accept: - application/json @@ -928,11 +892,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - 4SDvwWOQ992WnJoLvzMsyaJ9jpYE4NXRXvrkcBXbPYw= + - +g9vNqzB0KAGWpG1hGcTki3AulRAgkmarC2LyaCg8lY= x-ms-date: - - Mon, 10 Jul 2023 21:15:33 GMT + - Fri, 15 Dec 2023 10:40:47 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -945,27 +909,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:32 GMT + - Fri, 15 Dec 2023 10:40:47 GMT ms-cv: - - UPMqsHwEpE6atGyu9JQIOA.0 + - vvBJojLgjUahrIwMFncmrw.0 operation-id: - - purchase_4a3a289e-23d0-4634-98a2-03891cb717c8 + - purchase_c299aa40-e68c-4680-9390-ba91946fbb9f operation-location: - - /phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 purchase-id: - - 4a3a289e-23d0-4634-98a2-03891cb717c8 + - c299aa40-e68c-4680-9390-ba91946fbb9f strict-transport-security: - max-age=2592000 x-azure-ref: - - 09HSsZAAAAAB0gcRlUJeuSK/kB03HJojyWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ly18ZQAAAACHgPvnwQDpSL4Gs6HCda1LRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 737ms + - 808ms status: code: 202 message: Accepted @@ -979,88 +943,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:34 GMT + - Fri, 15 Dec 2023 10:40:48 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "purchase_4a3a289e-23d0-4634-98a2-03891cb717c8", - "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' - headers: - api-supported-versions: - - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview - content-type: - - application/json; charset=utf-8 - date: - - Mon, 10 Jul 2023 21:15:33 GMT - ms-cv: - - CgWc6+WGiEi0iUMku1f/pw.0 - strict-transport-security: - - max-age=2592000 - transfer-encoding: - - chunked - x-azure-ref: - - 09XSsZAAAAAD47Ye2qbaLRLYcVuVez9QjWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== - x-cache: - - CONFIG_NOCACHE - x-processing-time: - - 184ms - status: - code: 200 - message: OK - url: sanitized -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) - x-ms-content-sha256: - - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= - x-ms-date: - - Mon, 10 Jul 2023 21:15:36 GMT - x-ms-return-client-request-id: - - 'true' - method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 - response: - body: - string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "purchase_4a3a289e-23d0-4634-98a2-03891cb717c8", + null, "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "purchase_c299aa40-e68c-4680-9390-ba91946fbb9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:35 GMT + - Fri, 15 Dec 2023 10:40:48 GMT ms-cv: - - nieJx5gdb0afD4uPOcgHAQ.0 + - ckUEgnnTr0SmSs8DUWk/sw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 093SsZAAAAAB8GxAbYIuYTIwrOjD7fStqWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0MC18ZQAAAADvsJutHerLRKi0CbmSUnkCRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 189ms + - 235ms status: code: 200 message: OK @@ -1075,40 +992,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:38 GMT + - Fri, 15 Dec 2023 10:40:50 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "purchase_4a3a289e-23d0-4634-98a2-03891cb717c8", + null, "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "purchase_c299aa40-e68c-4680-9390-ba91946fbb9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:37 GMT + - Fri, 15 Dec 2023 10:40:50 GMT ms-cv: - - rPSU3tvLc0+vndzp9el33A.0 + - wgL7fzuk2kmXd/XhtKyffg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0+nSsZAAAAAD4aAV4GsY/TbqvEeyiftRvWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Mi18ZQAAAAD3S4+ASyMFQINCKy9hxSPPRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 191ms + - 359ms status: code: 200 message: OK @@ -1123,40 +1041,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:41 GMT + - Fri, 15 Dec 2023 10:40:53 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "purchase_4a3a289e-23d0-4634-98a2-03891cb717c8", + null, "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "purchase_c299aa40-e68c-4680-9390-ba91946fbb9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:40 GMT + - Fri, 15 Dec 2023 10:40:53 GMT ms-cv: - - OqqgGgHKwU+lxbhGEjoYEA.0 + - g4efK+LwhE2NlrRWlC819g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0/HSsZAAAAADS8ZFTDygLQ4w7JTFX0yTkWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0NS18ZQAAAADkJTiAzxz1S7mOYcTqh0UARE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 189ms + - 418ms status: code: 200 message: OK @@ -1171,40 +1090,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:43 GMT + - Fri, 15 Dec 2023 10:40:56 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "purchase_4a3a289e-23d0-4634-98a2-03891cb717c8", + null, "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "purchase_c299aa40-e68c-4680-9390-ba91946fbb9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:42 GMT + - Fri, 15 Dec 2023 10:40:55 GMT ms-cv: - - +GjTIHHGskKjPKQTeHsC0g.0 + - f/TSe9dUxE2lYvAadEFQPA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0/nSsZAAAAACUxhGC/nIWQ4xTYat/osFoWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0OC18ZQAAAABB4csGdCKtQ6Mbb+J/a3/+RE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 204ms + - 209ms status: code: 200 message: OK @@ -1219,40 +1139,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:45 GMT + - Fri, 15 Dec 2023 10:40:58 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "purchase_4a3a289e-23d0-4634-98a2-03891cb717c8", + null, "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "purchase_c299aa40-e68c-4680-9390-ba91946fbb9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:44 GMT + - Fri, 15 Dec 2023 10:40:58 GMT ms-cv: - - DgYyKgfu30qXxu6Kf8L11g.0 + - q4bPmI7IuEqz2DprPtPJVA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0AHWsZAAAAACGLWwV3QCoSKKOtmuNY8oMWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Oi18ZQAAAAAxfjqps4GSQas+qg/BIyMARE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 184ms + - 218ms status: code: 200 message: OK @@ -1267,40 +1188,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:47 GMT + - Fri, 15 Dec 2023 10:41:01 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "purchase_4a3a289e-23d0-4634-98a2-03891cb717c8", + null, "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "purchase_c299aa40-e68c-4680-9390-ba91946fbb9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:46 GMT + - Fri, 15 Dec 2023 10:41:00 GMT ms-cv: - - o7aoZFIA6EukPgBTItbciw.0 + - uPmTGGvy60q8vZQxw6bkZw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0A3WsZAAAAACujojxqap6RY3ONTlBDUJlWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0PS18ZQAAAAD/ImY4ytrjQbEp4rfL02/URE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 190ms + - 231ms status: code: 200 message: OK @@ -1315,40 +1237,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:50 GMT + - Fri, 15 Dec 2023 10:41:03 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "purchase_4a3a289e-23d0-4634-98a2-03891cb717c8", + null, "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "purchase_c299aa40-e68c-4680-9390-ba91946fbb9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:49 GMT + - Fri, 15 Dec 2023 10:41:03 GMT ms-cv: - - m3RLLY5UdUez6J45L91DHg.0 + - E2rU8QJ6sE2yco30rOjTew.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0BXWsZAAAAACSwQ4+DOBZSZdFL0v1HoQAWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Py18ZQAAAADRcMHvWsq7TaWStjL+Oao9RE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 205ms + - 219ms status: code: 200 message: OK @@ -1363,40 +1286,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:52 GMT + - Fri, 15 Dec 2023 10:41:06 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4a3a289e-23d0-4634-98a2-03891cb717c8?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_c299aa40-e68c-4680-9390-ba91946fbb9f?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:29.0040154+00:00", "id": "purchase_4a3a289e-23d0-4634-98a2-03891cb717c8", + null, "createdDateTime": "2023-12-15T10:40:42.9144209+00:00", "id": "purchase_c299aa40-e68c-4680-9390-ba91946fbb9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:51 GMT + - Fri, 15 Dec 2023 10:41:05 GMT ms-cv: - - /KVWwoeKpUqUrgMdq4BiKA.0 + - UkRKI0X3j0mxdo1OeY8L0w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0B3WsZAAAAAA2wUkYUAdzR466CduBQtBVWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Qi18ZQAAAADu4+niz9WrS787ugys9r0TRE9IMzBFREdFMDExNwA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 214ms + - 219ms status: code: 200 message: OK @@ -1416,11 +1340,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - ecyowPPqS6i2jEjg4ZPaHAki9yDR8IHa8lF+VXRefVM= x-ms-date: - - Mon, 10 Jul 2023 21:15:52 GMT + - Fri, 15 Dec 2023 10:41:06 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -1433,29 +1357,29 @@ 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, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:53 GMT + - Fri, 15 Dec 2023 10:41:08 GMT location: - - /availablePhoneNumbers/searchResults/d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 ms-cv: - - j6x35qiXNUq3YGiP0UBoug.0 + - duCOogUAvUO9A5OuHZMb0g.0 operation-id: - - search_d09f9769-e36a-42ae-89a2-38296f5cf05f + - search_d650cf7e-8a72-48d9-823c-acd9077febd3 operation-location: - - /phoneNumbers/operations/search_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + - /phoneNumbers/operations/search_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 search-id: - - d09f9769-e36a-42ae-89a2-38296f5cf05f + - d650cf7e-8a72-48d9-823c-acd9077febd3 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0CHWsZAAAAAAgzA8hQdFoS4s7AhNI8k1vWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Qi18ZQAAAAA2FQ6xgZePSKJi8Witi1K7SFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 1135ms + - 1450ms status: code: 202 message: Accepted @@ -1469,45 +1393,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:54 GMT + - Fri, 15 Dec 2023 10:41:09 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: - string: '{"operationType": "search", "status": "notStarted", "resourceLocation": - "/availablePhoneNumbers/searchResults/d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "search_d09f9769-e36a-42ae-89a2-38296f5cf05f", + string: '{"operationType": "search", "status": "running", "resourceLocation": + "/availablePhoneNumbers/searchResults/d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "search_d650cf7e-8a72-48d9-823c-acd9077febd3", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:53 GMT + - Fri, 15 Dec 2023 10:41:09 GMT location: - - /availablePhoneNumbers/searchResults/d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 ms-cv: - - rLbn1tQp00CAj0Q68+XHIA.0 + - B9Z0FRTqfEyyhhfxK7kgFQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0CXWsZAAAAAATh7Fb0UK9RI3CTQ5PAKX7WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0RS18ZQAAAAC91W7XDh8vQYluSohcc56sSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 281ms + - 238ms status: code: 200 message: OK @@ -1522,45 +1447,46 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:56 GMT + - Fri, 15 Dec 2023 10:41:11 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01", - "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "search_d09f9769-e36a-42ae-89a2-38296f5cf05f", + "/availablePhoneNumbers/searchResults/d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01", + "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "search_d650cf7e-8a72-48d9-823c-acd9077febd3", "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-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:56 GMT + - Fri, 15 Dec 2023 10:41:11 GMT location: - - /availablePhoneNumbers/searchResults/d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + - /availablePhoneNumbers/searchResults/d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 ms-cv: - - 8h4TiAiNHUSOS6xeVyNeXA.0 + - q3+ZcMYMPUeeyBxFJoSFhw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0C3WsZAAAAAAh4QZKbTOXSZJx6G8qIjwhWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ry18ZQAAAAADXH1JLRRtRKDRJ8Zde9A9SFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 252ms + - 218ms status: code: 200 message: OK @@ -1575,48 +1501,48 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:57 GMT + - Fri, 15 Dec 2023 10:41:12 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: - string: '{"searchId": "d09f9769-e36a-42ae-89a2-38296f5cf05f", "phoneNumbers": - ["+18552466929"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "d650cf7e-8a72-48d9-823c-acd9077febd3", "phoneNumbers": + ["+18334231721"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2023-07-10T21:31:55.0178802+00:00", "error": "NoError"}' + "2023-12-15T10:57:10.8289017+00:00", "error": "NoError"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '372' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:56 GMT + - Fri, 15 Dec 2023 10:41:12 GMT ms-cv: - - KXfPWumezUCl6/lIBa3MOw.0 + - AU7wFatn3U6nwK3R31DccQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DHWsZAAAAAAZjuBJHam2QIwyBGT+p7P3WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0SC18ZQAAAABQqydL3k4uRZP82TtZ1FNDSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 385ms + - 425ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "d09f9769-e36a-42ae-89a2-38296f5cf05f"}' + body: '{"searchId": "d650cf7e-8a72-48d9-823c-acd9077febd3"}' headers: Accept: - application/json @@ -1629,11 +1555,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - EjehDJnmtD147WFHwN6hKxx3kCGOwdkmEKWdbn0n+dk= + - 6tHPsi8MjDtArCWOLHjgGymR1C17nLkNESbPxH0Cx/c= x-ms-date: - - Mon, 10 Jul 2023 21:15:57 GMT + - Fri, 15 Dec 2023 10:41:13 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -1646,27 +1572,27 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01, 2022-12-02-preview2, - 2023-05-01-preview + 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, 2024-03-01 content-length: - '0' date: - - Mon, 10 Jul 2023 21:15:57 GMT + - Fri, 15 Dec 2023 10:41:13 GMT ms-cv: - - Wiloin5SZ0uLh9IN8GqLuA.0 + - KD/Djj7W7UOW8VenQuM9eA.0 operation-id: - - purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f + - purchase_d650cf7e-8a72-48d9-823c-acd9077febd3 operation-location: - - /phoneNumbers/operations/purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + - /phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 purchase-id: - - d09f9769-e36a-42ae-89a2-38296f5cf05f + - d650cf7e-8a72-48d9-823c-acd9077febd3 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0DHWsZAAAAAAspY2MlQjuRJTprQerhoRcWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0SC18ZQAAAABfLo0tJinaSbx/KfdxxmzhSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 767ms + - 934ms status: code: 202 message: Accepted @@ -1680,40 +1606,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:15:58 GMT + - Fri, 15 Dec 2023 10:41:14 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "running", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f", + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:15:57 GMT + - Fri, 15 Dec 2023 10:41:14 GMT ms-cv: - - iUiVnaDwbkmbiDUUi4LO2g.0 + - qYx18+Jr0kKgpGymtnx+wQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0DXWsZAAAAABA4d04EMifSLrlM4xFjv9qWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Si18ZQAAAAAlBjNyCVfeTqjZAV0b+aX/SFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 243ms + - 225ms status: code: 200 message: OK @@ -1728,40 +1655,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:00 GMT + - Fri, 15 Dec 2023 10:41:16 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f", + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:00 GMT + - Fri, 15 Dec 2023 10:41:16 GMT ms-cv: - - mhFNp+QBCkKleaBd9iIv/w.0 + - 0YfGUF15SkykZ+xbTm081Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0EHWsZAAAAACIljn173woT4/oYQ8vvLkhWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0TC18ZQAAAAAqoMv/xZ8LS6BWjbpp33JOSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 264ms + - 256ms status: code: 200 message: OK @@ -1776,40 +1704,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:03 GMT + - Fri, 15 Dec 2023 10:41:19 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f", + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:02 GMT + - Fri, 15 Dec 2023 10:41:19 GMT ms-cv: - - R/0V7AY+1U+mL0CFXaWZgg.0 + - C0y171oq5Eq+Ibscd7V/PQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0EnWsZAAAAACVUjuYtvK5SL2rKgFEjZh/WVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Ty18ZQAAAAC+JAyh9QBMSr4QSbXLUkzbSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 261ms + - 236ms status: code: 200 message: OK @@ -1824,40 +1753,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:05 GMT + - Fri, 15 Dec 2023 10:41:21 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f", + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:04 GMT + - Fri, 15 Dec 2023 10:41:21 GMT ms-cv: - - 5gcKjRPtukm1dWjczukviw.0 + - q68P+Z5xDEihWNW2ZiOfKw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0FHWsZAAAAAAjeEqxlMO7RZtvI4kq1y/lWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0US18ZQAAAAAbCf4cCtshSaky4LrmQ5gySFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 245ms + - 223ms status: code: 200 message: OK @@ -1872,40 +1802,188 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:07 GMT + - Fri, 15 Dec 2023 10:41:24 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f", + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:07 GMT + - Fri, 15 Dec 2023 10:41:24 GMT ms-cv: - - QyJR3G6ArUWK8c7NWOMGUQ.0 + - ooF0hW4+okOSqW5LF+tS1A.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0F3WsZAAAAACjQGJAxFXAQ5p+zDN/EI7KWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0VC18ZQAAAACFTVBxN9ZnTbPKrwP4btoYSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 236ms + - 239ms + status: + code: 200 + message: OK + url: sanitized +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Fri, 15 Dec 2023 10:41:26 GMT + x-ms-return-client-request-id: + - 'true' + method: GET + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 + response: + body: + string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", + "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' + headers: + api-supported-versions: + - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Dec 2023 10:41:26 GMT + ms-cv: + - J3MvQr66xkG2ZaFwRWAaBQ.0 + strict-transport-security: + - max-age=2592000 + transfer-encoding: + - chunked + x-azure-ref: + - 0Vi18ZQAAAADusBOkj/TYSZijt/vzk7fOSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= + x-cache: + - CONFIG_NOCACHE + x-processing-time: + - 219ms + status: + code: 200 + message: OK + url: sanitized +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Fri, 15 Dec 2023 10:41:29 GMT + x-ms-return-client-request-id: + - 'true' + method: GET + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 + response: + body: + string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", + "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' + headers: + api-supported-versions: + - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Dec 2023 10:41:29 GMT + ms-cv: + - 4Uymd8oEf0KsCtzBst9kjA.0 + strict-transport-security: + - max-age=2592000 + transfer-encoding: + - chunked + x-azure-ref: + - 0WS18ZQAAAABSRKc3c7PySrSrbuuRw6jlSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= + x-cache: + - CONFIG_NOCACHE + x-processing-time: + - 212ms + status: + code: 200 + message: OK + url: sanitized +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) + x-ms-content-sha256: + - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= + x-ms-date: + - Fri, 15 Dec 2023 10:41:31 GMT + x-ms-return-client-request-id: + - 'true' + method: GET + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 + response: + body: + string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", + "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' + headers: + api-supported-versions: + - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 + content-type: + - application/json; charset=utf-8 + date: + - Fri, 15 Dec 2023 10:41:31 GMT + ms-cv: + - HPGF6pDS90y9zjKNM5WLxw.0 + strict-transport-security: + - max-age=2592000 + transfer-encoding: + - chunked + x-azure-ref: + - 0Wy18ZQAAAADsE78t+fNgQIqByGC4qKd2SFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= + x-cache: + - CONFIG_NOCACHE + x-processing-time: + - 254ms status: code: 200 message: OK @@ -1920,40 +1998,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:10 GMT + - Fri, 15 Dec 2023 10:41:34 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f", + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:09 GMT + - Fri, 15 Dec 2023 10:41:34 GMT ms-cv: - - GlL5XhdHEEe9Myf85gTGBw.0 + - ZUSpTlu3OUuA28LSj84jgA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0GXWsZAAAAADIiPhVO6RzR4tGHPiTOV+PWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Xi18ZQAAAAAJJ3nqAHRMTojv7OKWeGm2SFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 217ms + - 229ms status: code: 200 message: OK @@ -1968,40 +2047,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:12 GMT + - Fri, 15 Dec 2023 10:41:36 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "notStarted", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f", + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:11 GMT + - Fri, 15 Dec 2023 10:41:36 GMT ms-cv: - - A3749ke+P0mgnMIq+QYo/g.0 + - QXLcUGkSVEaWbJJ9e1610Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0G3WsZAAAAAD02VTmoj9lQZsdTvuB9FdTWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0YC18ZQAAAAB18PmcSYvyTIC5ZeNe8UvuSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 243ms + - 241ms status: code: 200 message: OK @@ -2016,40 +2096,41 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-phonenumbers/1.1.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:16:14 GMT + - Fri, 15 Dec 2023 10:41:39 GMT x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f?api-version=2022-12-01 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d650cf7e-8a72-48d9-823c-acd9077febd3?api-version=2022-12-01 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2023-07-10T21:15:53.265181+00:00", "id": "purchase_d09f9769-e36a-42ae-89a2-38296f5cf05f", + null, "createdDateTime": "2023-12-15T10:41:08.7724333+00:00", "id": "purchase_d650cf7e-8a72-48d9-823c-acd9077febd3", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-11-15-preview, 2022-12-01, - 2022-12-02-preview2, 2023-05-01-preview + 2022-12-02-preview2, 2023-05-01-preview, 2023-10-01-preview, 2024-01-31-preview, + 2024-03-01 content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:14 GMT + - Fri, 15 Dec 2023 10:41:39 GMT ms-cv: - - zHacJWR6b0KK+Fy5iqU3nA.0 + - pNQmbYoJQ0yJt1Yc0BUg8g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0HnWsZAAAAACPcEV1VjEWQ6/pZmBqgG2mWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0Yy18ZQAAAADBcg9Eo/JJTpVYJnbnntkeSFlEMzBFREdFMDQxNgA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 281ms + - 229ms status: code: 200 message: OK @@ -2071,11 +2152,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 10 Jul 2023 21:16:15 GMT + - Fri, 15 Dec 2023 10:41:40 GMT User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-sms/1.0.1 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-sms/1.0.1 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - 5AmP/TZgHTMqh4vxiZpmRh0qADbjSkEQ9mU7+NRv7zw= + - HAy1rXoYbT+g0CPzP1KY4pFjwB7AIRjRQ6UykcpR9R0= x-ms-return-client-request-id: - 'true' method: POST @@ -2089,22 +2170,22 @@ interactions: headers: api-supported-versions: - 2020-07-20-preview1, 2020-08-20-preview, 2021-03-07, 2023-06-30-privatepreview - content-length: - - '261' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:16:14 GMT + - Fri, 15 Dec 2023 10:41:40 GMT ms-cv: - - RCxFP0VcKEaDmdQEZqoYew.0 + - N2Rgd4RCKUuL1ayX9OFFOQ.0 strict-transport-security: - max-age=2592000 + transfer-encoding: + - chunked x-azure-ref: - - 0HnWsZAAAAADUjOf0RFG8R4FL/qz2tS6eWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ZC18ZQAAAADU9KZ+nhbSSI/YLXv3Ji+jRE9IMzBFREdFMDEwOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 237ms + - 730ms 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 e84996e2bc3..2e04f34203c 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '35' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - RgFKX8sq6gKDc377EdeILf3jgzCijxLOR8s04qluHkc= + - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Mon, 10 Jul 2023 21:09:54 GMT + - Fri, 15 Dec 2023 10:43:23 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T21:09:54.4022829+00:00"}}' + "expiresOn": "2023-12-16T10:43:24.4152455+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:09:53 GMT + - Fri, 15 Dec 2023 10:43:24 GMT ms-cv: - - ZEXO7JWio0qCk82eQLhSnQ.0 + - dKqY5WqZk02xhDe/lwX/oQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0onOsZAAAAABN5hOvlRstSLaqm7iVwyA9WVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0yy18ZQAAAADpfWuZzwVoQp5kfjgtimn2SFlEMzBFREdFMDYxOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 108ms + - 27ms 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 df5be9ca714..f7828c00fc1 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,45 +13,45 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.3.1 Python/3.10.11 (Windows-10-10.0.22621-SP0) + - azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Mon, 10 Jul 2023 21:10:44 GMT + - Fri, 15 Dec 2023 10:42:22 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}}' 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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:10:43 GMT + - Fri, 15 Dec 2023 10:42:22 GMT ms-cv: - - skDcwaAlAUGAJcY+J+tsXQ.0 + - r650arAU4Eev149tCyxS4g.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 003OsZAAAAABD28CoTKgtSbkr/0EIqbh1WVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ji18ZQAAAADkP9Eyp0fUSLVajm9w0EvaRE9IMzBFREdFMDExOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 105ms + - 88ms status: code: 201 message: Created - request: - body: '{"scopes": ["chat"], "expiresInMinutes": null}' + body: '{"scopes": ["chat"]}' headers: Accept: - application/json @@ -60,45 +60,44 @@ interactions: Connection: - keep-alive Content-Length: - - '46' + - '20' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - nhFAfqVNNvGtmqZXLZeMFVwYcIW0NuuEF0d+D1dlKIY= + - sZHRO4JkAmw3HcI1PyxrC5twHvkHIWjyMLVIkauXKRA= x-ms-date: - - Mon, 10 Jul 2023 21:10:44 GMT + - Fri, 15 Dec 2023 10:42:23 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2023-10-01 response: body: - string: '{"token": "sanitized", "expiresOn": "2023-07-11T21:10:44.2179445+00:00"}' + string: '{"token": "sanitized", "expiresOn": "2023-12-16T10:42:23.8124303+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - '72' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:10:44 GMT + - Fri, 15 Dec 2023 10:42:23 GMT ms-cv: - - 8TfxCXp4j0q5uBsSVIEycA.0 + - H1aTLBglJ0Cn4LN8920vHQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 01HOsZAAAAABRLKfowZCSTZXVrAXMTejTWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0jy18ZQAAAACv3tKCk3gDSrcxkiYQVBHsSFlEMzBFREdFMDQxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 168ms + - 23ms 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 77421c0a57a..cd8864fdd03 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 @@ -1,6 +1,6 @@ interactions: - request: - body: '{"createTokenWithScopes": ["voip", "chat"], "expiresInMinutes": null}' + body: '{"createTokenWithScopes": ["voip", "chat"]}' headers: Accept: - application/json @@ -9,46 +9,45 @@ interactions: Connection: - keep-alive Content-Length: - - '69' + - '43' Content-Type: - application/json User-Agent: - - AzureCli/1.7.0b1 azsdk-python-communication-identity/1.3.1 Python/3.10.11 - (Windows-10-10.0.22621-SP0) + - AzureCli/1.8.1 azsdk-python-communication-identity/1.4.0 Python/3.10.11 (Windows-10-10.0.19045-SP0) x-ms-content-sha256: - - bGEykS6j4LLQpzjUOVC1uFnHwPRFp+8rGOt50FB/Z78= + - hlYiA5kT1yt3LwEdaupQDHzQEfodx+8svsStB5uolgw= x-ms-date: - - Mon, 10 Jul 2023 21:11:17 GMT + - Fri, 15 Dec 2023 10:42:27 GMT x-ms-return-client-request-id: - 'true' method: POST - uri: https://sanitized.communication.azure.com/identities?api-version=2022-10-01 + uri: https://sanitized.communication.azure.com/identities?api-version=2023-10-01 response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2023-07-11T21:11:17.0783906+00:00"}}' + "expiresOn": "2023-12-16T10:42:28.297879+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, 2022-10-01, 2023-08-01 + 2021-11-01, 2022-06-01, 2022-10-01, 2023-10-01 content-length: - - '122' + - '121' content-type: - application/json; charset=utf-8 date: - - Mon, 10 Jul 2023 21:11:17 GMT + - Fri, 15 Dec 2023 10:42:28 GMT ms-cv: - - N2fgGf3bRUGL4l5viQjIrA.0 + - I3iFq7guaUatPul6nLAywQ.2.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 09HOsZAAAAADdrJX2q3kWSLJ+jBh5+LUdWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0ky18ZQAAAACKZGlYwpvfSqhhp+W+ZZ+CSFlEMzBFREdFMDYxMAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= x-cache: - CONFIG_NOCACHE x-processing-time: - - 106ms + - 24ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/test_communication_chat_scenario.py b/src/communication/azext_communication/tests/latest/test_communication_chat_scenario.py index 8a219de71e1..eebabd88244 100644 --- a/src/communication/azext_communication/tests/latest/test_communication_chat_scenario.py +++ b/src/communication/azext_communication/tests/latest/test_communication_chat_scenario.py @@ -10,6 +10,7 @@ from .recording_processors import URIIdentityReplacer, BodyReplacerProcessor from .preparers import CommunicationResourcePreparer + class CommunicationChatScenarios(ScenarioTest): def __init__(self, method_name): @@ -17,39 +18,36 @@ def __init__(self, method_name): URIIdentityReplacer(), BodyReplacerProcessor(keys=["id", "token", "rawId"]), ]) - - + def __create_thread(self, topic): self.kwargs.update({ - 'topic': topic }) + 'topic': topic}) return self.cmd('az communication chat thread create --topic \"{topic}\"').get_output_in_json() - def __create_user(self, communication_resource_info): connection_str = communication_resource_info[1] if self.is_live or self.in_recording: - self.kwargs.update({ 'connection_string': connection_str}) + self.kwargs.update({'connection_string': connection_str}) else: os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = connection_str res = self.cmd('az communication user-identity token issue --scope chat').get_output_in_json() return res['user_id'] - def __get_endpoint_from_resource_info(self, communication_resource_info): return communication_resource_info[2] def __get_or_create_token(self, communication_resource_info): if self.is_live or self.in_recording: os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - self.kwargs.update({ 'connection_string': communication_resource_info[1] }) + self.kwargs.update({'connection_string': communication_resource_info[1]}) res = self.cmd('az communication user-identity token issue --scope chat').get_output_in_json() return res['token'] else: - # header is encoded form of + # header is encoded form of # {"alg":"sanitized","kid":"1","x5t":"sanitized","typ":"sanitized"} header = 'eyJhbGciOiJzYW5pdGl6ZWQiLCJraWQiOiIxIiwieDV0Ijoic2FuaXRpemVkIiwidHlwIjoic2FuaXRpemVkIn0=' - # payload is encoded form of + # payload is encoded form of # {"skypeid":"acs:sanitized","scp":1792,"csi":"1657788332","exp":1657874732,"acsScope":"chat","resourceId":"sanitized","iat":1657788332} payload = 'eyJza3lwZWlkIjoiYWNzOnNhbml0aXplZCIsInNjcCI6MTc5MiwiY3NpIjoiMTY1Nzc4ODMzMiIsImV4cCI6MTY1Nzg3NDczMiwiYWNzU2NvcGUiOiJjaGF0IiwicmVzb3VyY2VJZCI6InNhbml0aXplZCIsImlhdCI6MTY1Nzc4ODMzMn0=' @@ -57,7 +55,6 @@ def __get_or_create_token(self, communication_resource_info): return '{header}.{payload}.{signature}'.format(header=header, payload=payload, signature=signature) - def __update_environ(self, communication_resource_info): endpoint = self.__get_endpoint_from_resource_info(communication_resource_info) os.environ['AZURE_COMMUNICATION_ENDPOINT'] = endpoint @@ -73,7 +70,6 @@ def test_chat_list_threads_with_env_auth(self, communication_resource_info): self.__update_environ(communication_resource_info) threads = self.cmd('az communication chat thread list').get_output_in_json() assert len(threads) == 0 - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -81,16 +77,15 @@ def test_chat_list_threads_with_cmdline_auth(self, communication_resource_info): endpoint, token = self.__update_environ(communication_resource_info) self.kwargs.update({ 'access_token': token, - 'endpoint': endpoint }) + 'endpoint': endpoint}) threads = self.cmd('az communication chat thread list --endpoint \"{endpoint}\" --access-token \"{access_token}\"').get_output_in_json() assert len(threads) == 0 - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_list_threads_no_endpoint(self, communication_resource_info): from azure.cli.core.azclierror import RequiredArgumentMissingError - + token = self.__get_or_create_token(communication_resource_info) os.environ['AZURE_COMMUNICATION_ACCESS_TOKEN'] = token @@ -103,21 +98,19 @@ def test_chat_list_threads_no_endpoint(self, communication_resource_info): assert '--endpoint' in str(raises.exception) assert 'AZURE_COMMUNICATION_ENDPOINT' in str(raises.exception) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_create_thread(self, communication_resource_info): self.__update_environ(communication_resource_info) - + checkValue = [] chat_topic = 'some-topic' self.kwargs.update({ - 'topic': chat_topic }) - self.cmd('az communication chat thread create --topic \"{topic}\"', checks = [ - self.check("errors", None), + 'topic': chat_topic}) + self.cmd('az communication chat thread create --topic \"{topic}\"', checks=[ + self.check("errors", checkValue), self.check("chatThread.topic", chat_topic), ]) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_create_thread_without_topic(self, communication_resource_info): @@ -127,7 +120,6 @@ def test_chat_create_thread_without_topic(self, communication_resource_info): self.cmd('az communication chat thread create').get_output_in_json() assert raises.exception.code == 2 - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_delete_thread(self, communication_resource_info): @@ -135,13 +127,12 @@ def test_chat_delete_thread(self, communication_resource_info): chat_topic = 'some-topic' self.kwargs.update({ - 'topic': chat_topic }) + 'topic': chat_topic}) res = self.__create_thread(chat_topic) thread_id = res['chatThread']['id'] - - self.kwargs.update({ 'thread_id': thread_id }) - self.cmd('az communication chat thread delete --thread {thread_id} --yes') + self.kwargs.update({'thread_id': thread_id}) + self.cmd('az communication chat thread delete --thread {thread_id} --yes') @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -150,16 +141,15 @@ def test_chat_list_participants(self, communication_resource_info): chat_topic = 'some-topic' self.kwargs.update({ - 'topic': chat_topic }) + 'topic': chat_topic}) thread = self.cmd('az communication chat thread create --topic \"{topic}\"').get_output_in_json() thread_id = thread['chatThread']['id'] self.kwargs.update({ - 'thread_id': thread_id }) + 'thread_id': thread_id}) participants = self.cmd('az communication chat participant list --thread {thread_id}').get_output_in_json() assert len(participants) == 1 assert participants[0]['shareHistoryTime'] == '1970-01-01T00:00:00+00:00' - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_list_participants_bad_thread_id(self, communication_resource_info): @@ -169,13 +159,12 @@ def test_chat_list_participants_bad_thread_id(self, communication_resource_info) thread_id = 'sanitized' self.kwargs.update({ - 'thread_id': thread_id }) + 'thread_id': thread_id}) with self.assertRaises(ResourceNotFoundError) as raises: self.cmd('az communication chat participant list --thread {thread_id}') assert 'Not Found' in str(raises.exception) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_add_participant(self, communication_resource_info): @@ -185,7 +174,7 @@ def test_chat_add_participant(self, communication_resource_info): # create a new thread self.kwargs.update({ - 'topic': "chat-topic" }) + 'topic': "chat-topic"}) thread = self.cmd('az communication chat thread create --topic \"{topic}\"').get_output_in_json() thread_id = thread['chatThread']['id'] @@ -194,13 +183,12 @@ def test_chat_add_participant(self, communication_resource_info): self.kwargs.update({ 'thread_id': thread_id, 'user_id': user_id, - 'access_token': token }) + 'access_token': token}) add_res = self.cmd('az communication chat participant add --thread {thread_id} --user {user_id}').get_output_in_json() assert len(add_res) == 0 - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_add_participant_bad_user(self, communication_resource_info): @@ -208,7 +196,7 @@ def test_chat_add_participant_bad_user(self, communication_resource_info): # create a new thread self.kwargs.update({ - 'topic': "chat-topic" }) + 'topic': "chat-topic"}) thread = self.cmd('az communication chat thread create --topic \"{topic}\"').get_output_in_json() thread_id = thread['chatThread']['id'] @@ -217,25 +205,24 @@ def test_chat_add_participant_bad_user(self, communication_resource_info): self.kwargs.update({ 'thread_id': thread_id, 'user_id': user_id, - 'access_token': token }) + 'access_token': token}) - add_res = self.cmd('az communication chat participant add --thread {thread_id} --user {user_id}', checks = [ + add_res = self.cmd('az communication chat participant add --thread {thread_id} --user {user_id}', checks=[ self.check('[0].code', '403'), self.check('[0].message', 'Permissions check failed'), - self.check('[0].target', user_id) ]).get_output_in_json() - + self.check('[0].target', user_id)]).get_output_in_json() + assert len(add_res) == 1 # add invalid user id to the chat thread self.kwargs.update({ - 'user_id': '8:acs:fakeid===' }) + 'user_id': '8:acs:fakeid==='}) with self.assertRaises(HttpResponseError) as raises: self.cmd('az communication chat participant add --thread {thread_id} --user {user_id}') assert 'Identifier format is invalid' in str(raises.exception) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_remove_participants(self, communication_resource_info): @@ -251,26 +238,26 @@ def test_chat_remove_participants(self, communication_resource_info): # add the new user to the chat thread self.kwargs.update({ 'thread_id': thread_id, - 'user_id': user_id }) + 'user_id': user_id}) add_res = self.cmd('az communication chat participant add --thread {thread_id} --user {user_id}').get_output_in_json() assert len(add_res) == 0 # remove the new user from the chat thread - self.cmd('az communication chat participant remove --thread {thread_id} --user {user_id} --yes') + self.cmd('az communication chat participant remove --thread {thread_id} --user {user_id} --yes') # try to remove a user with invalid id self.kwargs.update({ - 'user_id': '8:acs:fakeid' }) + 'user_id': '8:acs:fakeid'}) with self.assertRaises(HttpResponseError) as raises: - self.cmd('az communication chat participant remove --thread {thread_id} --user {user_id} --yes') + self.cmd('az communication chat participant remove --thread {thread_id} --user {user_id} --yes') assert 'Identifier format is invalid' in str(raises.exception) # remove the original user from the chat thread self.kwargs.update({ - 'user_id': owner_id }) + 'user_id': owner_id}) self.cmd('az communication chat participant remove --thread {thread_id} --user {user_id} --yes') # try to remove the original user again, should raise an error @@ -279,7 +266,6 @@ def test_chat_remove_participants(self, communication_resource_info): assert 'The initiator doesn\'t have the permission to perform the requested operation.' in str(raises.exception) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_add_participant_with_display_name(self, communication_resource_info): @@ -296,11 +282,10 @@ def test_chat_add_participant_with_display_name(self, communication_resource_inf self.kwargs.update({ 'thread_id': thread_id, 'user_id': user_id, - 'display_name': display_name }) + 'display_name': display_name}) add_res = self.cmd('az communication chat participant add --thread {thread_id} --user {user_id} --display-name {display_name}').get_output_in_json() assert len(add_res) == 0 - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_add_participant_with_history_time(self, communication_resource_info): @@ -321,7 +306,6 @@ def test_chat_add_participant_with_history_time(self, communication_resource_inf add_res = self.cmd('az communication chat participant add --thread {thread_id} --user {user_id} --start-time {start_time}').get_output_in_json() assert len(add_res) == 0 - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_list_messages(self, communication_resource_info): @@ -332,11 +316,10 @@ def test_chat_list_messages(self, communication_resource_info): thread_id = thread['chatThread']['id'] self.kwargs.update({ - 'thread_id': thread_id }) + 'thread_id': thread_id}) messages = self.cmd('az communication chat message list --thread {thread_id}').get_output_in_json() assert len(messages) > 0 - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_list_messages(self, communication_resource_info): @@ -349,11 +332,10 @@ def test_chat_list_messages(self, communication_resource_info): start_time = '2022-01-01T00:00:00' self.kwargs.update({ 'thread_id': thread_id, - 'start_time': start_time }) + 'start_time': start_time}) messages = self.cmd('az communication chat message list --thread {thread_id} --start-time {start_time}').get_output_in_json() assert len(messages) > 0 - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_send_message(self, communication_resource_info): @@ -366,10 +348,9 @@ def test_chat_send_message(self, communication_resource_info): content = '\"Hello!\"' self.kwargs.update({ 'thread_id': thread_id, - 'content': content }) + 'content': content}) message = self.cmd('az communication chat message send --thread {thread_id} --content {content}').get_output_in_json() assert message['id'] is not None - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -381,7 +362,7 @@ def test_chat_send_message_without_content(self, communication_resource_info): thread_id = thread['chatThread']['id'] self.kwargs.update({ - 'thread_id': thread_id }) + 'thread_id': thread_id}) with self.assertRaises(SystemExit) as raises: self.cmd('az communication chat message send --thread {thread_id}').get_output_in_json() assert raises.exception.code == 2 @@ -398,11 +379,10 @@ def test_chat_send_text_message(self, communication_resource_info): content = '\"Hello!\"' self.kwargs.update({ 'thread_id': thread_id, - 'content': content }) + 'content': content}) message = self.cmd('az communication chat message send --thread {thread_id} --content {content} --message-type text').get_output_in_json() assert message['id'] is not None - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_send_html_message(self, communication_resource_info): @@ -415,11 +395,10 @@ def test_chat_send_html_message(self, communication_resource_info): content = '
hello!
' self.kwargs.update({ 'thread_id': thread_id, - 'content': content }) + 'content': content}) message = self.cmd('az communication chat message send --thread {thread_id} --content {content} --message-type html').get_output_in_json() assert message['id'] is not None - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_get_message(self, communication_resource_info): @@ -432,15 +411,14 @@ def test_chat_get_message(self, communication_resource_info): content = 'hello!' self.kwargs.update({ 'thread_id': thread_id, - 'content': content }) + 'content': content}) sent_message = self.cmd('az communication chat message send --thread {thread_id} --content {content} --message-type html').get_output_in_json() self.kwargs.update({ - 'message_id': sent_message['id'] }) + 'message_id': sent_message['id']}) message = self.cmd('az communication chat message get --thread {thread_id} --message-id {message_id}').get_output_in_json() assert message['content']['message'] == content - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_chat_update_message(self, communication_resource_info): @@ -454,16 +432,15 @@ def test_chat_update_message(self, communication_resource_info): content = '\"Hello!\"' self.kwargs.update({ 'thread_id': thread_id, - 'content': content }) + 'content': content}) message = self.cmd('az communication chat message send --thread {thread_id} --content {content}').get_output_in_json() # and update it new_content = '\"Hello there!\"' self.kwargs.update({ 'content': new_content, - 'message_id': message['id'] }) + 'message_id': message['id']}) self.cmd('az communication chat message update --thread {thread_id} --message-id {message_id} --content {content}') - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -478,27 +455,26 @@ def test_chat_delete_message(self, communication_resource_info): content = '\"Hello!\"' self.kwargs.update({ 'thread_id': thread_id, - 'content': content }) + 'content': content}) message = self.cmd('az communication chat message send --thread {thread_id} --content {content}').get_output_in_json() - + # check that the message is there, and it is not deleted self.kwargs.update({ - 'message_id': message['id'] }) - self.cmd('az communication chat message get --thread {thread_id} --message-id {message_id}', checks = [ + 'message_id': message['id']}) + self.cmd('az communication chat message get --thread {thread_id} --message-id {message_id}', checks=[ self.check('deletedOn', None) ]) # and delete it self.kwargs.update({ - 'message_id': message['id'] }) + 'message_id': message['id']}) self.cmd('az communication chat message delete --thread {thread_id} --message-id {message_id} --yes') - + # now, check that it is actually deleted self.kwargs.update({ - 'message_id': message['id'] }) + 'message_id': message['id']}) deletedMessage = self.cmd('az communication chat message get --thread {thread_id} --message-id {message_id}').get_output_in_json() assert deletedMessage['deletedOn'] is not None - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -513,15 +489,14 @@ def test_chat_update_message(self, communication_resource_info): content = '\"Hello!\"' self.kwargs.update({ 'thread_id': thread_id, - 'content': content }) + 'content': content}) message = self.cmd('az communication chat message send --thread {thread_id} --content {content}').get_output_in_json() new_content = '\"Hello there!\"' self.kwargs.update({ 'content': new_content, - 'message_id': message['id'] }) + 'message_id': message['id']}) self.cmd('az communication chat message update --thread {thread_id} --message-id {message_id} --content {content}') - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -536,9 +511,8 @@ def test_chat_update_topic(self, communication_resource_info): new_topic = '\"new-topic!\"' self.kwargs.update({ 'thread_id': thread_id, - 'topic': new_topic }) + 'topic': new_topic}) self.cmd('az communication chat thread update-topic --thread {thread_id} --topic {topic}') - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -550,19 +524,16 @@ def test_chat_read_receipts(self, communication_resource_info): thread_id = thread['chatThread']['id'] self.kwargs.update({ - 'thread_id': thread_id }) + 'thread_id': thread_id}) receipts = self.cmd('az communication chat message receipt list --thread {thread_id}').get_output_in_json() assert len(receipts) == 0 - + messages = self.cmd('az communication chat message list --thread {thread_id}').get_output_in_json() message_id = messages[0]['id'] self.kwargs.update({ - 'message_id': message_id }) + 'message_id': message_id}) self.cmd('az communication chat message receipt send --thread {thread_id} --message-id {message_id}') receipts = self.cmd('az communication chat message receipt list --thread {thread_id}').get_output_in_json() assert len(receipts) == 1 - - - diff --git a/src/communication/azext_communication/tests/latest/test_communication_commands.py b/src/communication/azext_communication/tests/latest/test_communication_commands.py index 592e16079ff..aff36d6ef62 100644 --- a/src/communication/azext_communication/tests/latest/test_communication_commands.py +++ b/src/communication/azext_communication/tests/latest/test_communication_commands.py @@ -14,7 +14,6 @@ ) - class CommunicationClientTest(ScenarioTest): @ResourceGroupPreparer(name_prefix='cli_test_communication', location='eastus') def test_communication_identity(self): @@ -41,4 +40,3 @@ def test_communication_identity(self): self.cmd('communication identity remove -n {resource_name} -g {rg} --system-assigned', checks={ self.check('type', "UserAssigned") }) - diff --git a/src/communication/azext_communication/tests/latest/test_communication_phonenumber_scenario.py b/src/communication/azext_communication/tests/latest/test_communication_phonenumber_scenario.py index 8bcfd6fd0e2..954a9e0c5f6 100644 --- a/src/communication/azext_communication/tests/latest/test_communication_phonenumber_scenario.py +++ b/src/communication/azext_communication/tests/latest/test_communication_phonenumber_scenario.py @@ -18,11 +18,11 @@ class CommunicationPhonenumberScenarios(ScenarioTest): def __init__(self, method_name): - super().__init__(method_name, recording_processors=[ - URIIdentityReplacer(), - PhoneNumberResponseReplacerProcessor(), - BodyReplacerProcessor(keys=["id", "token", "phoneNumber"]) - ]) + super().__init__(method_name, recording_processors=[ + URIIdentityReplacer(), + PhoneNumberResponseReplacerProcessor(), + BodyReplacerProcessor(keys=["id", "token", "phoneNumber"]) + ]) @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -31,7 +31,7 @@ def test_list_phonenumbers(self, communication_resource_info): get_new_phonenumber(communication_resource_info[1]) os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + phonenumber_list = self.cmd( 'az communication phonenumbers list-phonenumbers').get_output_in_json() assert len(phonenumber_list) > 0 @@ -61,7 +61,7 @@ def test_phonenumber_list(self, communication_resource_info): get_new_phonenumber(communication_resource_info[1]) os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + phonenumber_list = self.cmd( 'az communication phonenumber list').get_output_in_json() assert len(phonenumber_list) > 0 diff --git a/src/communication/azext_communication/tests/latest/test_communication_rooms_scenario.py b/src/communication/azext_communication/tests/latest/test_communication_rooms_scenario.py index 36480f48d8a..8b4b44255be 100644 --- a/src/communication/azext_communication/tests/latest/test_communication_rooms_scenario.py +++ b/src/communication/azext_communication/tests/latest/test_communication_rooms_scenario.py @@ -12,6 +12,7 @@ from .recording_processors import URIIdentityReplacer, BodyReplacerProcessor from datetime import datetime, timedelta + class CommunicationRoomsScenarios(ScenarioTest): def __init__(self, method_name): @@ -20,11 +21,10 @@ def __init__(self, method_name): BodyReplacerProcessor(keys=["id", "rawId"]) ]) - def __create_user(self, communication_resource_info): connection_str = communication_resource_info[1] if self.is_live or self.in_recording: - self.kwargs.update({ 'connection_string': connection_str}) + self.kwargs.update({'connection_string': connection_str}) else: os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = connection_str @@ -33,50 +33,49 @@ def __create_user(self, communication_resource_info): return res['properties']['id'] # room management test - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] room = self.cmd('az communication rooms create').get_output_in_json() - + id = room['id'] assert len(id) > 0 - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') - + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create_with_participants_attributes(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + # create valid participants presenter_id = self.__create_user(communication_resource_info) - + self.kwargs.update({ 'presenter_id': presenter_id}) - + room = self.cmd('az communication rooms create --presenter-participants {presenter_id}').get_output_in_json() - + id = room['id'] assert len(id) > 0 - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create_with_invalid_participants_MRI(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + # create valid participants presenter_id = "acs:8-invalidMRI" self.kwargs.update({ 'presenter_id': presenter_id}) - + with self.assertRaises(HttpResponseError) as raises: self.cmd('az communication rooms create --presenter-participants {presenter_id}').get_output_in_json() - + assert 'Bad Request' in str(raises.exception.reason) - assert raises.exception.status_code == 400 + assert raises.exception.status_code == 400 assert 'Invalid format for communication identifier.' in str(raises.exception) - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create_with_valid_time_attributes(self, communication_resource_info): # sourcery skip: aware-datetime-for-utc @@ -84,63 +83,63 @@ def test_rooms_create_with_valid_time_attributes(self, communication_resource_in validFrom = (datetime.utcnow() + timedelta(minutes=60)).isoformat() validUntil = (datetime.utcnow() + timedelta(minutes=120)).isoformat() - - self.kwargs.update({ + + self.kwargs.update({ 'validFrom': validFrom, 'validUntil': validUntil}) - + room = self.cmd('az communication rooms create --valid-from {validFrom} --valid-until {validUntil}').get_output_in_json() id = room['id'] assert len(id) > 0 - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create_with_validUntil_Exceed_180days(self, communication_resource_info): # sourcery skip: aware-datetime-for-utc os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + validFrom = (datetime.utcnow() + timedelta(minutes=60)).isoformat() validUntil = (datetime.utcnow() + timedelta(days=200)).isoformat() - - self.kwargs.update({ + + self.kwargs.update({ 'validFrom': validFrom, 'validUntil': validUntil}) - + with self.assertRaises(HttpResponseError) as raises: self.cmd('az communication rooms create --valid-from {validFrom} --valid-until {validUntil}').get_output_in_json() assert 'Bad Request' in str(raises.exception.reason) - assert raises.exception.status_code == 400 + assert raises.exception.status_code == 400 assert 'The request could not be understood by the server due to malformed syntax.' in str(raises.exception) - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create_with_expired_validUntil(self, communication_resource_info): # sourcery skip: aware-datetime-for-utc os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + validFrom = (datetime.utcnow() + timedelta(minutes=60)).isoformat() validUntil = (datetime.utcnow() + timedelta(minutes=-120)).isoformat() - - self.kwargs.update({ + + self.kwargs.update({ 'validFrom': validFrom, 'validUntil': validUntil}) - + with self.assertRaises(HttpResponseError) as raises: - room = self.cmd('az communication rooms create --valid-from {validFrom} --valid-until {validUntil}').get_output_in_json() + self.cmd('az communication rooms create --valid-from {validFrom} --valid-until {validUntil}').get_output_in_json() assert 'Bad Request' in str(raises.exception.reason) - assert raises.exception.status_code == 400 + assert raises.exception.status_code == 400 assert 'The request could not be understood by the server due to malformed syntax.' in str(raises.exception) - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create_with_pstn_dial_out_enabled(self, communication_resource_info): # sourcery skip: aware-datetime-for-utc os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] pstnEnabled = True - self.kwargs.update({ + self.kwargs.update({ 'pstnEnabled': pstnEnabled}) room = self.cmd('az communication rooms create --pstn-dial-out-enabled {pstnEnabled}').get_output_in_json() @@ -148,9 +147,9 @@ def test_rooms_create_with_pstn_dial_out_enabled(self, communication_resource_in pstnEnabled = room['pstnDialOutEnabled'] assert len(id) > 0 assert pstnEnabled is True - + pstnEnabled = False - self.kwargs.update({ + self.kwargs.update({ 'pstnEnabled': pstnEnabled}) room = self.cmd('az communication rooms create --pstn-dial-out-enabled {pstnEnabled}').get_output_in_json() @@ -158,8 +157,8 @@ def test_rooms_create_with_pstn_dial_out_enabled(self, communication_resource_in pstnEnabled = room['pstnDialOutEnabled'] assert len(id) > 0 assert pstnEnabled is False - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create_with_valid_time_pstn_dial_out_attributes(self, communication_resource_info): # sourcery skip: aware-datetime-for-utc @@ -168,21 +167,21 @@ def test_rooms_create_with_valid_time_pstn_dial_out_attributes(self, communicati validFrom = (datetime.utcnow() + timedelta(minutes=60)).isoformat() validUntil = (datetime.utcnow() + timedelta(minutes=120)).isoformat() pstnEnabled = True - - self.kwargs.update({ + + self.kwargs.update({ 'validFrom': validFrom, 'validUntil': validUntil, 'pstnEnabled': pstnEnabled}) - + room = self.cmd('az communication rooms create --valid-from {validFrom} --valid-until {validUntil} --pstn-dial-out-enabled {pstnEnabled} ').get_output_in_json() id = room['id'] pstnEnabled = room['pstnDialOutEnabled'] - + assert len(id) > 0 assert pstnEnabled is True - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create_with_valid_participants_pstn_dial_out_attributes(self, communication_resource_info): # sourcery skip: aware-datetime-for-utc @@ -190,42 +189,42 @@ def test_rooms_create_with_valid_participants_pstn_dial_out_attributes(self, com presenter_id = self.__create_user(communication_resource_info) pstnEnabled = True - - self.kwargs.update({ + + self.kwargs.update({ 'pstnEnabled': pstnEnabled, 'presenter_id': presenter_id}) - + room = self.cmd('az communication rooms create --pstn-dial-out-enabled {pstnEnabled} --presenter-participants {presenter_id}').get_output_in_json() id = room['id'] pstnEnabled = room['pstnDialOutEnabled'] - + assert len(id) > 0 assert pstnEnabled is True - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_create_with_all_optional_attributes(self, communication_resource_info): # sourcery skip: aware-datetime-for-utc os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + validFrom = (datetime.utcnow() + timedelta(minutes=60)).isoformat() - validUntil = (datetime.utcnow() + timedelta(minutes=120)).isoformat() + validUntil = (datetime.utcnow() + timedelta(minutes=120)).isoformat() presenter_id = self.__create_user(communication_resource_info) pstnEnabled = True - - self.kwargs.update({ + + self.kwargs.update({ 'validFrom': validFrom, 'validUntil': validUntil, 'pstnEnabled': pstnEnabled, 'presenter_id': presenter_id}) - + room = self.cmd('az communication rooms create --valid-from {validFrom} --valid-until {validUntil} --pstn-dial-out-enabled {pstnEnabled} --presenter-participants {presenter_id}').get_output_in_json() - + id = room['id'] assert len(id) > 0 - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_get_with_valid_roomId(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] @@ -235,11 +234,11 @@ def test_rooms_get_with_valid_roomId(self, communication_resource_info): self.kwargs.update({ 'room_id': room['id']}) - get_room = self.cmd('az communication rooms get --room {room_id}').get_output_in_json() + get_room = self.cmd('az communication rooms get --room {room_id}').get_output_in_json() assert room['id'] == get_room['id'] - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_get_with_nonexisting_roomId(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] @@ -247,14 +246,14 @@ def test_rooms_get_with_nonexisting_roomId(self, communication_resource_info): NotExistingRoomId = "9949484443000000" self.kwargs.update({ 'room_id': NotExistingRoomId}) - + with self.assertRaises(HttpResponseError) as raises: - self.cmd('az communication rooms get --room {room_id}').get_output_in_json() + self.cmd('az communication rooms get --room {room_id}').get_output_in_json() - assert raises.exception.status_code == 404 + assert raises.exception.status_code == 404 assert '(NotFound) The server cannot find the requested resource.' in str(raises.exception) - - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_get_with_invalid_roomId(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] @@ -262,15 +261,15 @@ def test_rooms_get_with_invalid_roomId(self, communication_resource_info): invalidRoomId = "123-invalidId" self.kwargs.update({ 'room_id': invalidRoomId}) - + with self.assertRaises(HttpResponseError) as raises: - self.cmd('az communication rooms get --room {room_id}').get_output_in_json() + self.cmd('az communication rooms get --room {room_id}').get_output_in_json() assert 'Bad Request' in str(raises.exception.reason) - assert raises.exception.status_code == 400 + assert raises.exception.status_code == 400 assert 'Invalid room ID length.' in str(raises.exception) - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_delete(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] @@ -279,11 +278,10 @@ def test_rooms_delete(self, communication_resource_info): room = self.cmd('az communication rooms create').get_output_in_json() self.kwargs.update({ 'room_id': room['id']}) - + self.cmd('az communication rooms delete --room {room_id} --yes') - - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_delete_with_id_with_invalid_length(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] @@ -291,49 +289,49 @@ def test_rooms_delete_with_id_with_invalid_length(self, communication_resource_i # delete valid room with invalid room id self.kwargs.update({ 'room_id': 'f-1234567890'}) - + with self.assertRaises(HttpResponseError) as raises: - self.cmd('az communication rooms delete --room {room_id} --yes') + self.cmd('az communication rooms delete --room {room_id} --yes') assert 'Bad Request' in str(raises.exception.reason) - assert raises.exception.status_code == 400 + assert raises.exception.status_code == 400 assert 'Invalid room ID' in str(raises.exception) - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_update_valid_elapsed_time(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + # create a room first room = self.cmd('az communication rooms create').get_output_in_json() # update the room with valid elapsed time validFrom = (datetime.utcnow() + timedelta(minutes=60)).isoformat() validUntil = (datetime.utcnow() + timedelta(minutes=120)).isoformat() - + self.kwargs.update({ 'room_id': room['id'], 'validFrom': validFrom, 'validUntil': validUntil}) - + updated_room = self.cmd('az communication rooms update --room {room_id} --valid-from {validFrom} --valid-until {validUntil}').get_output_in_json() assert room['id'] == updated_room['id'] assert room['validFrom'] != updated_room['validFrom'] assert room['validUntil'] != updated_room['validUntil'] - - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_update_expired_validUntil(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + # create a room first room = self.cmd('az communication rooms create').get_output_in_json() - # update the room with invalid elapsed time + # update the room with invalid elapsed time validFrom = '2022-11-22T19:14:59.829926+00:00' validUntil = '2022-11-23' - + self.kwargs.update({ 'room_id': room['id'], 'validFrom': validFrom, @@ -343,21 +341,21 @@ def test_rooms_update_expired_validUntil(self, communication_resource_info): self.cmd('az communication rooms update --room {room_id} --valid-from {validFrom} --valid-until {validUntil}') assert 'Bad Request' in str(raises.exception.reason) - assert raises.exception.status_code == 400 + assert raises.exception.status_code == 400 assert 'The time range end is in the past' in str(raises.exception.message) - - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_update_validUntil_Exceeds_180days(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + # create a room first room = self.cmd('az communication rooms create').get_output_in_json() - # update the room with invalid elapsed time + # update the room with invalid elapsed time validFrom = (datetime.utcnow() + timedelta(minutes=60)).isoformat() validUntil = (datetime.utcnow() + timedelta(days=200)).isoformat() - + self.kwargs.update({ 'room_id': room['id'], 'validFrom': validFrom, @@ -370,41 +368,41 @@ def test_rooms_update_validUntil_Exceeds_180days(self, communication_resource_in assert raises.exception.status_code == 400 assert 'The request could not be understood by the server due to malformed syntax.' in str(raises.exception) - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_update_pstn_dial_out_enabled(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + # create a room first room = self.cmd('az communication rooms create').get_output_in_json() # update the room with valid elapsed time pstnEnabled = True - + self.kwargs.update({ 'room_id': room['id'], 'pstnEnabled': pstnEnabled}) - + updated_room = self.cmd('az communication rooms update --room {room_id} --pstn-dial-out-enabled {pstnEnabled}').get_output_in_json() assert room['id'] == updated_room['id'] assert updated_room['pstnDialOutEnabled'] is True - + pstnEnabled = False self.kwargs.update({ 'room_id': room['id'], 'pstnEnabled': pstnEnabled}) - + updated_room = self.cmd('az communication rooms update --room {room_id} --pstn-dial-out-enabled {pstnEnabled}').get_output_in_json() assert room['id'] == updated_room['id'] assert updated_room['pstnDialOutEnabled'] is False - - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_update_valid_elapsed_time_pstn_dial_out_enabled(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - + # create a room first room = self.cmd('az communication rooms create').get_output_in_json() @@ -412,13 +410,13 @@ def test_rooms_update_valid_elapsed_time_pstn_dial_out_enabled(self, communicati validFrom = (datetime.utcnow() + timedelta(minutes=60)).isoformat() validUntil = (datetime.utcnow() + timedelta(minutes=120)).isoformat() pstnEnabled = True - + self.kwargs.update({ 'room_id': room['id'], 'validFrom': validFrom, 'validUntil': validUntil, 'pstnEnabled': pstnEnabled}) - + updated_room = self.cmd('az communication rooms update --room {room_id} --valid-from {validFrom} --valid-until {validUntil} --pstn-dial-out-enabled {pstnEnabled}').get_output_in_json() assert room['id'] == updated_room['id'] @@ -426,38 +424,36 @@ def test_rooms_update_valid_elapsed_time_pstn_dial_out_enabled(self, communicati assert room['validUntil'] != updated_room['validUntil'] assert room['pstnDialOutEnabled'] is False assert updated_room['pstnDialOutEnabled'] is True - - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_list(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - room = self.cmd('az communication rooms list').get_output_in_json() + self.cmd('az communication rooms list').get_output_in_json() - - #rooms participant management test - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + # rooms participant management test + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_get_default_participants(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - # create a new room + # create a new room room = self.cmd('az communication rooms create').get_output_in_json() - # get the default null participant from the newly created room + # get the default null participant from the newly created room self.kwargs.update({ 'room_id': room['id']}) get_participant = self.cmd('az communication rooms participant get --room {room_id}').get_output_in_json() - # verify the defualt participants is null + # verify the defualt participants is null assert len(get_participant) == 0 - - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_add_valid_presenter_participant(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - # create a new room + # create a new room room = self.cmd('az communication rooms create').get_output_in_json() # create a valid participant @@ -468,17 +464,16 @@ def test_rooms_add_valid_presenter_participant(self, communication_resource_info 'room_id': room['id'], 'participants_id': participant_id}) self.cmd('az communication rooms participant add-or-update --presenter-participants {participants_id} --room {room_id}') - + get_participant = self.cmd('az communication rooms participant get --room {room_id}').get_output_in_json() - + assert len(get_participant) == 1 role = get_participant[0]['role'] # verify the type of added participant assert role == 'Presenter' - - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_add_invalid_consumer_participant(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] @@ -486,14 +481,14 @@ def test_rooms_add_invalid_consumer_participant(self, communication_resource_inf # create a new room room = self.cmd('az communication rooms create').get_output_in_json() - # create a invalid participant + # create a invalid participant participant_id = '8:acs:123456c' # add invalid participant into the created room self.kwargs.update({ 'room_id': room['id'], 'participants_id': participant_id}) - + with self.assertRaises(Exception) as raises: self.cmd('az communication rooms participant add-or-update --consumer-participants {participants_id} --room {room_id}') @@ -501,33 +496,32 @@ def test_rooms_add_invalid_consumer_participant(self, communication_resource_inf assert raises.exception.status_code == 400 assert 'Invalid value for the Participants' in str(raises.exception) - - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_update_multiple_participants(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] - # create a new room + # create a new room room = self.cmd('az communication rooms create').get_output_in_json() # create valid participants presenter_id = self.__create_user(communication_resource_info) consumer_id = self.__create_user(communication_resource_info) - # add participants into created room + # add participants into created room self.kwargs.update({ 'room_id': room['id'], - 'presenter_id': presenter_id, + 'presenter_id': presenter_id, 'consumer_id': consumer_id}) - + self.cmd('az communication rooms participant add-or-update --presenter-participants {presenter_id} --consumer-participants {consumer_id} --room {room_id}') - + # get updated room properties participants = self.cmd('az communication rooms participant get --room {room_id}').get_output_in_json() # verify the length of participant - assert len(participants) == 2 - + assert len(participants) == 2 + presenter_role = participants[0]['role'] consumer_role = participants[1]['role'] @@ -535,8 +529,7 @@ def test_rooms_update_multiple_participants(self, communication_resource_info): assert presenter_role == 'Presenter' assert consumer_role == 'Consumer' - - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_delete_participants(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] @@ -547,20 +540,20 @@ def test_rooms_delete_participants(self, communication_resource_info): # create a valid participants participant_id = self.__create_user(communication_resource_info) - # add the participant into created room + # add the participant into created room self.kwargs.update({ 'room_id': room['id'], 'participant_id': participant_id}) self.cmd('az communication rooms participant add-or-update --consumer-participants {participant_id} --room {room_id}') - # remove the participant from the created room + # remove the participant from the created room self.cmd('az communication rooms participant remove --participants {participant_id} --room {room_id} --yes') participants = self.cmd('az communication rooms participant get --room {room_id}').get_output_in_json() # verify the participant list is empty - assert len(participants) == 0 + assert len(participants) == 0 - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_delete_participants_not_exist_in_room(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] @@ -571,22 +564,22 @@ def test_rooms_delete_participants_not_exist_in_room(self, communication_resourc # create a valid participants participant_id = self.__create_user(communication_resource_info) participant_id_not_exist = self.__create_user(communication_resource_info) - # add the participant into created room + # add the participant into created room self.kwargs.update({ 'room_id': room['id'], 'participant_id': participant_id, 'participant_id_not_exist': participant_id_not_exist, - }) + }) self.cmd('az communication rooms participant add-or-update --consumer-participants {participant_id} --room {room_id}') - # remove the participant who does not exist in the created room + # remove the participant who does not exist in the created room self.cmd('az communication rooms participant remove --participants {participant_id_not_exist} --room {room_id} --yes') participants = self.cmd('az communication rooms participant get --room {room_id}').get_output_in_json() # verify the participant list is 1 - assert len(participants) == 1 + assert len(participants) == 1 - @ResourceGroupPreparer(name_prefix ='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name ='rg') + @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_rooms_delete_participants_with_invalid_MRI(self, communication_resource_info): os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] @@ -594,14 +587,14 @@ def test_rooms_delete_participants_with_invalid_MRI(self, communication_resource # create a new room room = self.cmd('az communication rooms create').get_output_in_json() - # create a invalid participant + # create a invalid participant participant_id = '8:acs:123456c' # add invalid participant into the created room self.kwargs.update({ 'room_id': room['id'], 'participants_id': participant_id}) - + with self.assertRaises(Exception) as raises: self.cmd('az communication rooms participant remove --participants {participant_id} --room {room_id} --yes') diff --git a/src/communication/azext_communication/tests/latest/test_communication_scenario.py b/src/communication/azext_communication/tests/latest/test_communication_scenario.py index 589929aaac4..7e17e9c8e87 100644 --- a/src/communication/azext_communication/tests/latest/test_communication_scenario.py +++ b/src/communication/azext_communication/tests/latest/test_communication_scenario.py @@ -84,7 +84,7 @@ def __init__(self, *args, **kwargs): super(CommunicationScenarioTest, self).__init__(recording_processors=[ BodyReplacerProcessor(keys=["createdBy", "lastModifiedBy"]) ], *args, **kwargs) - + self.kwargs.update({ 'subscription_id': self.get_subscription_id() }) @@ -93,7 +93,6 @@ def __init__(self, *args, **kwargs): 'myCommunicationService': self.create_random_name(prefix='MyCommunicationResource'[:11], length=23), }) - @AllowLargeResponse() @ResourceGroupPreparer(name_prefix='clitestcommunication_MyOtherResourceGroup'[:7], key='rg_2', parameter_name='rg_2') @@ -102,4 +101,3 @@ def test_communication_scenario(self, rg_2, rg): call_scenario(self, rg_2, rg) calc_coverage(__file__) raise_if() - 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 17305920814..017c81819ea 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||||2023-07-10 21:06:22.860645|2023-07-10 21:07:56.381593| -|step_show|successed||||2023-07-10 21:07:56.382592|2023-07-10 21:07:56.766309| -|step_list|successed||||2023-07-10 21:07:56.767275|2023-07-10 21:07:57.304471| -|step_list2|successed||||2023-07-10 21:07:57.305466|2023-07-10 21:07:57.868557| -|step_update|successed||||2023-07-10 21:07:57.869553|2023-07-10 21:09:30.033645| -|step_link_notification_hub|successed||||2023-07-10 21:09:30.034639|2023-07-10 21:09:31.187467| -|step_list_key|successed||||2023-07-10 21:09:31.187467|2023-07-10 21:09:31.909665| -|step_regenerate_key|successed||||2023-07-10 21:09:31.909665|2023-07-10 21:09:32.593232| -|step_delete|successed||||2023-07-10 21:09:32.593232|2023-07-10 21:11:03.753233| +|step_create|successed||||2023-12-18 06:01:07.587560|2023-12-18 06:01:13.312002| +|step_show|successed||||2023-12-18 06:01:13.312002|2023-12-18 06:01:13.494998| +|step_list|successed||||2023-12-18 06:01:13.496000|2023-12-18 06:01:13.654651| +|step_list2|successed||||2023-12-18 06:01:13.655645|2023-12-18 06:01:13.814643| +|step_update|successed||||2023-12-18 06:01:13.814643|2023-12-18 06:01:18.537270| +|step_link_notification_hub|successed||||2023-12-18 06:01:18.537270|2023-12-18 06:01:18.703098| +|step_list_key|successed||||2023-12-18 06:01:18.703098|2023-12-18 06:01:18.866348| +|step_regenerate_key|successed||||2023-12-18 06:01:18.867347|2023-12-18 06:01:19.083979| +|step_delete|successed||||2023-12-18 06:01:19.083979|2023-12-18 06:01:24.385644| Coverage: 9/9 diff --git a/src/communication/azext_communication/tests/latest/test_communication_sms_scenarios.py b/src/communication/azext_communication/tests/latest/test_communication_sms_scenarios.py index b3694c1ca49..ef6d98c754f 100644 --- a/src/communication/azext_communication/tests/latest/test_communication_sms_scenarios.py +++ b/src/communication/azext_communication/tests/latest/test_communication_sms_scenarios.py @@ -14,6 +14,7 @@ from .recording_processors import BodyReplacerProcessor, URIIdentityReplacer, SMSResponseReplacerProcessor from .preparers import CommunicationResourcePreparer + class CommunicationSmsScenarios(ScenarioTest): def __init__(self, method_name): @@ -42,7 +43,7 @@ def test_send_sms(self, communication_resource_info): 'sender': sender, 'recipient': recipient}) - self.cmd('az communication sms send-sms --sender \"{sender}\" \ + self.cmd('az communication sms send --sender \"{sender}\" \ --recipient \"{recipient}\" --message "Hello there!!"', checks=[ self.check("[0].errorMessage", None), self.check("[0].httpStatusCode", "202"), @@ -73,7 +74,7 @@ def test_send_sms_n_recipients(self, communication_resource_info): 'recipient1': recipient1, 'recipient2': recipient2}) - self.cmd('az communication sms send-sms --sender \"{sender}\" \ + self.cmd('az communication sms send --sender \"{sender}\" \ --recipient \"{recipient1}\" \"{recipient2}\" --message "Hello there!!"', checks=[ self.check("[0].errorMessage", None), self.check("[0].httpStatusCode", "202"), diff --git a/src/communication/azext_communication/tests/latest/test_communication_user_identity_scenario.py b/src/communication/azext_communication/tests/latest/test_communication_user_identity_scenario.py index d4488ae16ac..8daff4f07fa 100644 --- a/src/communication/azext_communication/tests/latest/test_communication_user_identity_scenario.py +++ b/src/communication/azext_communication/tests/latest/test_communication_user_identity_scenario.py @@ -19,11 +19,10 @@ class CommunicationIdentityScenarios(ScenarioTest): def __init__(self, method_name): super().__init__(method_name, recording_processors=[ - URIIdentityReplacer(), + URIIdentityReplacer(), BodyReplacerProcessor(keys=["id", "token"]) ]) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_create_user(self, communication_resource_info): @@ -32,7 +31,6 @@ def test_create_user(self, communication_resource_info): assert res is not None assert res['properties']['id'] == res['rawId'] - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_delete_user(self, communication_resource_info): @@ -40,7 +38,7 @@ def test_delete_user(self, communication_resource_info): res = self.cmd('az communication user-identity user create').get_output_in_json() user_id = res['properties']['id'] - self.kwargs.update({ 'user_id': user_id }) + self.kwargs.update({'user_id': user_id}) self.cmd('az communication user-identity user delete --user {user_id} --yes') @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @@ -55,7 +53,7 @@ def test_issue_access_token(self, communication_resource_info): @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_issue_access_token_with_id(self, communication_resource_info): - + os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] id = get_test_identity_id(self.is_live, self.in_recording, communication_resource_info[1]) @@ -64,7 +62,6 @@ def test_issue_access_token_with_id(self, communication_resource_info): val = self.cmd( 'az communication user-identity issue-access-token --scope chat --userid {id}').get_output_in_json() self.assertIsNotNone(val['token']) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -74,7 +71,6 @@ def test_issue_access_token_with_multiple_scopes(self, communication_resource_in val = self.cmd( 'az communication user-identity issue-access-token --scope voip chat').get_output_in_json() self.assertIsNotNone(val['token']) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -88,7 +84,7 @@ def test_token_issue(self, communication_resource_info): @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') def test_token_issue_with_id(self, communication_resource_info): - + os.environ['AZURE_COMMUNICATION_CONNECTION_STRING'] = communication_resource_info[1] id = get_test_identity_id(self.is_live, self.in_recording, communication_resource_info[1]) @@ -97,7 +93,6 @@ def test_token_issue_with_id(self, communication_resource_info): val = self.cmd( 'az communication user-identity token issue --scope chat --user {id}').get_output_in_json() self.assertIsNotNone(val['token']) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') @@ -107,7 +102,6 @@ def test_token_issue_with_multiple_scopes(self, communication_resource_info): val = self.cmd( 'az communication user-identity token issue --scope voip chat').get_output_in_json() self.assertIsNotNone(val['token']) - @ResourceGroupPreparer(name_prefix='clitestcommunication_MyResourceGroup'[:7], key='rg', parameter_name='rg') @CommunicationResourcePreparer(resource_group_parameter_name='rg') diff --git a/src/communication/azext_communication/tests/latest/utils.py b/src/communication/azext_communication/tests/latest/utils.py index fb1d112b021..3217272ba37 100644 --- a/src/communication/azext_communication/tests/latest/utils.py +++ b/src/communication/azext_communication/tests/latest/utils.py @@ -16,7 +16,8 @@ PhoneNumberCapabilities ) from azure.communication.identity import CommunicationIdentityClient -import uuid, os +import uuid +import os TEST_RESOURCE_IDENTIFIER = "sanitized" TEST_SOURCE_PHONENUMBER_DEFAULT = "sanitized" @@ -54,7 +55,7 @@ def get_test_recipient_phonenumber(is_live, in_recording): def get_new_phonenumber(connection_string): try: phone_numbers_client = PhoneNumbersClient.from_connection_string(connection_string) - + capabilities = PhoneNumberCapabilities( calling=PhoneNumberCapabilityType.INBOUND, sms=PhoneNumberCapabilityType.INBOUND_OUTBOUND @@ -77,7 +78,7 @@ def get_new_phonenumber(connection_string): for phone_number in phone_number_list: return phone_number - except Exception as ex: + except Exception: return TEST_RECIPIENT_PHONENUMBER_DEFAULT @@ -96,7 +97,7 @@ def _get_content_type(entity): content_type = content_type.split(";")[0].lower() return content_type - + def is_text_payload(entity): text_content_list = ['application/json', 'application/xml', 'text/', 'application/test-content'] diff --git a/src/communication/azext_communication/version.py b/src/communication/azext_communication/version.py index b43828e4a4e..c99bd75182d 100644 --- a/src/communication/azext_communication/version.py +++ b/src/communication/azext_communication/version.py @@ -4,7 +4,7 @@ # -------------------------------------------------------------------------------------------- -VERSION = '1.8.0b1' +VERSION = '1.8.0b2' def cli_application_id():