From c1c84ebc18343222fb2d9f12b938f761d9424238 Mon Sep 17 00:00:00 2001 From: "Adam Ling (MSFT)" Date: Tue, 28 Sep 2021 23:00:46 -0700 Subject: [PATCH] [ServiceBus] Add large message support to SBAdministrationClient (#20812) * impl * update swagger * upload recordings * fix mypy pylint * review feedback * update classifier --- sdk/servicebus/azure-servicebus/CHANGELOG.md | 10 +- .../azure/servicebus/_version.py | 2 +- .../management/_management_client_async.py | 96 ++-- .../azure/servicebus/management/_constants.py | 2 +- .../management/_generated/_version.py | 2 +- .../_entity_operations_async.py | 6 +- .../_namespace_operations_async.py | 2 +- .../_rule_operations_async.py | 6 +- ..._bus_management_client_operations_async.py | 6 +- .../_subscription_operations_async.py | 6 +- .../management/_generated/models/_models.py | 12 +- .../_generated/models/_models_py3.py | 16 +- .../operations/_entity_operations.py | 6 +- .../operations/_namespace_operations.py | 2 +- .../_generated/operations/_rule_operations.py | 6 +- ...ervice_bus_management_client_operations.py | 6 +- .../operations/_subscription_operations.py | 6 +- .../management/_management_client.py | 96 ++-- .../management/_model_workaround.py | 3 + .../azure/servicebus/management/_models.py | 21 + sdk/servicebus/azure-servicebus/setup.py | 2 +- .../azure-servicebus/swagger/README.md | 2 +- ...t_async_mgmt_namespace_get_properties.yaml | 16 +- ....test_async_mgmt_queue_create_by_name.yaml | 58 +-- ...est_async_mgmt_queue_create_duplicate.yaml | 52 +-- ...t_queue_create_with_queue_description.yaml | 173 ++++--- ...nc.test_async_mgmt_queue_delete_basic.yaml | 152 +++---- ....test_async_mgmt_queue_delete_negtive.yaml | 96 ++-- ...eue_delete_one_and_check_not_existing.yaml | 386 ++++++++-------- ...mt_queue_get_runtime_properties_basic.yaml | 58 +-- ...queue_get_runtime_properties_negative.yaml | 10 +- ...sync.test_async_mgmt_queue_list_basic.yaml | 156 +++---- ...t_queue_list_runtime_properties_basic.yaml | 118 ++--- ...t_queue_list_with_negative_credential.yaml | 24 +- ...nc_mgmt_queue_list_with_special_chars.yaml | 84 ++-- ...premium_create_with_queue_description.yaml | 329 ++++++++++++++ ....test_async_mgmt_queue_update_invalid.yaml | 90 ++-- ....test_async_mgmt_queue_update_success.yaml | 338 +++++++------- ...st_mgmt_queue_async_update_dict_error.yaml | 38 +- ..._mgmt_queue_async_update_dict_success.yaml | 168 +++---- ...les_async.test_async_mgmt_rule_create.yaml | 250 +++++------ ...test_async_mgmt_rule_create_duplicate.yaml | 108 ++--- ....test_async_mgmt_rule_list_and_delete.yaml | 278 ++++++------ ...c.test_async_mgmt_rule_update_invalid.yaml | 128 +++--- ...c.test_async_mgmt_rule_update_success.yaml | 188 ++++---- ...est_mgmt_rule_async_update_dict_error.yaml | 94 ++-- ...t_mgmt_rule_async_update_dict_success.yaml | 188 ++++---- ...sync_mgmt_subscription_create_by_name.yaml | 86 ++-- ...nc_mgmt_subscription_create_duplicate.yaml | 80 ++-- ...t_subscription_create_with_forward_to.yaml | 118 ++--- ..._create_with_subscription_description.yaml | 134 +++--- ...c.test_async_mgmt_subscription_delete.yaml | 210 ++++----- ...cription_get_runtime_properties_basic.yaml | 86 ++-- ...ync.test_async_mgmt_subscription_list.yaml | 156 +++---- ..._subscription_list_runtime_properties.yaml | 156 +++---- ...sync_mgmt_subscription_update_invalid.yaml | 98 ++-- ...sync_mgmt_subscription_update_success.yaml | 380 ++++++++-------- ..._subscription_async_update_dict_error.yaml | 66 +-- ...ubscription_async_update_dict_success.yaml | 224 ++++----- ....test_async_mgmt_topic_create_by_name.yaml | 58 +-- ...est_async_mgmt_topic_create_duplicate.yaml | 52 +-- ...t_topic_create_with_topic_description.yaml | 135 +++--- ...cs_async.test_async_mgmt_topic_delete.yaml | 192 ++++---- ...mt_topic_get_runtime_properties_basic.yaml | 58 +-- ...pics_async.test_async_mgmt_topic_list.yaml | 120 ++--- ...nc_mgmt_topic_list_runtime_properties.yaml | 118 ++--- ...premium_create_with_topic_description.yaml | 329 ++++++++++++++ ....test_async_mgmt_topic_update_invalid.yaml | 72 +-- ....test_async_mgmt_topic_update_success.yaml | 216 ++++----- ...st_mgmt_topic_async_update_dict_error.yaml | 38 +- ..._mgmt_topic_async_update_dict_success.yaml | 164 +++---- .../mgmt_tests/test_mgmt_queues_async.py | 102 ++++- .../mgmt_tests/test_mgmt_topics_async.py | 73 +++ ...es.test_mgmt_namespace_get_properties.yaml | 14 +- ...queues.test_mgmt_queue_create_by_name.yaml | 50 +-- ...eues.test_mgmt_queue_create_duplicate.yaml | 44 +- ...t_queue_create_with_queue_description.yaml | 163 ++++--- ...t_queues.test_mgmt_queue_delete_basic.yaml | 134 +++--- ...queues.test_mgmt_queue_delete_negtive.yaml | 82 ++-- ...eue_delete_one_and_check_not_existing.yaml | 340 +++++++------- ...mt_queue_get_runtime_properties_basic.yaml | 50 +-- ...queue_get_runtime_properties_negative.yaml | 8 +- ...gmt_queues.test_mgmt_queue_list_basic.yaml | 134 +++--- ...t_queue_list_runtime_properties_basic.yaml | 102 ++--- ...t_queue_list_with_negative_credential.yaml | 20 +- ...st_mgmt_queue_list_with_special_chars.yaml | 72 +-- ...premium_create_with_queue_description.yaml | 424 ++++++++++++++++++ ...ues.test_mgmt_queue_update_dict_error.yaml | 32 +- ...s.test_mgmt_queue_update_dict_success.yaml | 150 +++---- ...queues.test_mgmt_queue_update_invalid.yaml | 78 ++-- ...queues.test_mgmt_queue_update_success.yaml | 304 ++++++------- ...test_mgmt_rules.test_mgmt_rule_create.yaml | 216 ++++----- ...rules.test_mgmt_rule_create_duplicate.yaml | 92 ++-- ..._rules.test_mgmt_rule_list_and_delete.yaml | 256 +++++------ ...ules.test_mgmt_rule_update_dict_error.yaml | 80 ++-- ...es.test_mgmt_rule_update_dict_success.yaml | 164 +++---- ...t_rules.test_mgmt_rule_update_invalid.yaml | 112 ++--- ...t_rules.test_mgmt_rule_update_success.yaml | 164 +++---- ...test_mgmt_subscription_create_by_name.yaml | 74 +-- ...st_mgmt_subscription_create_duplicate.yaml | 68 +-- ...t_subscription_create_with_forward_to.yaml | 102 ++--- ..._create_with_subscription_description.yaml | 116 ++--- ...iptions.test_mgmt_subscription_delete.yaml | 186 ++++---- ...cription_get_runtime_properties_basic.yaml | 74 +-- ...criptions.test_mgmt_subscription_list.yaml | 136 +++--- ..._subscription_list_runtime_properties.yaml | 136 +++--- ...t_mgmt_subscription_update_dict_error.yaml | 56 +-- ...mgmt_subscription_update_dict_success.yaml | 198 ++++---- ...test_mgmt_subscription_update_invalid.yaml | 84 ++-- ...test_mgmt_subscription_update_success.yaml | 350 +++++++-------- ...topics.test_mgmt_topic_create_by_name.yaml | 50 +-- ...pics.test_mgmt_topic_create_duplicate.yaml | 44 +- ...t_topic_create_with_topic_description.yaml | 129 ++++-- ...st_mgmt_topics.test_mgmt_topic_delete.yaml | 170 +++---- ...mt_topic_get_runtime_properties_basic.yaml | 50 +-- ...test_mgmt_topics.test_mgmt_topic_list.yaml | 104 ++--- ...st_mgmt_topic_list_runtime_properties.yaml | 102 ++--- ...premium_create_with_topic_description.yaml | 424 ++++++++++++++++++ ...ics.test_mgmt_topic_update_dict_error.yaml | 32 +- ...s.test_mgmt_topic_update_dict_success.yaml | 146 +++--- ...topics.test_mgmt_topic_update_invalid.yaml | 62 +-- ...topics.test_mgmt_topic_update_success.yaml | 190 ++++---- .../tests/mgmt_tests/test_mgmt_queues.py | 109 ++++- .../tests/mgmt_tests/test_mgmt_topics.py | 81 ++++ 124 files changed, 8025 insertions(+), 5950 deletions(-) create mode 100644 sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_premium_create_with_queue_description.yaml create mode 100644 sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_premium_create_with_topic_description.yaml create mode 100644 sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_premium_create_with_queue_description.yaml create mode 100644 sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_premium_create_with_topic_description.yaml diff --git a/sdk/servicebus/azure-servicebus/CHANGELOG.md b/sdk/servicebus/azure-servicebus/CHANGELOG.md index cdcd908ba3d6..3c9c6c832d78 100644 --- a/sdk/servicebus/azure-servicebus/CHANGELOG.md +++ b/sdk/servicebus/azure-servicebus/CHANGELOG.md @@ -1,14 +1,12 @@ # Release History -## 7.3.4 (Unreleased) +## 7.4.0b1 (2021-10-05) ### Features Added -### Breaking Changes - -### Bugs Fixed - -### Other Changes +- Added support to create and update queues and topics of large message size to `ServiceBusAdministrationClient`. This feature is only available for Service Bus of Premium Tier. + - Methods`create_queue`, `create_topic`, `update_queue`, `update_topic` on `ServiceBusAdministrationClient` now take a new keyword argument `max_message_size_in_kilobytes`. + - `QueueProperties` and `TopicProperties` now have a new instance variable `max_message_size_in_kilobytes`. ## 7.3.3 (2021-09-08) diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/_version.py b/sdk/servicebus/azure-servicebus/azure/servicebus/_version.py index 95447996ec0f..aec55b5a8959 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/_version.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/_version.py @@ -3,4 +3,4 @@ # Licensed under the MIT License. # ------------------------------------ -VERSION = "7.3.4" +VERSION = "7.4.0b1" diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_management_client_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_management_client_async.py index da2c08ec1e5a..30057523cb85 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_management_client_async.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_management_client_async.py @@ -293,58 +293,63 @@ async def create_queue(self, queue_name: str, **kwargs) -> QueueProperties: :param queue_name: Name of the queue. :type queue_name: str :keyword authorization_rules: Authorization rules for resource. - :type authorization_rules: list[~azure.servicebus.management.AuthorizationRule] + :paramtype authorization_rules: list[~azure.servicebus.management.AuthorizationRule] :keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the queue is automatically deleted. The minimum duration is 5 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type auto_delete_on_idle: Union[~datetime.timedelta, str] + :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str] :keyword dead_lettering_on_message_expiration: A value that indicates whether this queue has dead letter support when a message expires. - :type dead_lettering_on_message_expiration: bool + :paramtype dead_lettering_on_message_expiration: bool :keyword default_message_time_to_live: ISO 8601 default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type default_message_time_to_live: Union[~datetime.timedelta, str] + :paramtype default_message_time_to_live: Union[~datetime.timedelta, str] :keyword duplicate_detection_history_time_window: ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type duplicate_detection_history_time_window: Union[~datetime.timedelta, str] + :paramtype duplicate_detection_history_time_window: Union[~datetime.timedelta, str] :keyword enable_batched_operations: Value that indicates whether server-side batched operations are enabled. - :type enable_batched_operations: bool + :paramtype enable_batched_operations: bool :keyword enable_express: A value that indicates whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage. - :type enable_express: bool + :paramtype enable_express: bool :keyword enable_partitioning: A value that indicates whether the queue is to be partitioned across multiple message brokers. - :type enable_partitioning: bool + :paramtype enable_partitioning: bool :keyword lock_duration: ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers. The maximum value for LockDuration is 5 minutes; the default value is 1 minute. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type lock_duration: Union[~datetime.timedelta, str] + :paramtype lock_duration: Union[~datetime.timedelta, str] :keyword max_delivery_count: The maximum delivery count. A message is automatically deadlettered after this number of deliveries. Default value is 10. - :type max_delivery_count: int + :paramtype max_delivery_count: int :keyword max_size_in_megabytes: The maximum size of the queue in megabytes, which is the size of memory allocated for the queue. - :type max_size_in_megabytes: int + :paramtype max_size_in_megabytes: int :keyword requires_duplicate_detection: A value indicating if this queue requires duplicate detection. - :type requires_duplicate_detection: bool + :paramtype requires_duplicate_detection: bool :keyword requires_session: A value that indicates whether the queue supports the concept of sessions. - :type requires_session: bool + :paramtype requires_session: bool :keyword forward_to: The name of the recipient entity to which all the messages sent to the queue are forwarded to. - :type forward_to: str + :paramtype forward_to: str :keyword user_metadata: Custom metdata that user can associate with the description. Max length is 1024 chars. - :type user_metadata: str + :paramtype user_metadata: str :keyword forward_dead_lettered_messages_to: The name of the recipient entity to which all the dead-lettered messages of this subscription are forwarded to. - :type forward_dead_lettered_messages_to: str + :paramtype forward_dead_lettered_messages_to: str + :keyword max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that + can be accepted by the queue. This feature is only available when using a Premium namespace + and service version "2021-05" or higher. + The minimum allowed value is 1024 while the maximum allowed value is 102400. Default value is 1024. + :paramtype max_message_size_in_kilobytes: int :rtype: ~azure.servicebus.management.QueueProperties """ @@ -385,6 +390,7 @@ async def create_queue(self, queue_name: str, **kwargs) -> QueueProperties: forward_to=forward_to, forward_dead_lettered_messages_to=forward_dead_lettered_messages_to, user_metadata=kwargs.pop("user_metadata", None), + max_message_size_in_kilobytes=kwargs.pop("max_message_size_in_kilobytes", None) ) to_create = queue._to_internal_entity(self.fully_qualified_namespace) create_entity_body = CreateQueueBody( @@ -553,41 +559,46 @@ async def create_topic(self, topic_name: str, **kwargs) -> TopicProperties: the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type default_message_time_to_live: Union[~datetime.timedelta, str] + :paramtype default_message_time_to_live: Union[~datetime.timedelta, str] :keyword max_size_in_megabytes: The maximum size of the topic in megabytes, which is the size of memory allocated for the topic. - :type max_size_in_megabytes: long + :paramtype max_size_in_megabytes: long :keyword requires_duplicate_detection: A value indicating if this topic requires duplicate detection. - :type requires_duplicate_detection: bool + :paramtype requires_duplicate_detection: bool :keyword duplicate_detection_history_time_window: ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type duplicate_detection_history_time_window: Union[~datetime.timedelta, str] + :paramtype duplicate_detection_history_time_window: Union[~datetime.timedelta, str] :keyword enable_batched_operations: Value that indicates whether server-side batched operations are enabled. - :type enable_batched_operations: bool + :paramtype enable_batched_operations: bool :keyword size_in_bytes: The size of the topic, in bytes. - :type size_in_bytes: int + :paramtype size_in_bytes: int :keyword filtering_messages_before_publishing: Filter messages before publishing. - :type filtering_messages_before_publishing: bool + :paramtype filtering_messages_before_publishing: bool :keyword authorization_rules: Authorization rules for resource. - :type authorization_rules: + :paramtype authorization_rules: list[~azure.servicebus.management.AuthorizationRule] :keyword support_ordering: A value that indicates whether the topic supports ordering. - :type support_ordering: bool + :paramtype support_ordering: bool :keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the topic is automatically deleted. The minimum duration is 5 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type auto_delete_on_idle: Union[~datetime.timedelta, str] + :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str] :keyword enable_partitioning: A value that indicates whether the topic is to be partitioned across multiple message brokers. - :type enable_partitioning: bool + :paramtype enable_partitioning: bool :keyword enable_express: A value that indicates whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage. - :type enable_express: bool + :paramtype enable_express: bool :keyword user_metadata: Metadata associated with the topic. - :type user_metadata: str + :paramtype user_metadata: str + :keyword max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that + can be accepted by the topic. This feature is only available when using a Premium namespace + and service version "2021-05" or higher. + The minimum allowed value is 1024 while the maximum allowed value is 102400. Default value is 1024. + :paramtype max_message_size_in_kilobytes: int :rtype: ~azure.servicebus.management.TopicProperties """ @@ -614,6 +625,7 @@ async def create_topic(self, topic_name: str, **kwargs) -> TopicProperties: availability_status=None, enable_express=kwargs.pop("enable_express", None), user_metadata=kwargs.pop("user_metadata", None), + max_message_size_in_kilobytes=kwargs.pop("max_message_size_in_kilobytes", None) ) to_create = topic._to_internal_entity() @@ -796,40 +808,40 @@ async def create_subscription( that the message is locked for other receivers. The maximum value for LockDuration is 5 minutes; the default value is 1 minute. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type lock_duration: Union[~datetime.timedelta, str] + :paramtype lock_duration: Union[~datetime.timedelta, str] :keyword requires_session: A value that indicates whether the queue supports the concept of sessions. - :type requires_session: bool + :paramtype requires_session: bool :keyword default_message_time_to_live: ISO 8601 default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type default_message_time_to_live: Union[~datetime.timedelta, str] + :paramtype default_message_time_to_live: Union[~datetime.timedelta, str] :keyword dead_lettering_on_message_expiration: A value that indicates whether this subscription has dead letter support when a message expires. - :type dead_lettering_on_message_expiration: bool + :paramtype dead_lettering_on_message_expiration: bool :keyword dead_lettering_on_filter_evaluation_exceptions: A value that indicates whether this subscription has dead letter support when a message expires. - :type dead_lettering_on_filter_evaluation_exceptions: bool + :paramtype dead_lettering_on_filter_evaluation_exceptions: bool :keyword max_delivery_count: The maximum delivery count. A message is automatically deadlettered after this number of deliveries. Default value is 10. - :type max_delivery_count: int + :paramtype max_delivery_count: int :keyword enable_batched_operations: Value that indicates whether server-side batched operations are enabled. - :type enable_batched_operations: bool + :paramtype enable_batched_operations: bool :keyword forward_to: The name of the recipient entity to which all the messages sent to the subscription are forwarded to. - :type forward_to: str + :paramtype forward_to: str :keyword user_metadata: Metadata associated with the subscription. Maximum number of characters is 1024. - :type user_metadata: str + :paramtype user_metadata: str :keyword forward_dead_lettered_messages_to: The name of the recipient entity to which all the messages sent to the subscription are forwarded to. - :type forward_dead_lettered_messages_to: str + :paramtype forward_dead_lettered_messages_to: str :keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the subscription is automatically deleted. The minimum duration is 5 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type auto_delete_on_idle: Union[~datetime.timedelta, str] + :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str] :rtype: ~azure.servicebus.management.SubscriptionProperties """ # pylint:disable=protected-access @@ -1047,10 +1059,10 @@ async def create_rule( :param rule_name: Name of the rule. :type rule_name: str :keyword filter: The filter of the rule. The default value is ~azure.servicebus.management.TrueRuleFilter - :type filter: Union[~azure.servicebus.management.CorrelationRuleFilter, + :paramtype filter: Union[~azure.servicebus.management.CorrelationRuleFilter, ~azure.servicebus.management.SqlRuleFilter] :keyword action: The action of the rule. - :type action: Optional[~azure.servicebus.management.SqlRuleAction] + :paramtype action: Optional[~azure.servicebus.management.SqlRuleAction] :rtype: ~azure.servicebus.management.RuleProperties """ diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_constants.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_constants.py index 77b31fadf5b1..1a848d7c26c0 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_constants.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_constants.py @@ -5,7 +5,7 @@ # Generated API parameters API_VERSION_PARAM_NAME = "api-version" -API_VERSION = "2017-04" +API_VERSION = "2021-05" ENTITY_TYPE_QUEUES = "queues" ENTITY_TYPE_TOPICS = "topics" LIST_OP_SKIP = "$skip" diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/_version.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/_version.py index 3b38af7aff9b..d1e365c2c71f 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/_version.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/_version.py @@ -6,4 +6,4 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -VERSION = "2017-04" +VERSION = "2021-05" diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py index 8eacacacd5de..a45b77527d1f 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py @@ -43,7 +43,7 @@ async def get( self, entity_name: str, enrich: Optional[bool] = False, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> object: """Get the details about the Queue or Topic with the given entityName. @@ -106,7 +106,7 @@ async def put( self, entity_name: str, request_body: object, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", if_match: Optional[str] = None, **kwargs ) -> object: @@ -183,7 +183,7 @@ async def put( async def delete( self, entity_name: str, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> object: """Delete the Queue or Topic with the given entityName. diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_namespace_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_namespace_operations_async.py index d8fa5d686223..1f46fcbc42f3 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_namespace_operations_async.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_namespace_operations_async.py @@ -41,7 +41,7 @@ def __init__(self, client, config, serializer, deserializer) -> None: async def get( self, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> "models.NamespacePropertiesEntry": """Get the details about the Service Bus namespace. diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_rule_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_rule_operations_async.py index 5e00dba3c5c4..69538ab2d515 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_rule_operations_async.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_rule_operations_async.py @@ -45,7 +45,7 @@ async def get( subscription_name: str, rule_name: str, enrich: Optional[bool] = False, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> object: """Get the details about the rule of a subscription of a topic. @@ -116,7 +116,7 @@ async def put( subscription_name: str, rule_name: str, request_body: object, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", if_match: Optional[str] = None, **kwargs ) -> object: @@ -201,7 +201,7 @@ async def delete( topic_name: str, subscription_name: str, rule_name: str, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> object: """Delete the rule with the given topicName, subscriptionName and ruleName. diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_service_bus_management_client_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_service_bus_management_client_operations_async.py index 21cdba787565..70dd61415d1d 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_service_bus_management_client_operations_async.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_service_bus_management_client_operations_async.py @@ -24,7 +24,7 @@ async def list_subscriptions( topic_name: str, skip: Optional[int] = 0, top: Optional[int] = 100, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> object: """Get the details about the subscriptions of the given topic. @@ -93,7 +93,7 @@ async def list_rules( subscription_name: str, skip: Optional[int] = 0, top: Optional[int] = 100, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> object: """Get the details about the rules of the given topic subscription. @@ -164,7 +164,7 @@ async def list_entities( entity_type: str, skip: Optional[int] = 0, top: Optional[int] = 100, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> object: """Get the details about the entities of the given Service Bus namespace. diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_subscription_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_subscription_operations_async.py index 1a7117c61ce9..5d758424aa17 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_subscription_operations_async.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_subscription_operations_async.py @@ -44,7 +44,7 @@ async def get( topic_name: str, subscription_name: str, enrich: Optional[bool] = False, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> object: """Get the details about the subscription of a topic. @@ -111,7 +111,7 @@ async def put( topic_name: str, subscription_name: str, request_body: object, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", if_match: Optional[str] = None, **kwargs ) -> object: @@ -192,7 +192,7 @@ async def delete( self, topic_name: str, subscription_name: str, - api_version: Optional[str] = "2017_04", + api_version: Optional[str] = "2021_05", **kwargs ) -> object: """Delete the subscription with the given topicName and subscriptionName. diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models.py index bc5a8b1d5438..578ba06fcc35 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models.py @@ -20,7 +20,7 @@ class AuthorizationRule(msrest.serialization.Model): :param claim_value: The claim value. :type claim_value: str :param rights: Access rights of the entity. Values are 'Send', 'Listen', or 'Manage'. - :type rights: list[str] + :type rights: list[str or ~azure.servicebus.management._generated.models.AccessRights] :param created_time: The date and time when the authorization rule was created. :type created_time: ~datetime.datetime :param modified_time: The date and time when the authorization rule was modified. @@ -757,6 +757,9 @@ class QueueDescription(msrest.serialization.Model): :param forward_dead_lettered_messages_to: The name of the recipient entity to which all the dead-lettered messages of this subscription are forwarded to. :type forward_dead_lettered_messages_to: str + :param max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that can + be accepted by the queue. + :type max_message_size_in_kilobytes: int """ _attribute_map = { @@ -786,6 +789,7 @@ class QueueDescription(msrest.serialization.Model): 'entity_availability_status': {'key': 'entityAvailabilityStatus', 'type': 'str', 'xml': {'name': 'EntityAvailabilityStatus', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, 'enable_express': {'key': 'enableExpress', 'type': 'bool', 'xml': {'name': 'EnableExpress', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, 'forward_dead_lettered_messages_to': {'key': 'forwardDeadLetteredMessagesTo', 'type': 'str', 'xml': {'name': 'ForwardDeadLetteredMessagesTo', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, + 'max_message_size_in_kilobytes': {'key': 'maxMessageSizeInKilobytes', 'type': 'int', 'xml': {'name': 'MaxMessageSizeInKilobytes', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, } _xml_map = { 'name': 'QueueDescription', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect' @@ -822,6 +826,7 @@ def __init__( self.entity_availability_status = kwargs.get('entity_availability_status', None) self.enable_express = kwargs.get('enable_express', None) self.forward_dead_lettered_messages_to = kwargs.get('forward_dead_lettered_messages_to', None) + self.max_message_size_in_kilobytes = kwargs.get('max_message_size_in_kilobytes', None) class QueueDescriptionEntry(msrest.serialization.Model): @@ -1468,6 +1473,9 @@ class TopicDescription(msrest.serialization.Model): :type enable_express: bool :param user_metadata: Metadata associated with the topic. :type user_metadata: str + :param max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that can + be accepted by the topic. + :type max_message_size_in_kilobytes: int """ _attribute_map = { @@ -1493,6 +1501,7 @@ class TopicDescription(msrest.serialization.Model): 'enable_subscription_partitioning': {'key': 'enableSubscriptionPartitioning', 'type': 'bool', 'xml': {'name': 'EnableSubscriptionPartitioning', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, 'enable_express': {'key': 'enableExpress', 'type': 'bool', 'xml': {'name': 'EnableExpress', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, 'user_metadata': {'key': 'userMetadata', 'type': 'str', 'xml': {'name': 'UserMetadata', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, + 'max_message_size_in_kilobytes': {'key': 'maxMessageSizeInKilobytes', 'type': 'int', 'xml': {'name': 'MaxMessageSizeInKilobytes', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, } _xml_map = { 'name': 'TopicDescription', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect' @@ -1525,6 +1534,7 @@ def __init__( self.enable_subscription_partitioning = kwargs.get('enable_subscription_partitioning', None) self.enable_express = kwargs.get('enable_express', None) self.user_metadata = kwargs.get('user_metadata', None) + self.max_message_size_in_kilobytes = kwargs.get('max_message_size_in_kilobytes', None) class TopicDescriptionEntry(msrest.serialization.Model): diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models_py3.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models_py3.py index 656f86cc8284..f5fb21d3c4a9 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models_py3.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models_py3.py @@ -25,7 +25,7 @@ class AuthorizationRule(msrest.serialization.Model): :param claim_value: The claim value. :type claim_value: str :param rights: Access rights of the entity. Values are 'Send', 'Listen', or 'Manage'. - :type rights: list[str] + :type rights: list[str or ~azure.servicebus.management._generated.models.AccessRights] :param created_time: The date and time when the authorization rule was created. :type created_time: ~datetime.datetime :param modified_time: The date and time when the authorization rule was modified. @@ -59,7 +59,7 @@ def __init__( type: Optional[str] = None, claim_type: Optional[str] = None, claim_value: Optional[str] = None, - rights: Optional[List[str]] = None, + rights: Optional[List[Union[str, "AccessRights"]]] = None, created_time: Optional[datetime.datetime] = None, modified_time: Optional[datetime.datetime] = None, key_name: Optional[str] = None, @@ -839,6 +839,9 @@ class QueueDescription(msrest.serialization.Model): :param forward_dead_lettered_messages_to: The name of the recipient entity to which all the dead-lettered messages of this subscription are forwarded to. :type forward_dead_lettered_messages_to: str + :param max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that can + be accepted by the queue. + :type max_message_size_in_kilobytes: int """ _attribute_map = { @@ -868,6 +871,7 @@ class QueueDescription(msrest.serialization.Model): 'entity_availability_status': {'key': 'entityAvailabilityStatus', 'type': 'str', 'xml': {'name': 'EntityAvailabilityStatus', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, 'enable_express': {'key': 'enableExpress', 'type': 'bool', 'xml': {'name': 'EnableExpress', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, 'forward_dead_lettered_messages_to': {'key': 'forwardDeadLetteredMessagesTo', 'type': 'str', 'xml': {'name': 'ForwardDeadLetteredMessagesTo', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, + 'max_message_size_in_kilobytes': {'key': 'maxMessageSizeInKilobytes', 'type': 'int', 'xml': {'name': 'MaxMessageSizeInKilobytes', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, } _xml_map = { 'name': 'QueueDescription', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect' @@ -902,6 +906,7 @@ def __init__( entity_availability_status: Optional[Union[str, "EntityAvailabilityStatus"]] = None, enable_express: Optional[bool] = None, forward_dead_lettered_messages_to: Optional[str] = None, + max_message_size_in_kilobytes: Optional[int] = None, **kwargs ): super(QueueDescription, self).__init__(**kwargs) @@ -931,6 +936,7 @@ def __init__( self.entity_availability_status = entity_availability_status self.enable_express = enable_express self.forward_dead_lettered_messages_to = forward_dead_lettered_messages_to + self.max_message_size_in_kilobytes = max_message_size_in_kilobytes class QueueDescriptionEntry(msrest.serialization.Model): @@ -1664,6 +1670,9 @@ class TopicDescription(msrest.serialization.Model): :type enable_express: bool :param user_metadata: Metadata associated with the topic. :type user_metadata: str + :param max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that can + be accepted by the topic. + :type max_message_size_in_kilobytes: int """ _attribute_map = { @@ -1689,6 +1698,7 @@ class TopicDescription(msrest.serialization.Model): 'enable_subscription_partitioning': {'key': 'enableSubscriptionPartitioning', 'type': 'bool', 'xml': {'name': 'EnableSubscriptionPartitioning', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, 'enable_express': {'key': 'enableExpress', 'type': 'bool', 'xml': {'name': 'EnableExpress', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, 'user_metadata': {'key': 'userMetadata', 'type': 'str', 'xml': {'name': 'UserMetadata', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, + 'max_message_size_in_kilobytes': {'key': 'maxMessageSizeInKilobytes', 'type': 'int', 'xml': {'name': 'MaxMessageSizeInKilobytes', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}}, } _xml_map = { 'name': 'TopicDescription', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect' @@ -1719,6 +1729,7 @@ def __init__( enable_subscription_partitioning: Optional[bool] = None, enable_express: Optional[bool] = None, user_metadata: Optional[str] = None, + max_message_size_in_kilobytes: Optional[int] = None, **kwargs ): super(TopicDescription, self).__init__(**kwargs) @@ -1744,6 +1755,7 @@ def __init__( self.enable_subscription_partitioning = enable_subscription_partitioning self.enable_express = enable_express self.user_metadata = user_metadata + self.max_message_size_in_kilobytes = max_message_size_in_kilobytes class TopicDescriptionEntry(msrest.serialization.Model): diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_entity_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_entity_operations.py index 521e710dc2cf..37d66d8f5896 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_entity_operations.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_entity_operations.py @@ -47,7 +47,7 @@ def get( self, entity_name, # type: str enrich=False, # type: Optional[bool] - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> object @@ -111,7 +111,7 @@ def put( self, entity_name, # type: str request_body, # type: object - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] if_match=None, # type: Optional[str] **kwargs # type: Any ): @@ -189,7 +189,7 @@ def put( def delete( self, entity_name, # type: str - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> object diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_namespace_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_namespace_operations.py index 99947994be8c..204489b3a447 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_namespace_operations.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_namespace_operations.py @@ -45,7 +45,7 @@ def __init__(self, client, config, serializer, deserializer): def get( self, - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> "models.NamespacePropertiesEntry" diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_rule_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_rule_operations.py index 4bf126c0d286..b058cbeba2ea 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_rule_operations.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_rule_operations.py @@ -49,7 +49,7 @@ def get( subscription_name, # type: str rule_name, # type: str enrich=False, # type: Optional[bool] - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> object @@ -121,7 +121,7 @@ def put( subscription_name, # type: str rule_name, # type: str request_body, # type: object - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] if_match=None, # type: Optional[str] **kwargs # type: Any ): @@ -207,7 +207,7 @@ def delete( topic_name, # type: str subscription_name, # type: str rule_name, # type: str - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> object diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_service_bus_management_client_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_service_bus_management_client_operations.py index 367c39a964b4..acedc853c957 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_service_bus_management_client_operations.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_service_bus_management_client_operations.py @@ -28,7 +28,7 @@ def list_subscriptions( topic_name, # type: str skip=0, # type: Optional[int] top=100, # type: Optional[int] - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> object @@ -98,7 +98,7 @@ def list_rules( subscription_name, # type: str skip=0, # type: Optional[int] top=100, # type: Optional[int] - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> object @@ -170,7 +170,7 @@ def list_entities( entity_type, # type: str skip=0, # type: Optional[int] top=100, # type: Optional[int] - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> object diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_subscription_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_subscription_operations.py index 9b26a472a70f..ae03fb550741 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_subscription_operations.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_subscription_operations.py @@ -48,7 +48,7 @@ def get( topic_name, # type: str subscription_name, # type: str enrich=False, # type: Optional[bool] - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> object @@ -116,7 +116,7 @@ def put( topic_name, # type: str subscription_name, # type: str request_body, # type: object - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] if_match=None, # type: Optional[str] **kwargs # type: Any ): @@ -198,7 +198,7 @@ def delete( self, topic_name, # type: str subscription_name, # type: str - api_version="2017_04", # type: Optional[str] + api_version="2021_05", # type: Optional[str] **kwargs # type: Any ): # type: (...) -> object diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py index cad49cee7372..2b434269a45f 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py @@ -285,58 +285,63 @@ def create_queue(self, queue_name, **kwargs): :param queue_name: Name of the queue. :type queue_name: str :keyword authorization_rules: Authorization rules for resource. - :type authorization_rules: list[~azure.servicebus.management.AuthorizationRule] + :paramtype authorization_rules: list[~azure.servicebus.management.AuthorizationRule] :keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the queue is automatically deleted. The minimum duration is 5 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type auto_delete_on_idle: Union[~datetime.timedelta, str] + :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str] :keyword dead_lettering_on_message_expiration: A value that indicates whether this queue has dead letter support when a message expires. - :type dead_lettering_on_message_expiration: bool + :paramtype dead_lettering_on_message_expiration: bool :keyword default_message_time_to_live: ISO 8601 default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type default_message_time_to_live: Union[~datetime.timedelta, str] + :paramtype default_message_time_to_live: Union[~datetime.timedelta, str] :keyword duplicate_detection_history_time_window: ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type duplicate_detection_history_time_window: Union[~datetime.timedelta, str] + :paramtype duplicate_detection_history_time_window: Union[~datetime.timedelta, str] :keyword enable_batched_operations: Value that indicates whether server-side batched operations are enabled. - :type enable_batched_operations: bool + :paramtype enable_batched_operations: bool :keyword enable_express: A value that indicates whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage. - :type enable_express: bool + :paramtype enable_express: bool :keyword enable_partitioning: A value that indicates whether the queue is to be partitioned across multiple message brokers. - :type enable_partitioning: bool + :paramtype enable_partitioning: bool :keyword lock_duration: ISO 8601 timespan duration of a peek-lock; that is, the amount of time that the message is locked for other receivers. The maximum value for LockDuration is 5 minutes; the default value is 1 minute. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type lock_duration: Union[~datetime.timedelta, str] + :paramtype lock_duration: Union[~datetime.timedelta, str] :keyword max_delivery_count: The maximum delivery count. A message is automatically deadlettered after this number of deliveries. Default value is 10. - :type max_delivery_count: int + :paramtype max_delivery_count: int :keyword max_size_in_megabytes: The maximum size of the queue in megabytes, which is the size of memory allocated for the queue. - :type max_size_in_megabytes: int + :paramtype max_size_in_megabytes: int :keyword requires_duplicate_detection: A value indicating if this queue requires duplicate detection. - :type requires_duplicate_detection: bool + :paramtype requires_duplicate_detection: bool :keyword requires_session: A value that indicates whether the queue supports the concept of sessions. - :type requires_session: bool + :paramtype requires_session: bool :keyword forward_to: The name of the recipient entity to which all the messages sent to the queue are forwarded to. - :type forward_to: str + :paramtype forward_to: str :keyword user_metadata: Custom metdata that user can associate with the description. Max length is 1024 chars. - :type user_metadata: str + :paramtype user_metadata: str :keyword forward_dead_lettered_messages_to: The name of the recipient entity to which all the dead-lettered messages of this subscription are forwarded to. - :type forward_dead_lettered_messages_to: str + :paramtype forward_dead_lettered_messages_to: str + :keyword max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that + can be accepted by the queue. This feature is only available when using a Premium namespace + and service version "2021-05" or higher. + The minimum allowed value is 1024 while the maximum allowed value is 102400. Default value is 1024. + :paramtype max_message_size_in_kilobytes: int :rtype: ~azure.servicebus.management.QueueProperties """ @@ -377,6 +382,7 @@ def create_queue(self, queue_name, **kwargs): forward_to=forward_to, forward_dead_lettered_messages_to=forward_dead_lettered_messages_to, user_metadata=kwargs.pop("user_metadata", None), + max_message_size_in_kilobytes=kwargs.pop("max_message_size_in_kilobytes", None) ) to_create = queue._to_internal_entity(self.fully_qualified_namespace) create_entity_body = CreateQueueBody( @@ -546,41 +552,46 @@ def create_topic(self, topic_name, **kwargs): the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type default_message_time_to_live: Union[~datetime.timedelta, str] + :paramtype default_message_time_to_live: Union[~datetime.timedelta, str] :keyword max_size_in_megabytes: The maximum size of the topic in megabytes, which is the size of memory allocated for the topic. - :type max_size_in_megabytes: long + :paramtype max_size_in_megabytes: long :keyword requires_duplicate_detection: A value indicating if this topic requires duplicate detection. - :type requires_duplicate_detection: bool + :paramtype requires_duplicate_detection: bool :keyword duplicate_detection_history_time_window: ISO 8601 timeSpan structure that defines the duration of the duplicate detection history. The default value is 10 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type duplicate_detection_history_time_window: Union[~datetime.timedelta, str] + :paramtype duplicate_detection_history_time_window: Union[~datetime.timedelta, str] :keyword enable_batched_operations: Value that indicates whether server-side batched operations are enabled. - :type enable_batched_operations: bool + :paramtype enable_batched_operations: bool :keyword size_in_bytes: The size of the topic, in bytes. - :type size_in_bytes: int + :paramtype size_in_bytes: int :keyword filtering_messages_before_publishing: Filter messages before publishing. - :type filtering_messages_before_publishing: bool + :paramtype filtering_messages_before_publishing: bool :keyword authorization_rules: Authorization rules for resource. - :type authorization_rules: + :paramtype authorization_rules: list[~azure.servicebus.management.AuthorizationRule] :keyword support_ordering: A value that indicates whether the topic supports ordering. - :type support_ordering: bool + :paramtype support_ordering: bool :keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the topic is automatically deleted. The minimum duration is 5 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type auto_delete_on_idle: Union[~datetime.timedelta, str] + :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str] :keyword enable_partitioning: A value that indicates whether the topic is to be partitioned across multiple message brokers. - :type enable_partitioning: bool + :paramtype enable_partitioning: bool :keyword enable_express: A value that indicates whether Express Entities are enabled. An express queue holds a message in memory temporarily before writing it to persistent storage. - :type enable_express: bool + :paramtype enable_express: bool :keyword user_metadata: Metadata associated with the topic. - :type user_metadata: str + :paramtype user_metadata: str + :keyword max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that + can be accepted by the topic. This feature is only available when using a Premium namespace + and service version "2021-05" or higher. + The minimum allowed value is 1024 while the maximum allowed value is 102400. Default value is 1024. + :paramtype max_message_size_in_kilobytes: int :rtype: ~azure.servicebus.management.TopicProperties """ @@ -606,6 +617,7 @@ def create_topic(self, topic_name, **kwargs): availability_status=None, enable_express=kwargs.pop("enable_express", None), user_metadata=kwargs.pop("user_metadata", None), + max_message_size_in_kilobytes=kwargs.pop("max_message_size_in_kilobytes", None) ) to_create = topic._to_internal_entity() @@ -787,40 +799,40 @@ def create_subscription(self, topic_name, subscription_name, **kwargs): that the message is locked for other receivers. The maximum value for LockDuration is 5 minutes; the default value is 1 minute. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type lock_duration: Union[~datetime.timedelta, str] + :paramtype lock_duration: Union[~datetime.timedelta, str] :keyword requires_session: A value that indicates whether the queue supports the concept of sessions. - :type requires_session: bool + :paramtype requires_session: bool :keyword default_message_time_to_live: ISO 8601 default message timespan to live value. This is the duration after which the message expires, starting from when the message is sent to Service Bus. This is the default value used when TimeToLive is not set on a message itself. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type default_message_time_to_live: Union[~datetime.timedelta, str] + :paramtype default_message_time_to_live: Union[~datetime.timedelta, str] :keyword dead_lettering_on_message_expiration: A value that indicates whether this subscription has dead letter support when a message expires. - :type dead_lettering_on_message_expiration: bool + :paramtype dead_lettering_on_message_expiration: bool :keyword dead_lettering_on_filter_evaluation_exceptions: A value that indicates whether this subscription has dead letter support when a message expires. - :type dead_lettering_on_filter_evaluation_exceptions: bool + :paramtype dead_lettering_on_filter_evaluation_exceptions: bool :keyword max_delivery_count: The maximum delivery count. A message is automatically deadlettered after this number of deliveries. Default value is 10. - :type max_delivery_count: int + :paramtype max_delivery_count: int :keyword enable_batched_operations: Value that indicates whether server-side batched operations are enabled. - :type enable_batched_operations: bool + :paramtype enable_batched_operations: bool :keyword forward_to: The name of the recipient entity to which all the messages sent to the subscription are forwarded to. - :type forward_to: str + :paramtype forward_to: str :keyword user_metadata: Metadata associated with the subscription. Maximum number of characters is 1024. - :type user_metadata: str + :paramtype user_metadata: str :keyword forward_dead_lettered_messages_to: The name of the recipient entity to which all the messages sent to the subscription are forwarded to. - :type forward_dead_lettered_messages_to: str + :paramtype forward_dead_lettered_messages_to: str :keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the subscription is automatically deleted. The minimum duration is 5 minutes. Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted. - :type auto_delete_on_idle: Union[~datetime.timedelta, str] + :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str] :rtype: ~azure.servicebus.management.SubscriptionProperties """ _validate_entity_name_type(topic_name, display_name="topic_name") @@ -1029,10 +1041,10 @@ def create_rule(self, topic_name, subscription_name, rule_name, **kwargs): :param rule_name: Name of the rule. :type rule_name: str :keyword filter: The filter of the rule. The default value is ~azure.servicebus.management.TrueRuleFilter - :type filter: Union[~azure.servicebus.management.CorrelationRuleFilter, + :paramtype filter: Union[~azure.servicebus.management.CorrelationRuleFilter, ~azure.servicebus.management.SqlRuleFilter] :keyword action: The action of the rule. - :type action: Optional[~azure.servicebus.management.SqlRuleAction] + :paramtype action: Optional[~azure.servicebus.management.SqlRuleAction] :rtype: ~azure.servicebus.management.RuleProperties """ _validate_topic_and_subscription_types(topic_name, subscription_name) diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_model_workaround.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_model_workaround.py index 6d34fec88df7..32b5176a9dff 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_model_workaround.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_model_workaround.py @@ -128,6 +128,7 @@ "forward_to", "user_metadata", "forward_dead_lettered_messages_to", + "max_message_size_in_kilobytes", ), QueueDescriptionEntry: ( "base", @@ -214,6 +215,7 @@ "enable_subscription_partitioning", "enable_express", "user_metadata", + "max_message_size_in_kilobytes", ), TopicDescriptionEntry: ( "base", @@ -235,6 +237,7 @@ "requires_preprocessing", ), } # type: Dict[Type[Model], Tuple[str, ...]] + ### End of code generated by the script. diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_models.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_models.py index a121efe5c6b8..c251f832d5bb 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_models.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_models.py @@ -245,6 +245,10 @@ class QueueProperties(DictMixin): # pylint:disable=too-many-instance-attributes :ivar forward_dead_lettered_messages_to: The name of the recipient entity to which all the dead-lettered messages of this subscription are forwarded to. :type forward_dead_lettered_messages_to: str + :ivar max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that + can be accepted by the queue. This feature is only available when using a Premium namespace + and service version "2021-05" or higher. + :type max_message_size_in_kilobytes: int """ def __init__(self, name, **kwargs): @@ -285,6 +289,7 @@ def __init__(self, name, **kwargs): self.forward_dead_lettered_messages_to = extract_kwarg( "forward_dead_lettered_messages_to" ) + self.max_message_size_in_kilobytes = extract_kwarg("max_message_size_in_kilobytes") validate_extraction_missing_args(extraction_missing_args) @@ -316,7 +321,9 @@ def _from_internal_entity(cls, name, internal_qd): forward_to=internal_qd.forward_to, forward_dead_lettered_messages_to=internal_qd.forward_dead_lettered_messages_to, user_metadata=internal_qd.user_metadata, + max_message_size_in_kilobytes=internal_qd.max_message_size_in_kilobytes ) + qd._internal_qd = deepcopy(internal_qd) # pylint:disable=protected-access return qd @@ -377,6 +384,10 @@ def _to_internal_entity(self, fully_qualified_namespace, kwargs=None): ) self._internal_qd.user_metadata = kwargs.pop("user_metadata", self.user_metadata) + self._internal_qd.max_message_size_in_kilobytes = kwargs.pop( + "max_message_size_in_kilobytes", + self.max_message_size_in_kilobytes + ) return self._internal_qd @@ -538,6 +549,10 @@ class TopicProperties(DictMixin): # pylint:disable=too-many-instance-attributes :type enable_express: bool :ivar user_metadata: Metadata associated with the topic. :type user_metadata: str + :ivar max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that + can be accepted by the topic. This feature is only available when using a Premium namespace + and service version "2021-05" or higher. + :type max_message_size_in_kilobytes: int """ def __init__(self, name, **kwargs): @@ -570,6 +585,7 @@ def __init__(self, name, **kwargs): self.availability_status = extract_kwarg("availability_status") self.enable_express = extract_kwarg("enable_express") self.user_metadata = extract_kwarg("user_metadata") + self.max_message_size_in_kilobytes = extract_kwarg("max_message_size_in_kilobytes") validate_extraction_missing_args(extraction_missing_args) @@ -597,6 +613,7 @@ def _from_internal_entity(cls, name, internal_td): availability_status=internal_td.entity_availability_status, enable_express=internal_td.enable_express, user_metadata=internal_td.user_metadata, + max_message_size_in_kilobytes=internal_td.max_message_size_in_kilobytes ) td._internal_td = deepcopy(internal_td) return td @@ -637,6 +654,10 @@ def _to_internal_entity(self, kwargs=None): self._internal_td.entity_availability_status = kwargs.pop("availability_status", self.availability_status) self._internal_td.enable_express = kwargs.pop("enable_express", self.enable_express) self._internal_td.user_metadata = kwargs.pop("user_metadata", self.user_metadata) + self._internal_td.max_message_size_in_kilobytes = kwargs.pop( + "max_message_size_in_kilobytes", + self.max_message_size_in_kilobytes + ) return self._internal_td diff --git a/sdk/servicebus/azure-servicebus/setup.py b/sdk/servicebus/azure-servicebus/setup.py index 08f3a9c2558f..0ef08783ac61 100644 --- a/sdk/servicebus/azure-servicebus/setup.py +++ b/sdk/servicebus/azure-servicebus/setup.py @@ -60,7 +60,7 @@ author_email='azpysdkhelp@microsoft.com', url='https://github.com/Azure/azure-sdk-for-python', classifiers=[ - "Development Status :: 5 - Production/Stable", + "Development Status :: 4 - Beta", 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', diff --git a/sdk/servicebus/azure-servicebus/swagger/README.md b/sdk/servicebus/azure-servicebus/swagger/README.md index dad62935f625..b940005b6e95 100644 --- a/sdk/servicebus/azure-servicebus/swagger/README.md +++ b/sdk/servicebus/azure-servicebus/swagger/README.md @@ -16,5 +16,5 @@ no-namespace-folders: true license-header: MICROSOFT_MIT_NO_VERSION clear-output-folder: true python: true -package-version: "2017-04" +package-version: "2021-05" ``` diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_namespaces_async.test_async_mgmt_namespace_get_properties.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_namespaces_async.test_async_mgmt_namespace_get_properties.yaml index 95e5f4453e1b..1a5d1b27fd23 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_namespaces_async.test_async_mgmt_namespace_get_properties.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_namespaces_async.test_async_mgmt_namespace_get_properties.yaml @@ -5,23 +5,23 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$namespaceinfo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$namespaceinfo?api-version=2021-05 response: body: - string: https://servicebustesttcenhmsucx.servicebus.windows.net/$namespaceinfo?api-version=2017-04servicebustesttcenhmsucx2020-08-19T23:03:55Zservicebustesttcenhmsucxhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$namespaceinfo?api-version=2021-05servicebustestkv3s7h2dmw2021-09-28T19:02:39Zservicebustestkv3s7h2dmw2020-08-19T23:02:52.63ZStandard2020-08-19T23:02:52.63ZservicebustesttcenhmsucxMessaging + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">2021-09-28T19:01:38.607ZStandard2021-09-28T19:01:38.607Zservicebustestkv3s7h2dmwMessaging headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Wed, 19 Aug 2020 23:03:54 GMT + date: Tue, 28 Sep 2021 19:02:39 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustesttcenhmsucx.servicebus.windows.net/$namespaceinfo?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$namespaceinfo?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_by_name.yaml index 6b4eb5677309..8551c38b0861 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_by_name.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_by_name.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:21Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:40Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:20 GMT + date: Tue, 28 Sep 2021 19:02:40 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,74 +34,74 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04eidk2020-09-29T08:32:21Z2020-09-29T08:32:21Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/eidk?api-version=2021-05eidk2021-09-28T19:02:40Z2021-09-28T19:02:40Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:21.71Z2020-09-29T08:32:21.78ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:40.94Z2021-09-28T19:02:40.987ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:21 GMT + date: Tue, 28 Sep 2021 19:02:41 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/eidk?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/eidk?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/eidk?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?enrich=false&api-version=2017-04eidk2020-09-29T08:32:21Z2020-09-29T08:32:21Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/eidk?enrich=false&api-version=2021-05eidk2021-09-28T19:02:40Z2021-09-28T19:02:40Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:21.71Z2020-09-29T08:32:21.78Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:40.94Z2021-09-28T19:02:40.987Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:21 GMT - etag: '637369651417800000' + date: Tue, 28 Sep 2021 19:02:41 GMT + etag: '637684525609870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/eidk?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:22 GMT - etag: '637369651417800000' + date: Tue, 28 Sep 2021 19:02:41 GMT + etag: '637684525609870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/eidk?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_duplicate.yaml index ce1dff5913df..93e85960591a 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_duplicate.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_duplicate.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:23Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:42Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:22 GMT + date: Tue, 28 Sep 2021 19:02:42 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04eriodk2020-09-29T08:32:24Z2020-09-29T08:32:24Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/eriodk?api-version=2021-05eriodk2021-09-28T19:02:43Z2021-09-28T19:02:43Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:24.047Z2020-09-29T08:32:24.077ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:43.14Z2021-09-28T19:02:43.277ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:23 GMT + date: Tue, 28 Sep 2021 19:02:43 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/eriodk?api-version=2021-05 - request: body: ' @@ -67,46 +67,46 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2021-05 response: body: string: 409SubCode=40900. Conflict. You're requesting an operation that isn't allowed in the resource's current state. To know more - visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:08c6afea-e944-4a70-bfb3-b3d1a611082b_G13, - SystemTracker:servicebustestsbname.servicebus.windows.net:eriodk, Timestamp:2020-09-29T08:32:24 + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:94a43831-010c-477b-be19-e16d5564e1d5_G15, + SystemTracker:servicebustestsbname.servicebus.windows.net:eriodk, Timestamp:2021-09-28T19:02:43 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:32:24 GMT - etag: '637369651440770000' + date: Tue, 28 Sep 2021 19:02:43 GMT + etag: '637684525632770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 409 message: Conflict - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/eriodk?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:24 GMT - etag: '637369651440770000' + date: Tue, 28 Sep 2021 19:02:44 GMT + etag: '637684525632770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/eriodk?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_with_queue_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_with_queue_description.yaml index c5d991097eee..96485f77e67c 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_with_queue_description.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_with_queue_description.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestxcs2frcdh7.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-15T16:02:44Z + string: Queueshttps://servicebustest4ckckqanz3.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T22:19:00Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 15 Apr 2021 16:02:43 GMT + date: Tue, 28 Sep 2021 22:18:59 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestxcs2frcdh7.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustest4ckckqanz3.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,31 +34,31 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2021-05 response: body: - string: https://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh?api-version=2017-04aghadh2021-04-15T16:02:44Z2021-04-15T16:02:44Zservicebustestxcs2frcdh7https://servicebustest4ckckqanz3.servicebus.windows.net/aghadh?api-version=2021-05aghadh2021-09-28T22:19:00Z2021-09-28T22:19:00Zservicebustest4ckckqanz3P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T16:02:44.943Z2021-04-15T16:02:44.977ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T22:19:00.527Z2021-09-28T22:19:00.61ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:02:44 GMT + date: Tue, 28 Sep 2021 22:19:00 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh?api-version=2017-04 + url: https://servicebustest4ckckqanz3.servicebus.windows.net/aghadh?api-version=2021-05 - request: body: ' PT13S3072truePT11MtruePT12M14truePT10Mtruetruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh' + type="application/xml">PT13S3072truePT11MtruePT12M14truePT10Mtruetruesb://servicebustest4ckckqanz3.servicebus.windows.net/aghadhsb://servicebustest4ckckqanz3.servicebus.windows.net/aghadh' headers: Accept: - application/xml @@ -67,35 +67,35 @@ interactions: Content-Type: - application/atom+xml ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestxcs2frcdh7.servicebus.windows.net%2Faghadh&sig=WnSx7o9h5TDEmP9uRTd6Dh5jREIMWqDE8ZG53lI6NCk%3d&se=1618506165&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustest4ckckqanz3.servicebus.windows.net%2Faghadh&sig=jZNjjOJFep9D2eCpuqpBb6fuMBKabHyQyXNTLXIIQWM%3d&se=1632871140&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestxcs2frcdh7.servicebus.windows.net%2Faghadh&sig=WnSx7o9h5TDEmP9uRTd6Dh5jREIMWqDE8ZG53lI6NCk%3d&se=1618506165&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustest4ckckqanz3.servicebus.windows.net%2Faghadh&sig=jZNjjOJFep9D2eCpuqpBb6fuMBKabHyQyXNTLXIIQWM%3d&se=1632871140&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2021-05 response: body: - string: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?api-version=2017-04dkldf2021-04-15T16:02:46Z2021-04-15T16:02:46Zservicebustestxcs2frcdh7https://servicebustest4ckckqanz3.servicebus.windows.net/dkldf?api-version=2021-05dkldf2021-09-28T22:19:01Z2021-09-28T22:19:01Zservicebustest4ckckqanz3PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-04-15T16:02:46.143Z2021-04-15T16:02:46.31ZfalsePT10MtrueAvailabletruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-09-28T22:19:01.43Z2021-09-28T22:19:01.673ZfalsePT10MtrueAvailabletruesb://servicebustest4ckckqanz3.servicebus.windows.net/aghadhsb://servicebustest4ckckqanz3.servicebus.windows.net/aghadh256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:02:46 GMT + date: Tue, 28 Sep 2021 22:19:01 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?api-version=2017-04 + url: https://servicebustest4ckckqanz3.servicebus.windows.net/dkldf?api-version=2021-05 - request: body: ' PT13S3072truePT11M2StruePT12M3S14truePT10M1Struetruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh' + type="application/xml">PT13S3072truePT11M2StruePT12M3S14truePT10M1Struetruesb://servicebustest4ckckqanz3.servicebus.windows.net/aghadhsb://servicebustest4ckckqanz3.servicebus.windows.net/aghadh' headers: Accept: - application/xml @@ -104,150 +104,181 @@ interactions: Content-Type: - application/atom+xml ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestxcs2frcdh7.servicebus.windows.net%2Faghadh&sig=oFix%2bVTm63gjawaXkPgmmvvssHMIoNJ5HEyVRBr14mg%3d&se=1618506167&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustest4ckckqanz3.servicebus.windows.net%2Faghadh&sig=PH31yj6dBUShEchHolpNpZ35yUEBkQjewAdKVqq%2bQ4Y%3d&se=1632871141&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestxcs2frcdh7.servicebus.windows.net%2Faghadh&sig=oFix%2bVTm63gjawaXkPgmmvvssHMIoNJ5HEyVRBr14mg%3d&se=1618506167&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustest4ckckqanz3.servicebus.windows.net%2Faghadh&sig=PH31yj6dBUShEchHolpNpZ35yUEBkQjewAdKVqq%2bQ4Y%3d&se=1632871141&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05 response: body: - string: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?api-version=2017-04vjiqjx2021-04-15T16:02:47Z2021-04-15T16:02:47Zservicebustestxcs2frcdh7https://servicebustest4ckckqanz3.servicebus.windows.net/vjiqjx?api-version=2021-05vjiqjx2021-09-28T22:19:02Z2021-09-28T22:19:02Zservicebustest4ckckqanz3PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-04-15T16:02:47.267Z2021-04-15T16:02:47.55ZfalsePT10M1StrueAvailabletruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T22:19:02.493Z2021-09-28T22:19:02.633ZfalsePT10M1StrueAvailabletruesb://servicebustest4ckckqanz3.servicebus.windows.net/aghadhsb://servicebustest4ckckqanz3.servicebus.windows.net/aghadh256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:02:47 GMT + date: Tue, 28 Sep 2021 22:19:02 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?api-version=2017-04 + url: https://servicebustest4ckckqanz3.servicebus.windows.net/vjiqjx?api-version=2021-05 +- request: + body: ' + + 1024' + headers: + Accept: + - application/xml + Content-Length: + - '324' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/clpqza?api-version=2021-05 + response: + body: + string: 400SubCode=40000. Bad Request. To know more + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:bbbcd5fd-1ed0-4f3d-9040-3c9715d55898_G6, + SystemTracker:servicebustestsbname.servicebus.windows.net:clpqza, Timestamp:2021-09-28T22:19:03 + headers: + content-type: application/xml; charset=utf-8 + date: Tue, 28 Sep 2021 22:19:02 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 400 + message: Bad Request + url: https://servicebustest4ckckqanz3.servicebus.windows.net/clpqza?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04dkldf2021-04-15T16:02:46Z2021-04-15T16:02:46Zservicebustestxcs2frcdh7https://servicebustest4ckckqanz3.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05dkldf2021-09-28T22:19:01Z2021-09-28T22:19:01Zservicebustest4ckckqanz3PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-04-15T16:02:46.143Z2021-04-15T16:02:46.31Z0001-01-01T00:00:00Zfalse00000PT10MtrueAvailabletruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-09-28T22:19:01.43Z2021-09-28T22:19:01.673Z0001-01-01T00:00:00Zfalse00000PT10MtrueAvailabletruesb://servicebustest4ckckqanz3.servicebus.windows.net/aghadhsb://servicebustest4ckckqanz3.servicebus.windows.net/aghadh256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:02:47 GMT - etag: '637540993663100000' + date: Tue, 28 Sep 2021 22:19:03 GMT + etag: '637684643416730000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04 + url: https://servicebustest4ckckqanz3.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?enrich=false&api-version=2017-04vjiqjx2021-04-15T16:02:47Z2021-04-15T16:02:47Zservicebustestxcs2frcdh7https://servicebustest4ckckqanz3.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05vjiqjx2021-09-28T22:19:02Z2021-09-28T22:19:02Zservicebustest4ckckqanz3PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-04-15T16:02:47.267Z2021-04-15T16:02:47.55Z0001-01-01T00:00:00Zfalse00000PT10M1StrueAvailabletruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T22:19:02.493Z2021-09-28T22:19:02.633Z0001-01-01T00:00:00Zfalse00000PT10M1StrueAvailabletruesb://servicebustest4ckckqanz3.servicebus.windows.net/aghadhsb://servicebustest4ckckqanz3.servicebus.windows.net/aghadh256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:02:47 GMT - etag: '637540993675500000' + date: Tue, 28 Sep 2021 22:19:03 GMT + etag: '637684643426330000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?enrich=false&api-version=2017-04 + url: https://servicebustest4ckckqanz3.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 16:02:48 GMT - etag: '637540993663100000' + date: Tue, 28 Sep 2021 22:19:03 GMT + etag: '637684643416730000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?api-version=2017-04 + url: https://servicebustest4ckckqanz3.servicebus.windows.net/dkldf?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 16:02:49 GMT - etag: '637540993675500000' + date: Tue, 28 Sep 2021 22:19:04 GMT + etag: '637684643426330000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?api-version=2017-04 + url: https://servicebustest4ckckqanz3.servicebus.windows.net/vjiqjx?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 16:02:50 GMT - etag: '637540993649770000' + date: Tue, 28 Sep 2021 22:19:04 GMT + etag: '637684643406100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh?api-version=2017-04 + url: https://servicebustest4ckckqanz3.servicebus.windows.net/aghadh?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_basic.yaml index 810106f4049c..9cf9f63904b9 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_basic.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:29Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:50Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:28 GMT + date: Tue, 28 Sep 2021 19:02:50 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,54 +34,54 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:29Z2020-09-29T08:32:29Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:51Z2021-09-28T19:02:51Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:51.107Z2021-09-28T19:02:51.14ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:29 GMT + date: Tue, 28 Sep 2021 19:02:51 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:30Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:29Z2020-09-29T08:32:29Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:52Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:51Z2021-09-28T19:02:51Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:51.107Z2021-09-28T19:02:51.14Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:29 GMT + date: Tue, 28 Sep 2021 19:02:51 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -95,152 +95,152 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:02:52Z2021-09-28T19:02:52Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:31.363Z2020-09-29T08:32:31.41ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:52.447Z2021-09-28T19:02:52.473ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:30 GMT + date: Tue, 28 Sep 2021 19:02:52 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:32Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:29Z2020-09-29T08:32:29Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:53Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:51Z2021-09-28T19:02:51Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:51.107Z2021-09-28T19:02:51.14Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:02:52Z2021-09-28T19:02:52Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:31.363Z2020-09-29T08:32:31.41Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:52.447Z2021-09-28T19:02:52.473Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:31 GMT + date: Tue, 28 Sep 2021 19:02:53 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:32 GMT - etag: '637369651497530000' + date: Tue, 28 Sep 2021 19:02:53 GMT + etag: '637684525711400000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:33Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:54Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:02:52Z2021-09-28T19:02:52Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:31.363Z2020-09-29T08:32:31.41Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:52.447Z2021-09-28T19:02:52.473Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:32 GMT + date: Tue, 28 Sep 2021 19:02:54 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:33 GMT - etag: '637369651514100000' + date: Tue, 28 Sep 2021 19:02:54 GMT + etag: '637684525724730000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:34Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:55Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:33 GMT + date: Tue, 28 Sep 2021 19:02:54 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_negtive.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_negtive.yaml index baf647215210..260f6278735a 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_negtive.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_negtive.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:35Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:55Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:34 GMT + date: Tue, 28 Sep 2021 19:02:55 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,144 +34,144 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:35Z2020-09-29T08:32:35Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:55Z2021-09-28T19:02:55Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:35.837Z2020-09-29T08:32:35.867ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:55.967Z2021-09-28T19:02:55.993ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:35 GMT + date: Tue, 28 Sep 2021 19:02:55 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:36Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:35Z2020-09-29T08:32:35Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:56Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:55Z2021-09-28T19:02:55Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:35.837Z2020-09-29T08:32:35.867Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:55.967Z2021-09-28T19:02:55.993Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:36 GMT + date: Tue, 28 Sep 2021 19:02:56 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:36 GMT - etag: '637369651558670000' + date: Tue, 28 Sep 2021 19:02:56 GMT + etag: '637684525759930000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:38Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:57Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:37 GMT + date: Tue, 28 Sep 2021 19:02:57 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: 404No service is hosted at the specified - address. TrackingId:274f5eea-9b59-42c9-969f-d5c670dd776d_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, - Timestamp:2020-09-29T08:32:38 + address. TrackingId:9fd55427-6813-4db8-a0bf-f1800177cbad_G7, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, + Timestamp:2021-09-28T19:02:58 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:32:37 GMT + date: Tue, 28 Sep 2021 19:02:57 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2021-05 response: body: string: 404No service is hosted at the specified - address. TrackingId:30371188-eeff-4660-9047-2cdb1e571a50_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, - Timestamp:2020-09-29T08:32:39 + address. TrackingId:a955fe64-3650-4c9a-9d2d-f34f20dd0520_G7, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, + Timestamp:2021-09-28T19:02:58 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:32:38 GMT + date: Tue, 28 Sep 2021 19:02:58 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/non_existing_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/non_existing_queue?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_one_and_check_not_existing.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_one_and_check_not_existing.yaml index de6db8711b87..a6b3506da044 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_one_and_check_not_existing.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_one_and_check_not_existing.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:40Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:59Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:39 GMT + date: Tue, 28 Sep 2021 19:02:58 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04queue02020-09-29T08:32:40Z2020-09-29T08:32:40Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue0?api-version=2021-05queue02021-09-28T19:02:59Z2021-09-28T19:02:59Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:40.46Z2020-09-29T08:32:40.487ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:59.673Z2021-09-28T19:02:59.71ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:40 GMT + date: Tue, 28 Sep 2021 19:02:59 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue0?api-version=2021-05 - request: body: ' @@ -67,26 +67,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:32:41Z2020-09-29T08:32:41Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue1?api-version=2021-05queue12021-09-28T19:03:00Z2021-09-28T19:03:00Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:41.367Z2020-09-29T08:32:41.4ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:00.56Z2021-09-28T19:03:00.627ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:41 GMT + date: Tue, 28 Sep 2021 19:03:00 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue1?api-version=2021-05 - request: body: ' @@ -100,26 +100,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:32:42Z2020-09-29T08:32:42Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue2?api-version=2021-05queue22021-09-28T19:03:01Z2021-09-28T19:03:01Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:42.31Z2020-09-29T08:32:42.387ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:01.453Z2021-09-28T19:03:01.513ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:42 GMT + date: Tue, 28 Sep 2021 19:03:01 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue2?api-version=2021-05 - request: body: ' @@ -133,26 +133,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:32:43Z2020-09-29T08:32:43Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue3?api-version=2021-05queue32021-09-28T19:03:02Z2021-09-28T19:03:02Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:43.293Z2020-09-29T08:32:43.323ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:02.337Z2021-09-28T19:03:02.363ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:43 GMT + date: Tue, 28 Sep 2021 19:03:02 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue3?api-version=2021-05 - request: body: ' @@ -166,26 +166,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:32:44Z2020-09-29T08:32:44Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue4?api-version=2021-05queue42021-09-28T19:03:03Z2021-09-28T19:03:03Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:44.133Z2020-09-29T08:32:44.163ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:03.357Z2021-09-28T19:03:03.397ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:44 GMT + date: Tue, 28 Sep 2021 19:03:03 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue4?api-version=2021-05 - request: body: ' @@ -199,26 +199,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue5?api-version=2021-05queue52021-09-28T19:03:04Z2021-09-28T19:03:04Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.087Z2020-09-29T08:32:45.12ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:04.217Z2021-09-28T19:03:04.25ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:45 GMT + date: Tue, 28 Sep 2021 19:03:04 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue5?api-version=2021-05 - request: body: ' @@ -232,26 +232,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue6?api-version=2021-05queue62021-09-28T19:03:05Z2021-09-28T19:03:05Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.957Z2020-09-29T08:32:45.987ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:05.103Z2021-09-28T19:03:05.157ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:46 GMT + date: Tue, 28 Sep 2021 19:03:05 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue6?api-version=2021-05 - request: body: ' @@ -265,26 +265,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:32:47Z2020-09-29T08:32:47Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue7?api-version=2021-05queue72021-09-28T19:03:06Z2021-09-28T19:03:06Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:47.053Z2020-09-29T08:32:47.123ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:06.13Z2021-09-28T19:03:06.187ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:47 GMT + date: Tue, 28 Sep 2021 19:03:06 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue7?api-version=2021-05 - request: body: ' @@ -298,26 +298,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:32:48Z2020-09-29T08:32:48Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue8?api-version=2021-05queue82021-09-28T19:03:07Z2021-09-28T19:03:07Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:48.303Z2020-09-29T08:32:48.397ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:07.02Z2021-09-28T19:03:07.07ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:48 GMT + date: Tue, 28 Sep 2021 19:03:07 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue8?api-version=2021-05 - request: body: ' @@ -331,342 +331,342 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:32:49Z2020-09-29T08:32:49Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue9?api-version=2021-05queue92021-09-28T19:03:07Z2021-09-28T19:03:07Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:49.18Z2020-09-29T08:32:49.233ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:07.9Z2021-09-28T19:03:07.927ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:49 GMT + date: Tue, 28 Sep 2021 19:03:08 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue9?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:50 GMT - etag: '637369651604870000' + date: Tue, 28 Sep 2021 19:03:08 GMT + etag: '637684525797100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue0?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:51Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:32:41Z2020-09-29T08:32:41Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:09Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/queue1?api-version=2021-05queue12021-09-28T19:03:00Z2021-09-28T19:03:00Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:41.367Z2020-09-29T08:32:41.4Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:32:42Z2020-09-29T08:32:42Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:00.56Z2021-09-28T19:03:00.627Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue2?api-version=2021-05queue22021-09-28T19:03:01Z2021-09-28T19:03:01Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:42.31Z2020-09-29T08:32:42.387Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:32:43Z2020-09-29T08:32:43Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:01.453Z2021-09-28T19:03:01.513Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue3?api-version=2021-05queue32021-09-28T19:03:02Z2021-09-28T19:03:02Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:43.2970843Z2020-09-29T08:32:43.2970843Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:32:44Z2020-09-29T08:32:44Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:02.337Z2021-09-28T19:03:02.363Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue4?api-version=2021-05queue42021-09-28T19:03:03Z2021-09-28T19:03:03Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:44.1411433Z2020-09-29T08:32:44.1411433Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:03.357Z2021-09-28T19:03:03.397Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue5?api-version=2021-05queue52021-09-28T19:03:04Z2021-09-28T19:03:04Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.087Z2020-09-29T08:32:45.12Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:04.217Z2021-09-28T19:03:04.25Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue6?api-version=2021-05queue62021-09-28T19:03:05Z2021-09-28T19:03:05Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.957Z2020-09-29T08:32:45.987Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:32:47Z2020-09-29T08:32:47Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:05.103Z2021-09-28T19:03:05.157Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue7?api-version=2021-05queue72021-09-28T19:03:06Z2021-09-28T19:03:06Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:47.053Z2020-09-29T08:32:47.123Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:32:48Z2020-09-29T08:32:48Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:06.13Z2021-09-28T19:03:06.187Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue8?api-version=2021-05queue82021-09-28T19:03:07Z2021-09-28T19:03:07Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:48.303Z2020-09-29T08:32:48.397Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:32:49Z2020-09-29T08:32:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:07.02Z2021-09-28T19:03:07.07Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue9?api-version=2021-05queue92021-09-28T19:03:07Z2021-09-28T19:03:07Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:49.18Z2020-09-29T08:32:49.233Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:07.9Z2021-09-28T19:03:07.927Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:50 GMT + date: Tue, 28 Sep 2021 19:03:09 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:51 GMT - etag: '637369651614000000' + date: Tue, 28 Sep 2021 19:03:09 GMT + etag: '637684525806270000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue1?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:51 GMT - etag: '637369651623870000' + date: Tue, 28 Sep 2021 19:03:10 GMT + etag: '637684525815130000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue2?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:52 GMT - etag: '637369651633230000' + date: Tue, 28 Sep 2021 19:03:10 GMT + etag: '637684525823630000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue3?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:53 GMT - etag: '637369651641630000' + date: Tue, 28 Sep 2021 19:03:11 GMT + etag: '637684525833970000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue4?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:53 GMT - etag: '637369651651200000' + date: Tue, 28 Sep 2021 19:03:11 GMT + etag: '637684525842500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue5?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:54 GMT - etag: '637369651659870000' + date: Tue, 28 Sep 2021 19:03:12 GMT + etag: '637684525851570000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue6?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:54 GMT - etag: '637369651671230000' + date: Tue, 28 Sep 2021 19:03:12 GMT + etag: '637684525861870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue7?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:55 GMT - etag: '637369651683970000' + date: Tue, 28 Sep 2021 19:03:13 GMT + etag: '637684525870700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue8?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:32:56 GMT - etag: '637369651692330000' + date: Tue, 28 Sep 2021 19:03:13 GMT + etag: '637684525879270000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/queue9?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:56Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:14Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:32:56 GMT + date: Tue, 28 Sep 2021 19:03:14 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_basic.yaml index aaac23e10f1a..814c16c7dcb2 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_basic.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:00Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:15Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:00 GMT + date: Tue, 28 Sep 2021 19:03:14 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,74 +34,74 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:01Z2020-08-17T08:04:01Zservicebustest32ip2wgoaahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:03:15Z2021-09-28T19:03:15Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:01.617Z2020-08-17T08:04:01.647ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:15.51Z2021-09-28T19:03:15.563ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:01 GMT + date: Tue, 28 Sep 2021 19:03:15 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2020-08-17T08:04:01Z2020-08-17T08:04:01Zservicebustest32ip2wgoaahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05test_queue2021-09-28T19:03:15Z2021-09-28T19:03:15Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:01.617Z2020-08-17T08:04:01.647Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:15.51Z2021-09-28T19:03:15.563Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:01 GMT - etag: '637332482416470000' + date: Tue, 28 Sep 2021 19:03:15 GMT + etag: '637684525955630000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:02 GMT - etag: '637332482416470000' + date: Tue, 28 Sep 2021 19:03:15 GMT + etag: '637684525955630000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_negative.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_negative.yaml index 7102a991620a..0638e35b5a97 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_negative.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_negative.yaml @@ -5,23 +5,23 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2021-05 response: body: string: Publicly Listed ServicesThis is the list of publicly-listed - services currently available.uuid:e4e29a83-4283-42c2-b898-651ab270db36;id=334962020-08-17T08:04:04ZService + services currently available.uuid:3e7da870-4374-49c6-a3d7-4a91c6fdccd9;id=63402021-09-28T19:03:17ZService Bus 1.1 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:04 GMT + date: Tue, 28 Sep 2021 19:03:16 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_basic.yaml index 175c98ab2025..bb24350f6057 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_basic.yaml @@ -5,44 +5,44 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:01Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:17Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:01 GMT + date: Tue, 28 Sep 2021 19:03:17 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:02Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:18Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:02 GMT + date: Tue, 28 Sep 2021 19:03:18 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -56,120 +56,120 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:02Z2020-09-29T08:33:02Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:03:18Z2021-09-28T19:03:18Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:02.85Z2020-09-29T08:33:02.88ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:18.917Z2021-09-28T19:03:18.953ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:03 GMT + date: Tue, 28 Sep 2021 19:03:19 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:03Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:02Z2020-09-29T08:33:02Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:19Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:03:18Z2021-09-28T19:03:18Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:02.85Z2020-09-29T08:33:02.88Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:18.917Z2021-09-28T19:03:18.953Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:03 GMT + date: Tue, 28 Sep 2021 19:03:19 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:04 GMT - etag: '637369651828800000' + date: Tue, 28 Sep 2021 19:03:20 GMT + etag: '637684525989530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:04Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:20Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:04 GMT + date: Tue, 28 Sep 2021 19:03:20 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:05Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:21Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:04 GMT + date: Tue, 28 Sep 2021 19:03:20 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -183,96 +183,96 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:05Z2020-09-29T08:33:05Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:03:21Z2021-09-28T19:03:21Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:05.77Z2020-09-29T08:33:05.8ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:21.633Z2021-09-28T19:03:21.67ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:05 GMT + date: Tue, 28 Sep 2021 19:03:21 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:06Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:05Z2020-09-29T08:33:05Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:22Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:03:21Z2021-09-28T19:03:21Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:05.77Z2020-09-29T08:33:05.8Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:21.633Z2021-09-28T19:03:21.67Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:05 GMT + date: Tue, 28 Sep 2021 19:03:21 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:06 GMT - etag: '637369651858000000' + date: Tue, 28 Sep 2021 19:03:22 GMT + etag: '637684526016700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:07Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:23Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:07 GMT + date: Tue, 28 Sep 2021 19:03:22 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_properties_basic.yaml index fee1c62fbae2..dd11485f9168 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_properties_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_properties_basic.yaml @@ -5,66 +5,66 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:12Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:24Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:11 GMT + date: Tue, 28 Sep 2021 19:03:24 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:12Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:24Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:12 GMT + date: Tue, 28 Sep 2021 19:03:24 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:13Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:24Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:12 GMT + date: Tue, 28 Sep 2021 19:03:24 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -78,124 +78,124 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:13Z2020-08-17T08:04:13Zservicebustest32ip2wgoaahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:03:25Z2021-09-28T19:03:25Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:13.727Z2020-08-17T08:04:13.753ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:25.417Z2021-09-28T19:03:25.447ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:13 GMT + date: Tue, 28 Sep 2021 19:03:25 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:14Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:13Z2020-08-17T08:04:13Zservicebustest32ip2wgoaaQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:26Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:03:25Z2021-09-28T19:03:25Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:13.727Z2020-08-17T08:04:13.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:25.417Z2021-09-28T19:03:25.447Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:14 GMT + date: Tue, 28 Sep 2021 19:03:26 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:15Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:13Z2020-08-17T08:04:13Zservicebustest32ip2wgoaaQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:26Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:03:25Z2021-09-28T19:03:25Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:13.727Z2020-08-17T08:04:13.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:25.417Z2021-09-28T19:03:25.447Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:14 GMT + date: Tue, 28 Sep 2021 19:03:26 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:15 GMT - etag: '637332482537530000' + date: Tue, 28 Sep 2021 19:03:27 GMT + etag: '637684526054470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_queue?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:16Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:27Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:15 GMT + date: Tue, 28 Sep 2021 19:03:27 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_negative_credential.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_negative_credential.yaml index 408ef8577f83..7ff95c81bab1 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_negative_credential.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_negative_credential.yaml @@ -5,46 +5,46 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: 401claim is empty or token is invalid. TrackingId:bf0e040b-8d63-4468-9cc8-421273cd3c59_G4, + string: 401claim is empty or token is invalid. TrackingId:da2c8494-eda9-41e1-877e-61ca9deac4ef_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-09-29T08:33:13 + Timestamp:2021-09-28T19:03:28 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:33:12 GMT + date: Tue, 28 Sep 2021 19:03:27 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 401 message: Unauthorized - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: 401claim is empty or token is invalid. TrackingId:ce4339ff-254a-4730-b12a-af0a240533c3_G1, + string: 401claim is empty or token is invalid. TrackingId:16e9cc9a-40c7-4338-af41-dd8b7a4aa048_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-09-29T08:33:13 + Timestamp:2021-09-28T19:03:28 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:33:13 GMT + date: Tue, 28 Sep 2021 19:03:27 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 401 message: Unauthorized - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_special_chars.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_special_chars.yaml index c1f11bc641ea..9d721b4277e2 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_special_chars.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_special_chars.yaml @@ -5,44 +5,44 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:14Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:28Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:14 GMT + date: Tue, 28 Sep 2021 19:03:27 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:15Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:29Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:14 GMT + date: Tue, 28 Sep 2021 19:03:28 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -56,96 +56,96 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:33:15Z2020-09-29T08:33:15Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:03:29Z2021-09-28T19:03:29Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:15.657Z2020-09-29T08:33:15.693ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:29.463Z2021-09-28T19:03:29.52ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:15 GMT + date: Tue, 28 Sep 2021 19:03:28 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:16Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:33:15Z2020-09-29T08:33:15Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:30Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:03:29Z2021-09-28T19:03:29Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:15.657Z2020-09-29T08:33:15.693Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:03:29.463Z2021-09-28T19:03:29.52Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:16 GMT + date: Tue, 28 Sep 2021 19:03:30 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:17 GMT - etag: '637369651956930000' + date: Tue, 28 Sep 2021 19:03:30 GMT + etag: '637684526095200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:17Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:03:31Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:17 GMT + date: Tue, 28 Sep 2021 19:03:31 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_premium_create_with_queue_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_premium_create_with_queue_description.yaml new file mode 100644 index 000000000000..12fb09eaec84 --- /dev/null +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_premium_create_with_queue_description.yaml @@ -0,0 +1,329 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 + response: + body: + string: Queueshttps://servicebustestv73qvndifp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:10Z + headers: + content-type: application/atom+xml;type=feed;charset=utf-8 + date: Tue, 28 Sep 2021 19:05:10 GMT + server: Microsoft-HTTPAPI/2.0 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 +- request: + body: ' + + PT13S3072truePT11MtruePT12M14truePT10M12345' + headers: + Accept: + - application/xml + Content-Length: + - '790' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/dkldf?api-version=2021-05dkldf2021-09-28T19:05:10Z2021-09-28T19:05:11Zservicebustestv73qvndifpPT13S3072falsetruePT11MtruePT12M14true00falseActive2021-09-28T19:05:10.557Z2021-09-28T19:05:11.2ZtruePT10MfalseAvailablefalse12345 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:05:11 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 201 + message: Created + url: https://servicebustestv73qvndifp.servicebus.windows.net/dkldf?api-version=2021-05 +- request: + body: ' + + PT13S3072truePT11M2StruePT12M3S14truePT10M1S' + headers: + Accept: + - application/xml + Content-Length: + - '736' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/vjiqjx?api-version=2021-05vjiqjx2021-09-28T19:05:12Z2021-09-28T19:05:12Zservicebustestv73qvndifpPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:05:12.01Z2021-09-28T19:05:12.073ZtruePT10M1SfalseAvailablefalse1024 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:05:12 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 201 + message: Created + url: https://servicebustestv73qvndifp.servicebus.windows.net/vjiqjx?api-version=2021-05 +- request: + body: ' + + 1023' + headers: + Accept: + - application/xml + Content-Length: + - '324' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05 + response: + body: + string: '400SubCode=40000. The property value for + ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace + ''servicebustestsbname'' is using ''Premium'' tier. + + Parameter name: MaxMessageSizeInKilobytes + + Actual value was 1023. TrackingId:640e3dd9-6482-43c8-b456-d721cb653278_G12, + SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-09-28T19:05:13' + headers: + content-type: application/xml; charset=utf-8 + date: Tue, 28 Sep 2021 19:05:12 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 400 + message: Bad Request + url: https://servicebustestv73qvndifp.servicebus.windows.net/rekocd?api-version=2021-05 +- request: + body: ' + + 102401' + headers: + Accept: + - application/xml + Content-Length: + - '326' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05 + response: + body: + string: '400SubCode=40000. The property value for + ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace + ''servicebustestsbname'' is using ''Premium'' tier. + + Parameter name: MaxMessageSizeInKilobytes + + Actual value was 102401. TrackingId:d28c3a88-563c-4660-adab-2d61f23e9665_G12, + SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-09-28T19:05:13' + headers: + content-type: application/xml; charset=utf-8 + date: Tue, 28 Sep 2021 19:05:13 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 400 + message: Bad Request + url: https://servicebustestv73qvndifp.servicebus.windows.net/rekocd?api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05dkldf2021-09-28T19:05:10Z2021-09-28T19:05:11Zservicebustestv73qvndifpPT13S3072falsetruePT11MtruePT12M14true00falseActive2021-09-28T19:05:10.557Z2021-09-28T19:05:11.2Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailablefalse12345 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:05:13 GMT + etag: '637684527112000000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05vjiqjx2021-09-28T19:05:12Z2021-09-28T19:05:12Zservicebustestv73qvndifpPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:05:12.01Z2021-09-28T19:05:12.073Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse1024 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:05:13 GMT + etag: '637684527120730000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05 +- request: + body: ' + + PT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:05:12.010Z2021-09-28T19:05:12.073Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailablefalse54321' + headers: + Accept: + - application/xml + Content-Length: + - '1743' + Content-Type: + - application/atom+xml + If-Match: + - '*' + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/vjiqjx?api-version=2021-05vjiqjx2021-09-28T19:05:13Zservicebustestv73qvndifpPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:05:12.01Z2021-09-28T19:05:12.073Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse54321 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:05:13 GMT + etag: '637684527120730000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/vjiqjx?api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05vjiqjx2021-09-28T19:05:12Z2021-09-28T19:05:13Zservicebustestv73qvndifpPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:05:12.01Z2021-09-28T19:05:13.74Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse54321 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:05:13 GMT + etag: '637684527137400000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2021-05 + response: + body: + string: '' + headers: + content-length: '0' + date: Tue, 28 Sep 2021 19:05:13 GMT + etag: '637684527112000000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/dkldf?api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05 + response: + body: + string: '' + headers: + content-length: '0' + date: Tue, 28 Sep 2021 19:05:15 GMT + etag: '637684527137400000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/vjiqjx?api-version=2021-05 +version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_invalid.yaml index 05b8eea0024c..8b855aa61607 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_invalid.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_invalid.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:18Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:15Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:18 GMT + date: Tue, 28 Sep 2021 19:05:15 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,116 +34,116 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04vbmfm2020-09-29T08:33:19Z2020-09-29T08:33:19Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/vbmfm?api-version=2021-05vbmfm2021-09-28T19:05:16Z2021-09-28T19:05:16Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:05:16.02Z2021-09-28T19:05:16.067ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:19 GMT + date: Tue, 28 Sep 2021 19:05:15 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/vbmfm?api-version=2021-05 - request: body: ' PT1M1024falsetrueP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:05:16.020Z2021-09-28T19:05:16.067ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '1264' + - '1322' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2021-05 response: body: string: 400SubCode=40000. The value for the RequiresSession property of an existing Queue cannot be changed. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:75d6d8e8-691c-4947-a92a-9fd571da1825_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, - Timestamp:2020-09-29T08:33:19 + . TrackingId:0727a3e7-7cb0-4f03-b8d2-93056d141ebe_G13, SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, + Timestamp:2021-09-28T19:05:16 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:33:19 GMT - etag: '637369651991870000' + date: Tue, 28 Sep 2021 19:05:15 GMT + etag: '637684527160670000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 400 message: Bad Request - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/vbmfm?api-version=2021-05 - request: body: ' PT1M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:05:16.020Z2021-09-28T19:05:16.067ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '1265' + - '1323' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkfrgx?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkfrgx?api-version=2021-05 response: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:217e54d3-cce5-43a5-8551-93d74a12423d_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:dkfrgx, - Timestamp:2020-09-29T08:33:20 + . TrackingId:b942426c-70f6-4b04-8550-8be90654f62c_G13, SystemTracker:servicebustestsbname.servicebus.windows.net:dkfrgx, + Timestamp:2021-09-28T19:05:17 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:33:20 GMT + date: Tue, 28 Sep 2021 19:05:16 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkfrgx?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfrgx?api-version=2021-05 - request: body: ' P25D1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:05:16.020Z2021-09-28T19:05:16.067ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '1265' + - '1323' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2021-05 response: body: string: '400SubCode=40000. The supplied lock time @@ -152,39 +152,39 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:c2f92936-a8b8-4678-96ec-7201b03856cd_G15, - SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, Timestamp:2020-09-29T08:33:20' + Actual value was 25.00:00:00. TrackingId:103757c6-e32d-4d67-9c7c-28925c19e773_G13, + SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, Timestamp:2021-09-28T19:05:17' headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:33:20 GMT - etag: '637369651991870000' + date: Tue, 28 Sep 2021 19:05:16 GMT + etag: '637684527160670000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 400 message: Bad Request - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/vbmfm?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:21 GMT - etag: '637369651991870000' + date: Tue, 28 Sep 2021 19:05:17 GMT + etag: '637684527160670000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/vbmfm?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_success.yaml index 871653e6bc3a..82287b17a45c 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_success.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestfqnwzqws3j.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-22T14:22:02Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:18Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:01 GMT + date: Tue, 28 Sep 2021 19:05:18 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:03Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-09-28T19:05:19Z2021-09-28T19:05:19Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:03.523ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:19.15ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:03 GMT + date: Tue, 28 Sep 2021 19:05:19 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05 - request: body: ' @@ -67,480 +67,480 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkfjaks?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkfjaks?api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks?api-version=2017-04dkfjaks2021-04-22T14:22:04Z2021-04-22T14:22:04Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfjaks?api-version=2021-05dkfjaks2021-09-28T19:05:20Z2021-09-28T19:05:20Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:22:04.643Z2021-04-22T14:22:04.68ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:20.113Z2021-09-28T19:05:20.16ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:04 GMT + date: Tue, 28 Sep 2021 19:05:20 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfjaks?api-version=2021-05 - request: body: ' PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:03.523ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:05:19.083Z2021-09-28T19:05:19.150ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '1265' + - '1323' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:05Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-09-28T19:05:20Zservicebustestkv3s7h2dmwPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:03.523ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:19.15ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:04 GMT - etag: '637546981235230000' + date: Tue, 28 Sep 2021 19:05:20 GMT + etag: '637684527191500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:05Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-09-28T19:05:19Z2021-09-28T19:05:20Zservicebustestkv3s7h2dmwPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.357Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:20.62Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:04 GMT - etag: '637546981253570000' + date: Tue, 28 Sep 2021 19:05:20 GMT + etag: '637684527206200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 - request: body: ' PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.357Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjakssb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks' + />Active2021-09-28T19:05:19.083Z2021-09-28T19:05:20.620Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfjakssb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfjaks256' headers: Accept: - application/xml Content-Length: - - '1924' + - '1982' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fdkfjaks&sig=9eCE6EFfh7DCGTxM2%2b%2fQW8QH9QvIaswfeuAwb5zuC7A%3d&se=1619104925&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fdkfjaks&sig=88FSQbIHvMlDPM7oL%2fHvwTZYGQuSRLd%2bvxOeE5leplU%3d&se=1632859520&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fdkfjaks&sig=9eCE6EFfh7DCGTxM2%2b%2fQW8QH9QvIaswfeuAwb5zuC7A%3d&se=1619104925&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fdkfjaks&sig=88FSQbIHvMlDPM7oL%2fHvwTZYGQuSRLd%2bvxOeE5leplU%3d&se=1632859520&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:05Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-09-28T19:05:20Zservicebustestkv3s7h2dmwPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.357Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjakssb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:20.62Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfjakssb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfjaks256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:04 GMT - etag: '637546981253570000' + date: Tue, 28 Sep 2021 19:05:20 GMT + etag: '637684527206200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:05Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-09-28T19:05:19Z2021-09-28T19:05:20Zservicebustestkv3s7h2dmwPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.87Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjakssb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:20.847Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfjakssb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfjaks256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:05 GMT - etag: '637546981258700000' + date: Tue, 28 Sep 2021 19:05:20 GMT + etag: '637684527208470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 - request: body: ' PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.870Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:05:19.083Z2021-09-28T19:05:20.847Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '1718' + - '1776' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:06Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-09-28T19:05:21Zservicebustestkv3s7h2dmwPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.87Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:20.847Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:05 GMT - etag: '637546981258700000' + date: Tue, 28 Sep 2021 19:05:20 GMT + etag: '637684527208470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:06Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-09-28T19:05:19Z2021-09-28T19:05:21Zservicebustestkv3s7h2dmwPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.417Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:21.077Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:05 GMT - etag: '637546981264170000' + date: Tue, 28 Sep 2021 19:05:20 GMT + etag: '637684527210770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 - request: body: ' PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.417Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj' + />Active2021-09-28T19:05:19.083Z2021-09-28T19:05:21.077Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletruesb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfjsb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj256' headers: Accept: - application/xml Content-Length: - - '1883' + - '1941' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fewuidfj&sig=d6X10PaSTT9Rj98yJXEjUPA7tr5zYppaLVFDLPJJ97U%3d&se=1619104927&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fewuidfj&sig=GlpwFSg0Lsg6S96fT4pFfRAo%2fjglgYJfZjQrKigu1e0%3d&se=1632859520&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fewuidfj&sig=d6X10PaSTT9Rj98yJXEjUPA7tr5zYppaLVFDLPJJ97U%3d&se=1619104927&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fewuidfj&sig=GlpwFSg0Lsg6S96fT4pFfRAo%2fjglgYJfZjQrKigu1e0%3d&se=1632859520&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:06Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-09-28T19:05:21Zservicebustestkv3s7h2dmwPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.417Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:21.077Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfjsb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:06 GMT - etag: '637546981264170000' + date: Tue, 28 Sep 2021 19:05:20 GMT + etag: '637684527210770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:06Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-09-28T19:05:19Z2021-09-28T19:05:21Zservicebustestkv3s7h2dmwPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.97Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:21.283Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfjsb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:06 GMT - etag: '637546981269700000' + date: Tue, 28 Sep 2021 19:05:20 GMT + etag: '637684527212830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 - request: body: ' PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.970Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj' + />Active2021-09-28T19:05:19.083Z2021-09-28T19:05:21.283Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfjsb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj256' headers: Accept: - application/xml Content-Length: - - '1889' + - '1947' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fewuidfj&sig=d6X10PaSTT9Rj98yJXEjUPA7tr5zYppaLVFDLPJJ97U%3d&se=1619104927&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fewuidfj&sig=O2b%2bdwja8Au9AYjVZ9vOo9n9tHkw1OUb%2beJgdb7O5ng%3d&se=1632859521&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fewuidfj&sig=d6X10PaSTT9Rj98yJXEjUPA7tr5zYppaLVFDLPJJ97U%3d&se=1619104927&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fewuidfj&sig=O2b%2bdwja8Au9AYjVZ9vOo9n9tHkw1OUb%2beJgdb7O5ng%3d&se=1632859521&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:07Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-09-28T19:05:21Zservicebustestkv3s7h2dmwPT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.97Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:21.283Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfjsb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:06 GMT - etag: '637546981269700000' + date: Tue, 28 Sep 2021 19:05:20 GMT + etag: '637684527212830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:07Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-09-28T19:05:19Z2021-09-28T19:05:21Zservicebustestkv3s7h2dmwPT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:07.697Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:21.5Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfjsb://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:06 GMT - etag: '637546981276970000' + date: Tue, 28 Sep 2021 19:05:21 GMT + etag: '637684527215000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 - request: body: ' PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:07.697Z0001-01-01T00:00:00.000Ztrue00000PT15MfalseAvailablefalse' + />Active2021-09-28T19:05:19.083Z2021-09-28T19:05:21.500Z0001-01-01T00:00:00.000Ztrue00000PT15MfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '1680' + - '1738' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:08Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-09-28T19:05:21Zservicebustestkv3s7h2dmwPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:07.697Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:21.5Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:08 GMT - etag: '637546981276970000' + date: Tue, 28 Sep 2021 19:05:21 GMT + etag: '637684527215000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:08Zservicebustestfqnwzqws3jhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-09-28T19:05:19Z2021-09-28T19:05:21Zservicebustestkv3s7h2dmwPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:08.21Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-09-28T19:05:19.083Z2021-09-28T19:05:21.917Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:22:08 GMT - etag: '637546981282100000' + date: Tue, 28 Sep 2021 19:05:21 GMT + etag: '637684527219170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 14:22:09 GMT - etag: '637546981282100000' + date: Tue, 28 Sep 2021 19:05:22 GMT + etag: '637684527219170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/ewuidfj?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dkfjaks?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkfjaks?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 14:22:10 GMT - etag: '637546981246800000' + date: Tue, 28 Sep 2021 19:05:22 GMT + etag: '637684527201600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfjaks?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_error.yaml index 94ade4d1a544..ad6f786571cc 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_error.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_error.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestppoxgfmrp5.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:46:31Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:23Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 19 Apr 2021 17:46:31 GMT + date: Tue, 28 Sep 2021 19:05:22 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestppoxgfmrp5.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,46 +34,46 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestppoxgfmrp5.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-19T17:46:32Z2021-04-19T17:46:32Zservicebustestppoxgfmrp5https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:05:24Z2021-09-28T19:05:24Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:46:32.093Z2021-04-19T17:46:32.17ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:05:24.197Z2021-09-28T19:05:24.24ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 19 Apr 2021 17:46:32 GMT + date: Tue, 28 Sep 2021 19:05:23 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestppoxgfmrp5.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 19 Apr 2021 17:46:33 GMT - etag: '637544511921700000' + date: Tue, 28 Sep 2021 19:05:24 GMT + etag: '637684527242400000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestppoxgfmrp5.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_success.yaml index 2d786c784b2c..0336861cdb56 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_success.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestpwknnldq6x.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-22T14:24:03Z + string: Queueshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:25Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 22 Apr 2021 14:24:02 GMT + date: Tue, 28 Sep 2021 19:05:25 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpwknnldq6x.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,245 +34,245 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:24:04Z2021-04-22T14:24:04Zservicebustestpwknnldq6xhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:05:26Z2021-09-28T19:05:26Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-22T14:24:04.273Z2021-04-22T14:24:04.33ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:05:26.127Z2021-09-28T19:05:26.193ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:24:03 GMT + date: Tue, 28 Sep 2021 19:05:26 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: ' PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse' + />ActiveP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '1022' + - '1080' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:24:05Zservicebustestpwknnldq6xhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:05:26Zservicebustestkv3s7h2dmwPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:24:05 GMT - etag: '637546982443300000' + date: Tue, 28 Sep 2021 19:05:26 GMT + etag: '637684527261930000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:24:04Z2021-04-22T14:24:05Zservicebustestpwknnldq6xhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:05:26Z2021-09-28T19:05:26Zservicebustestkv3s7h2dmwPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:24:04.273Z2021-04-22T14:24:05.08Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:05:26.127Z2021-09-28T19:05:26.79Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:24:05 GMT - etag: '637546982450800000' + date: Tue, 28 Sep 2021 19:05:26 GMT + etag: '637684527267900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 - request: body: ' PT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestpwknnldq6x.servicebus.windows.net/fjruidsb://servicebustestpwknnldq6x.servicebus.windows.net/fjruid' + />ActivePT10MfalseAvailabletruesb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruidsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid256' headers: Accept: - application/xml Content-Length: - - '1185' + - '1243' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpwknnldq6x.servicebus.windows.net%2Ffjruid&sig=fooyG%2bHIrDxXJWrBUlW%2fdOywD2yeOOcK0Kg%2frvIq1mM%3d&se=1619105045&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Ffjruid&sig=zfaxY9549NnqRjwA5Zb0dtXpLh57n4WnWicoZ99GHHQ%3d&se=1632859526&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpwknnldq6x.servicebus.windows.net%2Ffjruid&sig=fooyG%2bHIrDxXJWrBUlW%2fdOywD2yeOOcK0Kg%2frvIq1mM%3d&se=1619105045&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Ffjruid&sig=zfaxY9549NnqRjwA5Zb0dtXpLh57n4WnWicoZ99GHHQ%3d&se=1632859526&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:24:05Zservicebustestpwknnldq6xhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:05:27Zservicebustestkv3s7h2dmwPT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestpwknnldq6x.servicebus.windows.net/fjruidsb://servicebustestpwknnldq6x.servicebus.windows.net/fjruid + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruidsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:24:05 GMT - etag: '637546982450800000' + date: Tue, 28 Sep 2021 19:05:26 GMT + etag: '637684527267900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:24:04Z2021-04-22T14:24:05Zservicebustestpwknnldq6xhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:05:26Z2021-09-28T19:05:26Zservicebustestkv3s7h2dmwPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-04-22T14:24:04.273Z2021-04-22T14:24:05.717Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestpwknnldq6x.servicebus.windows.net/fjruidsb://servicebustestpwknnldq6x.servicebus.windows.net/fjruid + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-09-28T19:05:26.127Z2021-09-28T19:05:26.99Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruidsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:24:05 GMT - etag: '637546982457170000' + date: Tue, 28 Sep 2021 19:05:26 GMT + etag: '637684527269900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 - request: body: ' PT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse' + />ActivePT15MfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '984' + - '1042' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:24:06Zservicebustestpwknnldq6xhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:05:27Zservicebustestkv3s7h2dmwPT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:24:06 GMT - etag: '637546982457170000' + date: Tue, 28 Sep 2021 19:05:26 GMT + etag: '637684527269900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:24:04Z2021-04-22T14:24:06Zservicebustestpwknnldq6xhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:05:26Z2021-09-28T19:05:27Zservicebustestkv3s7h2dmwPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-04-22T14:24:04.273Z2021-04-22T14:24:06.25Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-09-28T19:05:26.127Z2021-09-28T19:05:27.21Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:24:06 GMT - etag: '637546982462500000' + date: Tue, 28 Sep 2021 19:05:26 GMT + etag: '637684527272100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 14:24:07 GMT - etag: '637546982462500000' + date: Tue, 28 Sep 2021 19:05:27 GMT + etag: '637684527272100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create.yaml index f296a6b9cef8..2e7e56022397 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestllhlzps6iq.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T17:03:27Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:28Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:26 GMT + date: Tue, 28 Sep 2021 19:05:28 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: - string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2021-04-15T17:03:27Z2021-04-15T17:03:27Zservicebustestllhlzps6iqhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-09-28T19:05:28Z2021-09-28T19:05:29Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T17:03:27.837Z2021-04-15T17:03:27.883ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:28.907Z2021-09-28T19:05:29.017ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:27 GMT + date: Tue, 28 Sep 2021 19:05:29 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05 - request: body: ' @@ -67,27 +67,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: - string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2021-04-15T17:03:28Z2021-04-15T17:03:28Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-09-28T19:05:29Z2021-09-28T19:05:29ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-15T17:03:28.5296322Z2021-04-15T17:03:28.5296322Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:29.9342072Z2021-09-28T19:05:29.9342072Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:28 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:30 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 - request: body: ' @@ -110,14 +110,14 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 response: body: - string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12021-04-15T17:03:28Z2021-04-15T17:03:28Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-09-28T19:05:30Z2021-09-28T19:05:30Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13true2021-04-15T17:03:28.9515195Ztest_rule_1 + i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2021-09-28T19:05:30.7154528Ztest_rule_1 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:28 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:30 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12021-04-15T17:03:28Z2021-04-15T17:03:28Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05test_rule_12021-09-28T19:05:30Z2021-09-28T19:05:30Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13true2021-04-15T17:03:28.9417589Ztest_rule_1 + i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2021-09-28T19:05:30.7145222Ztest_rule_1 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:28 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:30 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05 - request: body: ' @@ -191,62 +191,62 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 response: body: - string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22021-04-15T17:03:29Z2021-04-15T17:03:29Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-09-28T19:05:30Z2021-09-28T19:05:30ZPriority = @param1 AND Level = @param220@param1str1@param21true2021-04-15T17:03:29.5139946Ztest_rule_2 + i:type="EmptyRuleAction"/>2021-09-28T19:05:30.918579Ztest_rule_2 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:28 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:30 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22021-04-15T17:03:29Z2021-04-15T17:03:29Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05test_rule_22021-09-28T19:05:30Z2021-09-28T19:05:30ZPriority = @param1 AND Level = @param220@param1str1@param21true2021-04-15T17:03:29.5198982Ztest_rule_2 + i:type="EmptyRuleAction"/>2021-09-28T19:05:30.9176397Ztest_rule_2 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:29 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:30 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05 - request: body: ' @@ -262,56 +262,56 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 response: body: - string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32021-04-15T17:03:30Z2021-04-15T17:03:30Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-09-28T19:05:31Z2021-09-28T19:05:31Z1=1202021-04-15T17:03:30.0452175Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:05:31.0123299Ztest_rule_3 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:29 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:30 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32021-04-15T17:03:30Z2021-04-15T17:03:30Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05test_rule_32021-09-28T19:05:31Z2021-09-28T19:05:31Z1=1202021-04-15T17:03:30.0605402Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:05:31.0113559Ztest_rule_3 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:29 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:30 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05 - request: body: ' @@ -327,186 +327,186 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05 response: body: - string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04test_rule_42021-04-15T17:03:30Z2021-04-15T17:03:30Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05test_rule_42021-09-28T19:05:31Z2021-09-28T19:05:31Z1=1202021-04-15T17:03:30.607722Ztest_rule_4 + i:type="EmptyRuleAction"/>2021-09-28T19:05:31.1217003Ztest_rule_4 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:29 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:30 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04test_rule_42021-04-15T17:03:30Z2021-04-15T17:03:30Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05test_rule_42021-09-28T19:05:31Z2021-09-28T19:05:31Z1=1202021-04-15T17:03:30.607381Ztest_rule_4 + i:type="EmptyRuleAction"/>2021-09-28T19:05:31.1207368Ztest_rule_4 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 17:03:30 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:31 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 17:03:30 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:31 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 17:03:30 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:31 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 17:03:31 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:31 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 17:03:31 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:31 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 17:03:31 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:31 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 17:03:32 GMT - etag: '637541030078830000' + date: Tue, 28 Sep 2021 19:05:32 GMT + etag: '637684527290170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create_duplicate.yaml index a8604ad90164..b9cd7c99cf9b 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create_duplicate.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create_duplicate.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:33Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:32Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:32 GMT + date: Tue, 28 Sep 2021 19:05:32 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-11-23T20:27:33Z2020-11-23T20:27:33Zservicebustestebgplp6kllhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-09-28T19:05:33Z2021-09-28T19:05:33Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:33.63Z2020-11-23T20:27:33.68ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:33.32Z2021-09-28T19:05:33.37ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:33 GMT + date: Tue, 28 Sep 2021 19:05:33 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05 - request: body: ' @@ -67,27 +67,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-11-23T20:27:34Z2020-11-23T20:27:34Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05kkaqo2021-09-28T19:05:33Z2021-09-28T19:05:33ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:34.1368312Z2020-11-23T20:27:34.1368312Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:33.9094405Z2021-09-28T19:05:33.9094405Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:33 GMT - etag: '637417600536800000' + date: Tue, 28 Sep 2021 19:05:33 GMT + etag: '637684527333700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 - request: body: ' @@ -103,29 +103,29 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-11-23T20:27:34Z2020-11-23T20:27:34Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05rule2021-09-28T19:05:34Z2021-09-28T19:05:34ZPriority = 'low'20true2020-11-23T20:27:34.4180924Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:34.0500681Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:33 GMT - etag: '637417600536800000' + date: Tue, 28 Sep 2021 19:05:34 GMT + etag: '637684527333700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05 - request: body: ' @@ -141,89 +141,89 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05 response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo|rule' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:45ade154-b11b-4ed8-af3d-d19ad487cae4_B5, - SystemTracker:NoSystemTracker, Timestamp:2020-11-23T20:27:34 + already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:9f613bf1-8b0d-4f99-bdef-0fffebc62097_B14, + SystemTracker:NoSystemTracker, Timestamp:2021-09-28T19:05:34 headers: content-type: application/xml; charset=utf-8 - date: Mon, 23 Nov 2020 20:27:34 GMT - etag: '637417600536800000' + date: Tue, 28 Sep 2021 19:05:35 GMT + etag: '637684527333700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 409 message: Conflict - url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:34 GMT - etag: '637417600536800000' + date: Tue, 28 Sep 2021 19:05:35 GMT + etag: '637684527333700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:34 GMT - etag: '637417600536800000' + date: Tue, 28 Sep 2021 19:05:35 GMT + etag: '637684527333700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:35 GMT - etag: '637417600536800000' + date: Tue, 28 Sep 2021 19:05:35 GMT + etag: '637684527333700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_list_and_delete.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_list_and_delete.yaml index 27d7de6606d1..8b5afdcb874e 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_list_and_delete.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_list_and_delete.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:36Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:36Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:36 GMT + date: Tue, 28 Sep 2021 19:05:35 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-11-23T20:27:37Z2020-11-23T20:27:37Zservicebustestebgplp6kllhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-09-28T19:05:36Z2021-09-28T19:05:36Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:37.197Z2020-11-23T20:27:37.23ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:36.76Z2021-09-28T19:05:36.837ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:36 GMT + date: Tue, 28 Sep 2021 19:05:36 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05 - request: body: ' @@ -67,57 +67,57 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-11-23T20:27:37Z2020-11-23T20:27:37Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-09-28T19:05:37Z2021-09-28T19:05:37ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:37.7041461Z2020-11-23T20:27:37.7041461Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:37.3377431Z2021-09-28T19:05:37.3377431Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:37 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 response: body: - string: Ruleshttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Zhttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:37Z2020-11-23T20:27:37ZRuleshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:38Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-09-28T19:05:37Z2021-09-28T19:05:37Z1=1202020-11-23T20:27:37.7015327Z$Default + i:type="EmptyRuleAction"/>2021-09-28T19:05:37.6610098Z$Default headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:37 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -133,29 +133,29 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:38Z2020-11-23T20:27:38Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-09-28T19:05:38Z2021-09-28T19:05:38ZPriority = 'low'20true2020-11-23T20:27:38.0635456Ztest_rule_1 + i:type="EmptyRuleAction"/>2021-09-28T19:05:38.2910022Ztest_rule_1 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:37 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 - request: body: ' @@ -171,29 +171,29 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-11-23T20:27:38Z2020-11-23T20:27:38Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-09-28T19:05:38Z2021-09-28T19:05:38ZPriority = 'middle'20true2020-11-23T20:27:38.1572806Ztest_rule_2 + i:type="EmptyRuleAction"/>2021-09-28T19:05:38.3533691Ztest_rule_2 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:37 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 - request: body: ' @@ -209,262 +209,262 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:38Z2020-11-23T20:27:38Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-09-28T19:05:38Z2021-09-28T19:05:38ZPriority = 'high'20true2020-11-23T20:27:38.2198002Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:05:38.4315528Ztest_rule_3 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:37 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 response: body: - string: Ruleshttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Zhttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:37Z2020-11-23T20:27:37ZRuleshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:38Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-09-28T19:05:37Z2021-09-28T19:05:37Z1=1202020-11-23T20:27:37.7015327Z$Defaulthttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-09-28T19:05:37.6610098Z$Defaulthttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-09-28T19:05:38Z2021-09-28T19:05:38ZPriority = 'low'20true2020-11-23T20:27:38.076549Ztest_rule_1https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-09-28T19:05:38.3016331Ztest_rule_1https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-09-28T19:05:38Z2021-09-28T19:05:38ZPriority = 'middle'20true2020-11-23T20:27:38.1546443Ztest_rule_2https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-09-28T19:05:38.3641678Ztest_rule_2https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-09-28T19:05:38Z2021-09-28T19:05:38ZPriority = 'high'20true2020-11-23T20:27:38.2171666Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:05:38.4422924Ztest_rule_3 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:37 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:37 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 response: body: - string: Ruleshttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Zhttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:37Z2020-11-23T20:27:37ZRuleshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:38Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-09-28T19:05:37Z2021-09-28T19:05:37Z1=1202020-11-23T20:27:37.7015327Z$Defaulthttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-09-28T19:05:37.6610098Z$Defaulthttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-09-28T19:05:38Z2021-09-28T19:05:38ZPriority = 'low'20true2020-11-23T20:27:38.076549Ztest_rule_1https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-09-28T19:05:38.3016331Ztest_rule_1https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-09-28T19:05:38Z2021-09-28T19:05:38ZPriority = 'high'20true2020-11-23T20:27:38.2171666Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:05:38.4422924Ztest_rule_3 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:37 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:37 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:38 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 response: body: - string: Ruleshttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Zhttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:37Z2020-11-23T20:27:37ZRuleshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:38Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-09-28T19:05:37Z2021-09-28T19:05:37Z1=1202020-11-23T20:27:37.7015327Z$Default + i:type="EmptyRuleAction"/>2021-09-28T19:05:37.6610098Z$Default headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:38 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:37 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:38 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:38 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:38 GMT - etag: '637417600572300000' + date: Tue, 28 Sep 2021 19:05:38 GMT + etag: '637684527368370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_invalid.yaml index 7285d9502a63..6325904ef4b3 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_invalid.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_invalid.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:39Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:40Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:39 GMT + date: Tue, 28 Sep 2021 19:05:39 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-11-23T20:27:40Z2020-11-23T20:27:40Zservicebustestebgplp6kllhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:05:40Z2021-09-28T19:05:40Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:40.33Z2020-11-23T20:27:40.37ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:40.563Z2021-09-28T19:05:40.803ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:40 GMT + date: Tue, 28 Sep 2021 19:05:40 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: ' @@ -67,27 +67,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-11-23T20:27:40Z2020-11-23T20:27:40Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:41Z2021-09-28T19:05:41ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:40.897403Z2020-11-23T20:27:40.897403Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:41.2544714Z2021-09-28T19:05:41.2544714Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:40 GMT - etag: '637417600603700000' + date: Tue, 28 Sep 2021 19:05:41 GMT + etag: '637684527408030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: ' @@ -103,65 +103,65 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-11-23T20:27:41Z2020-11-23T20:27:41Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-09-28T19:05:41Z2021-09-28T19:05:41ZPriority = 'low'20true2020-11-23T20:27:41.1473956Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:41.8170131Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:40 GMT - etag: '637417600603700000' + date: Tue, 28 Sep 2021 19:05:41 GMT + etag: '637684527408030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-11-23T20:27:41Z2020-11-23T20:27:41Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:05:41Z2021-09-28T19:05:41ZPriority = 'low'20true2020-11-23T20:27:41.1421572Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:41.8179539Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 23 Nov 2020 20:27:40 GMT - etag: '637417600603700000' + date: Tue, 28 Sep 2021 19:05:41 GMT + etag: '637684527408030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 - request: body: ' Priority = ''low''20true2020-11-23T20:27:41.142157Ziewdm' + xsi:type="EmptyRuleAction" />2021-09-28T19:05:41.817953Ziewdm' headers: Accept: - application/xml @@ -172,89 +172,89 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2021-05 response: body: string: 404Entity 'servicebustestsbname:Topic:fjrui|eqkovc|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:4beeadcc-d035-4a7f-a5a3-8d64f5f8a431_B0, - SystemTracker:NoSystemTracker, Timestamp:2020-11-23T20:27:41 + was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:15e13a38-b44a-449f-a45e-36c04049c419_B6, + SystemTracker:NoSystemTracker, Timestamp:2021-09-28T19:05:41 headers: content-type: application/xml; charset=utf-8 - date: Mon, 23 Nov 2020 20:27:41 GMT - etag: '637417600603700000' + date: Tue, 28 Sep 2021 19:05:42 GMT + etag: '637684527408030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:41 GMT - etag: '637417600603700000' + date: Tue, 28 Sep 2021 19:05:42 GMT + etag: '637684527408030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:41 GMT - etag: '637417600603700000' + date: Tue, 28 Sep 2021 19:05:42 GMT + etag: '637684527408030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 23 Nov 2020 20:27:42 GMT - etag: '637417600603700000' + date: Tue, 28 Sep 2021 19:05:43 GMT + etag: '637684527408030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_success.yaml index e9ad6cd55c6c..cba13f268300 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_success.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestm4fqorp5pk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:23:27Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:44Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 22 Apr 2021 15:23:27 GMT + date: Tue, 28 Sep 2021 19:05:44 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:23:28Z2021-04-22T15:23:28Zservicebustestm4fqorp5pkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:05:44Z2021-09-28T19:05:44Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:23:28.647Z2021-04-22T15:23:28.787ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:44.63Z2021-09-28T19:05:44.66ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:23:28 GMT + date: Tue, 28 Sep 2021 19:05:44 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: ' @@ -67,27 +67,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:23:29Z2021-04-22T15:23:29Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:45Z2021-09-28T19:05:45ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:23:29.4839628Z2021-04-22T15:23:29.4839628Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:45.1028855Z2021-09-28T19:05:45.1028855Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:23:29 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:45 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: ' @@ -103,65 +103,65 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:23:29Z2021-04-22T15:23:29Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-09-28T19:05:45Z2021-09-28T19:05:45ZPriority = 'low'20true2021-04-22T15:23:29.9058414Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:45.2435125Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:23:29 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:45 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:23:30Z2021-04-22T15:23:30Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:05:45Z2021-09-28T19:05:45ZPriority = 'low'20true2021-04-22T15:23:30.0491327Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:45.245435Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:23:29 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:45 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 - request: body: ' testcidSET Priority = ''low''20true2021-04-22T15:23:30.049132Zrule' + xsi:type="SqlRuleAction">SET Priority = ''low''20true2021-09-28T19:05:45.245435Zrule' headers: Accept: - application/xml @@ -172,63 +172,63 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:23:30Z2021-04-22T15:23:30Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-09-28T19:05:45Z2021-09-28T19:05:45ZtestcidSET Priority = 'low'20true2021-04-22T15:23:30.5621563Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2021-09-28T19:05:45.3997676Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:23:30 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:45 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:23:30Z2021-04-22T15:23:30Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:05:45Z2021-09-28T19:05:45ZtestcidSET Priority = 'low'20true2021-04-22T15:23:30.0491327Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2021-09-28T19:05:45.245435Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:23:30 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:45 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 - request: body: ' updatedcid2021-04-22T15:23:30.049132Zrule' + xsi:type="EmptyRuleAction" />2021-09-28T19:05:45.245435Zrule' headers: Accept: - application/xml @@ -239,120 +239,120 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:23:31Z2021-04-22T15:23:31Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-09-28T19:05:45Z2021-09-28T19:05:45Zupdatedcid2021-04-22T15:23:31.1871446Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:45.649768Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:23:30 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:45 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:23:30Z2021-04-22T15:23:30Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:05:45Z2021-09-28T19:05:45Zupdatedcid2021-04-22T15:23:30.0491327Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:45.245435Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:23:30 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:45 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:23:31 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:45 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:23:31 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:45 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:23:32 GMT - etag: '637547018087870000' + date: Tue, 28 Sep 2021 19:05:46 GMT + etag: '637684527446600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_error.yaml index 39562de3b06c..a1d7d5caeff1 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_error.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_error.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest7unr4yo2aa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:55:12Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:47Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 02 Mar 2021 19:55:12 GMT + date: Tue, 28 Sep 2021 19:05:46 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest7unr4yo2aa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-03-02T19:55:13Z2021-03-02T19:55:13Zservicebustest7unr4yo2aahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:05:47Z2021-09-28T19:05:47Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:55:13.237Z2021-03-02T19:55:13.32ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:47.453Z2021-09-28T19:05:47.573ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 02 Mar 2021 19:55:13 GMT + date: Tue, 28 Sep 2021 19:05:47 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: ' @@ -67,27 +67,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-03-02T19:55:13Z2021-03-02T19:55:13Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:48Z2021-09-28T19:05:48ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-03-02T19:55:13.9089858Z2021-03-02T19:55:13.9089858Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:48.0382244Z2021-09-28T19:05:48.0382244Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 02 Mar 2021 19:55:13 GMT - etag: '637503117133200000' + date: Tue, 28 Sep 2021 19:05:47 GMT + etag: '637684527475730000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: ' @@ -103,93 +103,93 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: - string: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-03-02T19:55:14Z2021-03-02T19:55:14Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-09-28T19:05:48Z2021-09-28T19:05:48ZPriority = 'low'20true2021-03-02T19:55:14.1589554Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:48.4601131Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 02 Mar 2021 19:55:14 GMT - etag: '637503117133200000' + date: Tue, 28 Sep 2021 19:05:47 GMT + etag: '637684527475730000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 02 Mar 2021 19:55:14 GMT - etag: '637503117133200000' + date: Tue, 28 Sep 2021 19:05:47 GMT + etag: '637684527475730000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 02 Mar 2021 19:55:14 GMT - etag: '637503117133200000' + date: Tue, 28 Sep 2021 19:05:48 GMT + etag: '637684527475730000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 02 Mar 2021 19:55:14 GMT - etag: '637503117133200000' + date: Tue, 28 Sep 2021 19:05:48 GMT + etag: '637684527475730000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_success.yaml index 94fe920c9e37..6df7a2c617f3 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_success.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestpp6oahyffj.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:25:00Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:49Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 22 Apr 2021 15:25:00 GMT + date: Tue, 28 Sep 2021 19:05:49 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpp6oahyffj.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T15:25:01Z2021-04-22T15:25:01Zservicebustestpp6oahyffjhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:05:50Z2021-09-28T19:05:50Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:25:01.13Z2021-04-22T15:25:01.46ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:50.23Z2021-09-28T19:05:50.317ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:25:01 GMT + date: Tue, 28 Sep 2021 19:05:50 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: ' @@ -67,27 +67,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: - string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:25:02Z2021-04-22T15:25:02Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-09-28T19:05:50Z2021-09-28T19:05:50ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:25:02.148507Z2021-04-22T15:25:02.148507Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:50.8235286Z2021-09-28T19:05:50.8235286Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:25:02 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:51 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 - request: body: ' @@ -103,65 +103,65 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:25:02Z2021-04-22T15:25:02Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-09-28T19:05:51Z2021-09-28T19:05:51ZPriority = 'low'20true2021-04-22T15:25:02.648539Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:51.0735281Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:25:02 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:51 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:25:02Z2021-04-22T15:25:02Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:05:51Z2021-09-28T19:05:51ZPriority = 'low'20true2021-04-22T15:25:02.6481931Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:51.0743454Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:25:02 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:51 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05 - request: body: ' testcidSET Priority = ''low''20true2021-04-22T15:25:02.648193Zrule' + xsi:type="SqlRuleAction">SET Priority = ''low''20true2021-09-28T19:05:51.074345Zrule' headers: Accept: - application/xml @@ -172,63 +172,63 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:25:03Z2021-04-22T15:25:03Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-09-28T19:05:51Z2021-09-28T19:05:51ZtestcidSET Priority = 'low'20true2021-04-22T15:25:03.3516678Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2021-09-28T19:05:51.2297808Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:25:03 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:51 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:25:02Z2021-04-22T15:25:02Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:05:51Z2021-09-28T19:05:51ZtestcidSET Priority = 'low'20true2021-04-22T15:25:02.6481931Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2021-09-28T19:05:51.0743454Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:25:03 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:51 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05 - request: body: ' updatedcid2021-04-22T15:25:02.648193Zrule' + xsi:type="EmptyRuleAction" />2021-09-28T19:05:51.074345Zrule' headers: Accept: - application/xml @@ -239,120 +239,120 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:25:03Z2021-04-22T15:25:03Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-09-28T19:05:51Z2021-09-28T19:05:51Zupdatedcid2021-04-22T15:25:03.8829356Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:51.386029Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:25:03 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:51 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:25:02Z2021-04-22T15:25:02Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:05:51Z2021-09-28T19:05:51Zupdatedcid2021-04-22T15:25:02.6481931Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:05:51.0743454Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:25:03 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:51 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:25:04 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:51 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:25:04 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:51 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:25:05 GMT - etag: '637547019014600000' + date: Tue, 28 Sep 2021 19:05:52 GMT + etag: '637684527503170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_by_name.yaml index b588440670af..417122d617e6 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_by_name.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_by_name.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:45Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:52Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:45 GMT + date: Tue, 28 Sep 2021 19:05:52 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:33:46Z2020-09-29T08:33:46Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-09-28T19:05:52Z2021-09-28T19:05:52Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:46.497Z2020-09-29T08:33:46.537ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:52.963Z2021-09-28T19:05:52.99ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:46 GMT + date: Tue, 28 Sep 2021 19:05:53 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05 - request: body: ' @@ -67,97 +67,97 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:33:47Z2020-09-29T08:33:47Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-09-28T19:05:53Z2021-09-28T19:05:53ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:47.1916711Z2020-09-29T08:33:47.1916711Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:53.4563813Z2021-09-28T19:05:53.4563813Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:46 GMT - etag: '637369652265370000' + date: Tue, 28 Sep 2021 19:05:53 GMT + etag: '637684527529900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-09-29T08:33:47Z2020-09-29T08:33:47Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05sub_testkkk2021-09-28T19:05:53Z2021-09-28T19:05:53ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:47.1938309Z2020-09-29T08:33:47.1938309Z2020-09-29T08:33:47.1938309Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:53.459063Z2021-09-28T19:05:53.459063Z2021-09-28T19:05:53.46Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:46 GMT - etag: '637369652265370000' + date: Tue, 28 Sep 2021 19:05:53 GMT + etag: '637684527529900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:47 GMT - etag: '637369652265370000' + date: Tue, 28 Sep 2021 19:05:53 GMT + etag: '637684527529900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:47 GMT - etag: '637369652265370000' + date: Tue, 28 Sep 2021 19:05:53 GMT + etag: '637684527529900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_duplicate.yaml index 58dff8841e87..241e08f2dd96 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_duplicate.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_duplicate.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:48Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:54Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:47 GMT + date: Tue, 28 Sep 2021 19:05:54 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:33:49Z2020-09-29T08:33:49Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-09-28T19:05:55Z2021-09-28T19:05:55Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:49.483Z2020-09-29T08:33:49.523ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:55.043Z2021-09-28T19:05:55.083ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:49 GMT + date: Tue, 28 Sep 2021 19:05:55 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05 - request: body: ' @@ -67,27 +67,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:33:50Z2020-09-29T08:33:50Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05kkaqo2021-09-28T19:05:55Z2021-09-28T19:05:55ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:50.0143397Z2020-09-29T08:33:50.0143397Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:55.5503645Z2021-09-28T19:05:55.5503645Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:50 GMT - etag: '637369652295230000' + date: Tue, 28 Sep 2021 19:05:55 GMT + etag: '637684527550830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 - request: body: ' @@ -101,67 +101,67 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:660ba8cc-f5ad-4117-96a0-8563e03dc190_B5, - SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:33:50 + already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:f3b4447b-685e-4e7d-922d-4c384e115053_B11, + SystemTracker:NoSystemTracker, Timestamp:2021-09-28T19:05:55 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:33:51 GMT - etag: '637369652295230000' + date: Tue, 28 Sep 2021 19:05:56 GMT + etag: '637684527550830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 409 message: Conflict - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:51 GMT - etag: '637369652295230000' + date: Tue, 28 Sep 2021 19:05:56 GMT + etag: '637684527550830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:52 GMT - etag: '637369652295230000' + date: Tue, 28 Sep 2021 19:05:57 GMT + etag: '637684527550830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_forward_to.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_forward_to.yaml index 20e074694f75..f573c94ad4b1 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_forward_to.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_forward_to.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestm3q2ijv25y.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-19T22:25:20Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:57Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Fri, 19 Mar 2021 22:25:19 GMT + date: Tue, 28 Sep 2021 19:05:57 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestm3q2ijv25y.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2021-05 response: body: - string: https://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj?api-version=2017-04dkfthj2021-03-19T22:25:20Z2021-03-19T22:25:20Zservicebustestm3q2ijv25yhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfthj?api-version=2021-05dkfthj2021-09-28T19:05:58Z2021-09-28T19:05:58Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-03-19T22:25:20.877Z2021-03-19T22:25:20.947ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:05:58.417Z2021-09-28T19:05:58.443ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 19 Mar 2021 22:25:20 GMT + date: Tue, 28 Sep 2021 19:05:58 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfthj?api-version=2021-05 - request: body: ' @@ -67,31 +67,31 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2021-05 response: body: - string: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward?api-version=2017-04iweidkforward2021-03-19T22:25:21Z2021-03-19T22:25:21Zservicebustestm3q2ijv25yhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidkforward?api-version=2021-05iweidkforward2021-09-28T19:05:59Z2021-09-28T19:05:59Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-19T22:25:21.827Z2021-03-19T22:25:21.86ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:59.293Z2021-09-28T19:05:59.343ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 19 Mar 2021 22:25:21 GMT + date: Tue, 28 Sep 2021 19:05:59 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidkforward?api-version=2021-05 - request: body: ' sb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthjsb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj' + type="application/xml">sb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfthjsb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfthj' headers: Accept: - application/xml @@ -100,123 +100,123 @@ interactions: Content-Type: - application/atom+xml ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestm3q2ijv25y.servicebus.windows.net%2Fdkfthj&sig=j0qQnDxabjf3RVq5k52fLg9slEMyiUT0kwgCd7quW2s%3d&se=1616196322&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fdkfthj&sig=HReeXJI0esmAaDMypHZnc852te1ws5IB4alHM1o1BC8%3d&se=1632859559&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestm3q2ijv25y.servicebus.windows.net%2Fdkfthj&sig=j0qQnDxabjf3RVq5k52fLg9slEMyiUT0kwgCd7quW2s%3d&se=1616196322&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fdkfthj&sig=HReeXJI0esmAaDMypHZnc852te1ws5IB4alHM1o1BC8%3d&se=1632859559&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05 response: body: - string: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04kdosakoforward2021-03-19T22:25:22Z2021-03-19T22:25:22Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05kdosakoforward2021-09-28T19:05:59Z2021-09-28T19:05:59ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj2021-03-19T22:25:22.4148155Z2021-03-19T22:25:22.4148155Z0001-01-01T00:00:00sb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfthj2021-09-28T19:05:59.8819861Z2021-09-28T19:05:59.8819861Z0001-01-01T00:00:00sb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 19 Mar 2021 22:25:21 GMT - etag: '637517895218600000' + date: Tue, 28 Sep 2021 19:05:59 GMT + etag: '637684527593430000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04kdosakoforward2021-03-19T22:25:22Z2021-03-19T22:25:22Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05kdosakoforward2021-09-28T19:05:59Z2021-09-28T19:05:59ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj2021-03-19T22:25:22.4099738Z2021-03-19T22:25:22.4099738Z2021-03-19T22:25:22.41Z00000sb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfthj2021-09-28T19:05:59.87103Z2021-09-28T19:05:59.87103Z2021-09-28T19:05:59.87103Z00000sb://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 19 Mar 2021 22:25:21 GMT - etag: '637517895218600000' + date: Tue, 28 Sep 2021 19:05:59 GMT + etag: '637684527593430000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Fri, 19 Mar 2021 22:25:21 GMT - etag: '637517895218600000' + date: Tue, 28 Sep 2021 19:05:59 GMT + etag: '637684527593430000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Fri, 19 Mar 2021 22:25:22 GMT - etag: '637517895218600000' + date: Tue, 28 Sep 2021 19:06:00 GMT + etag: '637684527593430000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidkforward?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Fri, 19 Mar 2021 22:25:23 GMT - etag: '637517895209470000' + date: Tue, 28 Sep 2021 19:06:01 GMT + etag: '637684527584430000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkfthj?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_subscription_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_subscription_description.yaml index 2132f18ae683..3c786781f880 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_subscription_description.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_subscription_description.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestnxl3g6jvwp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T16:13:34Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:01Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 15 Apr 2021 16:13:33 GMT + date: Tue, 28 Sep 2021 19:06:01 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: - string: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-15T16:13:34Z2021-04-15T16:13:34Zservicebustestnxl3g6jvwphttps://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-09-28T19:06:02Z2021-09-28T19:06:02Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T16:13:34.743Z2021-04-15T16:13:34.793ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:02.34Z2021-09-28T19:06:02.38ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:13:34 GMT + date: Tue, 28 Sep 2021 19:06:02 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk?api-version=2021-05 - request: body: ' @@ -67,55 +67,55 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05 response: body: - string: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2021-04-15T16:13:35Z2021-04-15T16:13:35Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05kdosako2021-09-28T19:06:02Z2021-09-28T19:06:02ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:13:35.4324249Z2021-04-15T16:13:35.4324249Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-09-28T19:06:02.8074807Z2021-09-28T19:06:02.8074807Z0001-01-01T00:00:00PT10MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:13:35 GMT - etag: '637541000147930000' + date: Tue, 28 Sep 2021 19:06:02 GMT + etag: '637684527623800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2021-04-15T16:13:35Z2021-04-15T16:13:35Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05kdosako2021-09-28T19:06:02Z2021-09-28T19:06:02ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:13:35.4356834Z2021-04-15T16:13:35.4356834Z2021-04-15T16:13:35.437Z00000PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-09-28T19:06:02.8054075Z2021-09-28T19:06:02.8054075Z2021-09-28T19:06:02.807Z00000PT10MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:13:35 GMT - etag: '637541000147930000' + date: Tue, 28 Sep 2021 19:06:02 GMT + etag: '637684527623800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05 - request: body: ' @@ -129,119 +129,119 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05 response: body: - string: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04owazmq2021-04-15T16:13:36Z2021-04-15T16:13:36Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05owazmq2021-09-28T19:06:03Z2021-09-28T19:06:03ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:13:36.026523Z2021-04-15T16:13:36.026523Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-09-28T19:06:03.0418559Z2021-09-28T19:06:03.0418559Z0001-01-01T00:00:00PT10MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:13:35 GMT - etag: '637541000147930000' + date: Tue, 28 Sep 2021 19:06:02 GMT + etag: '637684527623800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2017-04owazmq2021-04-15T16:13:36Z2021-04-15T16:13:36Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2021-05owazmq2021-09-28T19:06:03Z2021-09-28T19:06:03ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:13:36.0295109Z2021-04-15T16:13:36.0295109Z2021-04-15T16:13:36.0295109Z00000PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-09-28T19:06:03.0397887Z2021-09-28T19:06:03.0397887Z2021-09-28T19:06:03.0397887Z00000PT10MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:13:35 GMT - etag: '637541000147930000' + date: Tue, 28 Sep 2021 19:06:02 GMT + etag: '637684527623800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 16:13:36 GMT - etag: '637541000147930000' + date: Tue, 28 Sep 2021 19:06:02 GMT + etag: '637684527623800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 16:13:36 GMT - etag: '637541000147930000' + date: Tue, 28 Sep 2021 19:06:02 GMT + etag: '637684527623800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 16:13:37 GMT - etag: '637541000147930000' + date: Tue, 28 Sep 2021 19:06:03 GMT + etag: '637684527623800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iweidk?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_delete.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_delete.yaml index b06e4a6d15ce..26e8a4d7fd95 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_delete.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_delete.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:55Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:04Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:55 GMT + date: Tue, 28 Sep 2021 19:06:03 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-09-29T08:33:56Z2020-09-29T08:33:56Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda?api-version=2021-05test_topicgda2021-09-28T19:06:04Z2021-09-28T19:06:04Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:56.41Z2020-09-29T08:33:56.483ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:04.573Z2021-09-28T19:06:04.647ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:56 GMT + date: Tue, 28 Sep 2021 19:06:04 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda?api-version=2021-05 - request: body: ' @@ -67,57 +67,57 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-09-28T19:06:05Z2021-09-28T19:06:05ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0633257Z2020-09-29T08:33:57.0633257Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:05.1509077Z2021-09-28T19:06:05.1509077Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:56 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:05 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:57Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57ZSubscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:05Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-09-28T19:06:05Z2021-09-28T19:06:05ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:05.1465527Z2021-09-28T19:06:05.1465527Z2021-09-28T19:06:05.147Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:56 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:05 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -131,209 +131,209 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-09-28T19:06:05Z2021-09-28T19:06:05ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.34461Z2020-09-29T08:33:57.34461Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:05.6977945Z2021-09-28T19:06:05.6977945Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:56 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:05 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:57Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57ZSubscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:05Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-09-28T19:06:05Z2021-09-28T19:06:05ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:05.1465527Z2021-09-28T19:06:05.1465527Z2021-09-28T19:06:05.147Z00000P10675199DT2H48M5.4775807SAvailablefalsehttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-09-28T19:06:05Z2021-09-28T19:06:05ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:05.6934514Z2021-09-28T19:06:05.6934514Z2021-09-28T19:06:05.6934514Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:56 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:05 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05test_sub1da2021-09-28T19:06:05Z2021-09-28T19:06:05ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:05.1465527Z2021-09-28T19:06:05.1465527Z2021-09-28T19:06:05.147Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:56 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:05 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:57 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:05 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:58Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57ZSubscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:06Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-09-28T19:06:05Z2021-09-28T19:06:05ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:05.6934514Z2021-09-28T19:06:05.6934514Z2021-09-28T19:06:05.6934514Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:57 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:05 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:57 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:05 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:58Z + string: Subscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:06Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:33:57 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:05 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:33:58 GMT - etag: '637369652364830000' + date: Tue, 28 Sep 2021 19:06:06 GMT + etag: '637684527646470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topicgda?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_properties_basic.yaml index 3cd03341e81f..923d7d66e17f 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_properties_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_properties_basic.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:48Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:07Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 17:52:47 GMT + date: Tue, 28 Sep 2021 19:06:06 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2021-05 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa?api-version=2017-04dcvxqa2020-08-17T17:52:48Z2020-08-17T17:52:48Zservicebustesteotyq3ucg7https://servicebustestkv3s7h2dmw.servicebus.windows.net/dcvxqa?api-version=2021-05dcvxqa2021-09-28T19:06:07Z2021-09-28T19:06:07Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:52:48.813Z2020-08-17T17:52:48.88ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:07.653Z2021-09-28T19:06:07.7ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 17:52:48 GMT + date: Tue, 28 Sep 2021 19:06:07 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dcvxqa?api-version=2021-05 - request: body: ' @@ -67,97 +67,97 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04xvazzag2020-08-17T17:52:49Z2020-08-17T17:52:49Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05xvazzag2021-09-28T19:06:08Z2021-09-28T19:06:08ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:49.6097542Z2020-08-17T17:52:49.6097542Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:08.1646744Z2021-09-28T19:06:08.1646744Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 17:52:49 GMT - etag: '637332835688800000' + date: Tue, 28 Sep 2021 19:06:08 GMT + etag: '637684527677000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04xvazzag2020-08-17T17:52:49Z2020-08-17T17:52:49Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05xvazzag2021-09-28T19:06:08Z2021-09-28T19:06:08ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:49.6128254Z2020-08-17T17:52:49.6128254Z2020-08-17T17:52:49.613Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:08.1648232Z2021-09-28T19:06:08.1648232Z2021-09-28T19:06:08.1648232Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 17:52:49 GMT - etag: '637332835688800000' + date: Tue, 28 Sep 2021 19:06:08 GMT + etag: '637684527677000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:49 GMT - etag: '637332835688800000' + date: Tue, 28 Sep 2021 19:06:08 GMT + etag: '637684527677000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:49 GMT - etag: '637332835688800000' + date: Tue, 28 Sep 2021 19:06:08 GMT + etag: '637684527677000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dcvxqa?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list.yaml index 123b5edc960f..e4ae0cd78ce9 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:02Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:09Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:01 GMT + date: Tue, 28 Sep 2021 19:06:08 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,50 +34,50 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-09-29T08:34:02Z2020-09-29T08:34:02Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc?api-version=2021-05lkoqxc2021-09-28T19:06:09Z2021-09-28T19:06:09Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:02.5Z2020-09-29T08:34:02.537ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:09.94Z2021-09-28T19:06:09.98ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:02 GMT + date: Tue, 28 Sep 2021 19:06:09 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:03Z + string: Subscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:10Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:02 GMT - etag: '637369652425370000' + date: Tue, 28 Sep 2021 19:06:09 GMT + etag: '637684527699800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -91,27 +91,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:34:03Z2020-09-29T08:34:03Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05testsub12021-09-28T19:06:10Z2021-09-28T19:06:10ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.1785346Z2020-09-29T08:34:03.1785346Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:10.570911Z2021-09-28T19:06:10.570911Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:02 GMT - etag: '637369652425370000' + date: Tue, 28 Sep 2021 19:06:10 GMT + etag: '637684527699800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05 - request: body: ' @@ -125,151 +125,151 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:34:03Z2020-09-29T08:34:03Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05testsub22021-09-28T19:06:10Z2021-09-28T19:06:10ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.5379366Z2020-09-29T08:34:03.5379366Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:10.7427652Z2021-09-28T19:06:10.7427652Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:02 GMT - etag: '637369652425370000' + date: Tue, 28 Sep 2021 19:06:10 GMT + etag: '637684527699800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:03Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:34:03Z2020-09-29T08:34:03ZSubscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:10Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05testsub12021-09-28T19:06:10Z2021-09-28T19:06:10ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.1831337Z2020-09-29T08:34:03.1831337Z2020-09-29T08:34:03.1831337Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:34:03Z2020-09-29T08:34:03ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:10.572381Z2021-09-28T19:06:10.572381Z2021-09-28T19:06:10.573Z00000P10675199DT2H48M5.4775807SAvailablefalsehttps://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05testsub22021-09-28T19:06:10Z2021-09-28T19:06:10ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.5268498Z2020-09-29T08:34:03.5268498Z2020-09-29T08:34:03.5268498Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:10.7442245Z2021-09-28T19:06:10.7442245Z2021-09-28T19:06:10.7442245Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:03 GMT - etag: '637369652425370000' + date: Tue, 28 Sep 2021 19:06:10 GMT + etag: '637684527699800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:03 GMT - etag: '637369652425370000' + date: Tue, 28 Sep 2021 19:06:10 GMT + etag: '637684527699800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:03 GMT - etag: '637369652425370000' + date: Tue, 28 Sep 2021 19:06:10 GMT + etag: '637684527699800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:03Z + string: Subscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:10Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:03 GMT - etag: '637369652425370000' + date: Tue, 28 Sep 2021 19:06:10 GMT + etag: '637684527699800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:03 GMT - etag: '637369652425370000' + date: Tue, 28 Sep 2021 19:06:10 GMT + etag: '637684527699800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/lkoqxc?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_properties.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_properties.yaml index 907b36e2c674..43bfd92cdd34 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_properties.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_properties.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestmkljlmkall.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:41Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:12Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 18 Aug 2020 22:38:41 GMT + date: Tue, 28 Sep 2021 19:06:11 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestmkljlmkall.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,74 +34,74 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2021-05 response: body: - string: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv?api-version=2017-04dkoamv2020-08-18T22:38:42Z2020-08-18T22:38:42Zservicebustestmkljlmkallhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv?api-version=2021-05dkoamv2021-09-28T19:06:12Z2021-09-28T19:06:12Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-18T22:38:42.333Z2020-08-18T22:38:42.41ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:12.527Z2021-09-28T19:06:12.553ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 18 Aug 2020 22:38:42 GMT + date: Tue, 28 Sep 2021 19:06:12 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:42Z + string: Subscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:12Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 18 Aug 2020 22:38:42 GMT - etag: '637333871224100000' + date: Tue, 28 Sep 2021 19:06:12 GMT + etag: '637684527725530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:42Z + string: Subscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:13Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 18 Aug 2020 22:38:42 GMT - etag: '637333871224100000' + date: Tue, 28 Sep 2021 19:06:12 GMT + etag: '637684527725530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -115,153 +115,153 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05 response: body: - string: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-18T22:38:43Z2020-08-18T22:38:43Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-09-28T19:06:13Z2021-09-28T19:06:13ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-18T22:38:43.0154309Z2020-08-18T22:38:43.0154309Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:13.0761947Z2021-09-28T19:06:13.0761947Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 18 Aug 2020 22:38:42 GMT - etag: '637333871224100000' + date: Tue, 28 Sep 2021 19:06:12 GMT + etag: '637684527725530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:43Zhttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-18T22:38:43Z2020-08-18T22:38:43ZSubscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:13Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-09-28T19:06:13Z2021-09-28T19:06:13ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-18T22:38:43.0275143Z2020-08-18T22:38:43.0275143Z2020-08-18T22:38:43.0275143Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:13.0760036Z2021-09-28T19:06:13.0760036Z2021-09-28T19:06:13.077Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 18 Aug 2020 22:38:42 GMT - etag: '637333871224100000' + date: Tue, 28 Sep 2021 19:06:12 GMT + etag: '637684527725530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:43Zhttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-18T22:38:43Z2020-08-18T22:38:43ZSubscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:13Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-09-28T19:06:13Z2021-09-28T19:06:13ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-18T22:38:43.0275143Z2020-08-18T22:38:43.0275143Z2020-08-18T22:38:43.0275143Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:13.0760036Z2021-09-28T19:06:13.0760036Z2021-09-28T19:06:13.077Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 18 Aug 2020 22:38:42 GMT - etag: '637333871224100000' + date: Tue, 28 Sep 2021 19:06:12 GMT + etag: '637684527725530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 18 Aug 2020 22:38:42 GMT - etag: '637333871224100000' + date: Tue, 28 Sep 2021 19:06:12 GMT + etag: '637684527725530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:43Z + string: Subscriptionshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:13Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 18 Aug 2020 22:38:42 GMT - etag: '637333871224100000' + date: Tue, 28 Sep 2021 19:06:13 GMT + etag: '637684527725530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 18 Aug 2020 22:38:43 GMT - etag: '637333871224100000' + date: Tue, 28 Sep 2021 19:06:13 GMT + etag: '637684527725530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dkoamv?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_invalid.yaml index e6a949a8d13c..aaf780c074b7 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_invalid.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_invalid.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:08Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:14Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:08 GMT + date: Tue, 28 Sep 2021 19:06:14 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:34:09Z2020-09-29T08:34:09Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-09-28T19:06:14Z2021-09-28T19:06:15Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:09.067Z2020-09-29T08:34:09.1ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:14.987Z2021-09-28T19:06:15.113ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:09 GMT + date: Tue, 28 Sep 2021 19:06:15 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj?api-version=2021-05 - request: body: ' @@ -67,32 +67,32 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-09-29T08:34:09Z2020-09-29T08:34:09Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05kwqxc2021-09-28T19:06:15Z2021-09-28T19:06:15ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:09.6006723Z2020-09-29T08:34:09.6006723Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:15.5737131Z2021-09-28T19:06:15.5737131Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:09 GMT - etag: '637369652491000000' + date: Tue, 28 Sep 2021 19:06:15 GMT + etag: '637684527751130000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05 - request: body: ' PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:34:09.600672Z2020-09-29T08:34:09.600672Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:06:15.573713Z2021-09-28T19:06:15.573713Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -103,30 +103,30 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2021-05 response: body: string: 404Entity 'servicebustestsbname:Topic:dfjfj|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:af6bbd50-6759-45df-a1c7-9a23ded598db_B7, - SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:34:09 + was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:a7614085-127f-4561-81ec-1caf1a7920e7_B4, + SystemTracker:NoSystemTracker, Timestamp:2021-09-28T19:06:15 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:34:10 GMT - etag: '637369652491000000' + date: Tue, 28 Sep 2021 19:06:16 GMT + etag: '637684527751130000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2021-05 - request: body: ' P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:34:09.600672Z2020-09-29T08:34:09.600672Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:06:15.573713Z2021-09-28T19:06:15.573713Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -137,9 +137,9 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2021-05 response: body: string: '400The supplied lock time exceeds the allowed @@ -148,61 +148,61 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:86ead89e-47ae-4859-94b0-47ae0fc151d6_G13, - SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-09-29T08:34:10' + Actual value was 25.00:00:00. TrackingId:b31ff5ad-ac8b-4cba-8b72-ba757835981b_G9, + SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2021-09-28T19:06:16' headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:34:11 GMT - etag: '637369652491000000' + date: Tue, 28 Sep 2021 19:06:17 GMT + etag: '637684527751130000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 400 message: Bad Request - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:11 GMT - etag: '637369652491000000' + date: Tue, 28 Sep 2021 19:06:17 GMT + etag: '637684527751130000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:12 GMT - etag: '637369652491000000' + date: Tue, 28 Sep 2021 19:06:18 GMT + etag: '637684527751130000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_success.yaml index 31caadb9c3c8..cd220dd801cf 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_success.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestqdikv3sdan.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:07:16Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:18Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:15 GMT + date: Tue, 28 Sep 2021 19:06:18 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/dfkla?api-version=2017-04dfkla2021-04-22T15:07:16Z2021-04-22T15:07:16Zservicebustestqdikv3sdanhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dfkla?api-version=2021-05dfkla2021-09-28T19:06:19Z2021-09-28T19:06:19Zservicebustestkv3s7h2dmwPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-22T15:07:16.813Z2021-04-22T15:07:16.863ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:06:19.41Z2021-09-28T19:06:19.47ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:16 GMT + date: Tue, 28 Sep 2021 19:06:19 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestqdikv3sdan.servicebus.windows.net/dfkla?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfkla?api-version=2021-05 - request: body: ' @@ -67,26 +67,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:07:17Z2021-04-22T15:07:17Zservicebustestqdikv3sdanhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:06:20Z2021-09-28T19:06:20Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:07:17.94Z2021-04-22T15:07:17.983ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:20.24Z2021-09-28T19:06:20.807ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:17 GMT + date: Tue, 28 Sep 2021 19:06:20 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: ' @@ -100,32 +100,32 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:18Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:07:18.6307647Z2021-04-22T15:07:18.6307647Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:21.2897569Z2021-09-28T19:06:21.2897569Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:18 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: ' PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:07:18.630764Z2021-04-22T15:07:18.630764Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:06:21.289756Z2021-09-28T19:06:21.289756Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -136,61 +136,61 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:19Z2021-04-22T15:07:19Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:07:19.099519Z2021-04-22T15:07:19.099519Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:06:21.3678785Z2021-09-28T19:06:21.3678785Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:18 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:19Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:19.109132Z2021-04-22T15:07:18.640382Z00000P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:06:21.2906522Z2021-09-28T19:06:21.3844023Z2021-09-28T19:06:21.2906522Z00000P10675199DT2H48M5.477539SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:18 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: ' PT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:19.109132Z2021-04-22T15:07:18.640382Z00000PT10MAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:06:21.290652Z2021-09-28T19:06:21.384402Z2021-09-28T19:06:21.290652Z00000PT10MAvailable' headers: Accept: - application/xml @@ -201,61 +201,61 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:19Z2021-04-22T15:07:19Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:19.6308711Z2021-04-22T15:07:19.6308711Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:06:21.4791842Z2021-09-28T19:06:21.4791842Z0001-01-01T00:00:00PT10MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:19 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:19Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:19.640397Z2021-04-22T15:07:18.640382Z00000PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:06:21.2906522Z2021-09-28T19:06:21.4937789Z2021-09-28T19:06:21.2906522Z00000PT10MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:19 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: ' PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui2021-04-22T15:07:18.640382Z2021-04-22T15:07:19.640397Z2021-04-22T15:07:18.640382Z00000sb://servicebustestqdikv3sdan.servicebus.windows.net/fjruiPT10MAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui2021-09-28T19:06:21.290652Z2021-09-28T19:06:21.493778Z2021-09-28T19:06:21.290652Z00000sb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruiPT10MAvailable' headers: Accept: - application/xml @@ -266,65 +266,65 @@ interactions: If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestqdikv3sdan.servicebus.windows.net%2Ffjrui&sig=V9CJjOZTHITYzCQRNuCbQs9ndIkF4OGxI2SpwKfd2Fw%3d&se=1619107640&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Ffjrui&sig=sbi6nDY1uH%2fJqZMbzUtaUAQI2r%2fiVYFX3CtBa2%2fK0BI%3d&se=1632859581&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestqdikv3sdan.servicebus.windows.net%2Ffjrui&sig=V9CJjOZTHITYzCQRNuCbQs9ndIkF4OGxI2SpwKfd2Fw%3d&se=1619107640&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Ffjrui&sig=sbi6nDY1uH%2fJqZMbzUtaUAQI2r%2fiVYFX3CtBa2%2fK0BI%3d&se=1632859581&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:20Z2021-04-22T15:07:20Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui2021-04-22T15:07:20.2557711Z2021-04-22T15:07:20.2557711Z0001-01-01T00:00:00sb://servicebustestqdikv3sdan.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui2021-09-28T19:06:21.5866313Z2021-09-28T19:06:21.5866313Z0001-01-01T00:00:00sb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:19 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:20Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui2021-04-22T15:07:18.640382Z2021-04-22T15:07:20.2654414Z2021-04-22T15:07:18.640382Z00000sb://servicebustestqdikv3sdan.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui2021-09-28T19:06:21.2906522Z2021-09-28T19:06:21.6187852Z2021-09-28T19:06:21.2906522Z00000sb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:20 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: ' PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/dfkla2021-04-22T15:07:18.640382Z2021-04-22T15:07:20.265441Z2021-04-22T15:07:18.640382Z00000sb://servicebustestqdikv3sdan.servicebus.windows.net/dfklaP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/dfkla2021-09-28T19:06:21.290652Z2021-09-28T19:06:21.618785Z2021-09-28T19:06:21.290652Z00000sb://servicebustestkv3s7h2dmw.servicebus.windows.net/dfklaP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -335,65 +335,65 @@ interactions: If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestqdikv3sdan.servicebus.windows.net%2Fdfkla&sig=eC1hcdk1FuXm%2bO2%2fSpFTgALuYcCxe4sxzlPI1O8%2fun4%3d&se=1619107640&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fdfkla&sig=NTx9EICAg5izNVzll%2bpK%2bX6uF0R3iBrUkhb7GAsH4tg%3d&se=1632859581&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestqdikv3sdan.servicebus.windows.net%2Fdfkla&sig=eC1hcdk1FuXm%2bO2%2fSpFTgALuYcCxe4sxzlPI1O8%2fun4%3d&se=1619107640&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Fdfkla&sig=NTx9EICAg5izNVzll%2bpK%2bX6uF0R3iBrUkhb7GAsH4tg%3d&se=1632859581&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:20Z2021-04-22T15:07:20Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/dfkla2021-04-22T15:07:20.803074Z2021-04-22T15:07:20.803074Z0001-01-01T00:00:00sb://servicebustestqdikv3sdan.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/dfkla2021-09-28T19:06:21.6960505Z2021-09-28T19:06:21.6960505Z0001-01-01T00:00:00sb://servicebustestkv3s7h2dmw.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:20 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:20Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/dfkla2021-04-22T15:07:18.640382Z2021-04-22T15:07:20.8123582Z2021-04-22T15:07:18.640382Z00000sb://servicebustestqdikv3sdan.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/dfkla2021-09-28T19:06:21.2906522Z2021-09-28T19:06:21.7125319Z2021-09-28T19:06:21.2906522Z00000sb://servicebustestkv3s7h2dmw.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:20 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: ' PT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:20.812358Z2021-04-22T15:07:18.640382Z00000P10675199DT2H48M5.477539SAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:06:21.290652Z2021-09-28T19:06:21.712531Z2021-09-28T19:06:21.290652Z00000P10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -404,61 +404,61 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:21Z2021-04-22T15:07:21Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:21.3342949Z2021-04-22T15:07:21.3342949Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:06:21.7898144Z2021-09-28T19:06:21.7898144Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:20 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:21Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:21.3496212Z2021-04-22T15:07:18.640382Z00000P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:06:21.2906522Z2021-09-28T19:06:21.7906848Z2021-09-28T19:06:21.2906522Z00000P10675199DT2H48M5.477539SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:21 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: ' PT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:21.349621Z2021-04-22T15:07:18.640382Z00000PT10M1SAvailable' + type="application/xml">PT3M3SfalsePT11M2Struetrue014trueActive2021-09-28T19:06:21.290652Z2021-09-28T19:06:21.790684Z2021-09-28T19:06:21.290652Z00000PT10M1SAvailable' headers: Accept: - application/xml @@ -469,61 +469,61 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:21Z2021-04-22T15:07:21Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:07:21.8655447Z2021-04-22T15:07:21.8655447Z0001-01-01T00:00:00PT10M1SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT3M3SfalsePT11M2Struetrue014trueActive2021-09-28T19:06:21.8991299Z2021-09-28T19:06:21.8991299Z0001-01-01T00:00:00PT10M1SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:21 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:21Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:21.8976192Z2021-04-22T15:07:18.640382Z00000PT10M1SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT3M3SfalsePT11M2Struetrue014trueActive2021-09-28T19:06:21.2906522Z2021-09-28T19:06:21.9000281Z2021-09-28T19:06:21.2906522Z00000PT10M1SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:21 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: ' PT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:21.897619Z2021-04-22T15:07:18.640382Z00000PT15MAvailable' + type="application/xml">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:06:21.290652Z2021-09-28T19:06:21.900028Z2021-09-28T19:06:21.290652Z00000PT15MAvailable' headers: Accept: - application/xml @@ -534,119 +534,119 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:22Z2021-04-22T15:07:22Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:21ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:07:22.4436631Z2021-04-22T15:07:22.4436631Z0001-01-01T00:00:00PT15MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:06:21.9928816Z2021-09-28T19:06:21.9928816Z0001-01-01T00:00:00PT15MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:21 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:22Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:21Z2021-09-28T19:06:22ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:22.4622355Z2021-04-22T15:07:18.640382Z00000PT15MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:06:21.2906522Z2021-09-28T19:06:22.0094153Z2021-09-28T19:06:21.2906522Z00000PT15MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:07:22 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:07:22 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:21 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:07:23 GMT - etag: '637547008379830000' + date: Tue, 28 Sep 2021 19:06:22 GMT + etag: '637684527808070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:07:23 GMT - etag: '637547008368630000' + date: Tue, 28 Sep 2021 19:06:22 GMT + etag: '637684527794700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestqdikv3sdan.servicebus.windows.net/dfkla?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfkla?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_error.yaml index b6c32532ecb2..efcd55d056b4 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_error.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_error.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestqwlgxkbg2s.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:55:39Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:23Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 02 Mar 2021 19:55:39 GMT + date: Tue, 28 Sep 2021 19:06:22 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-03-02T19:55:40Z2021-03-02T19:55:40Zservicebustestqwlgxkbg2shttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:06:24Z2021-09-28T19:06:24Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:55:40.3Z2021-03-02T19:55:40.337ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:24.1Z2021-09-28T19:06:24.153ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 02 Mar 2021 19:55:40 GMT + date: Tue, 28 Sep 2021 19:06:24 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: ' @@ -67,69 +67,69 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-03-02T19:55:40Z2021-03-02T19:55:40Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:24Z2021-09-28T19:06:24ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-03-02T19:55:40.837581Z2021-03-02T19:55:40.837581Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:24.6824879Z2021-09-28T19:06:24.6824879Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 02 Mar 2021 19:55:40 GMT - etag: '637503117403370000' + date: Tue, 28 Sep 2021 19:06:24 GMT + etag: '637684527841530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 02 Mar 2021 19:55:40 GMT - etag: '637503117403370000' + date: Tue, 28 Sep 2021 19:06:24 GMT + etag: '637684527841530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 02 Mar 2021 19:55:40 GMT - etag: '637503117403370000' + date: Tue, 28 Sep 2021 19:06:24 GMT + etag: '637684527841530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_success.yaml index 72644411f6f0..a88731f31e12 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_success.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebusteste2jcyl55n4.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:08:57Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:25Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:56 GMT + date: Tue, 28 Sep 2021 19:06:25 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:08:58Z2021-04-22T15:08:58Zservicebusteste2jcyl55n4https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:06:26Z2021-09-28T19:06:26Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:08:58Z2021-04-22T15:08:58.107ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:26.353Z2021-09-28T19:06:26.42ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:57 GMT + date: Tue, 28 Sep 2021 19:06:26 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: ' @@ -67,27 +67,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:08:58Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:27Z2021-09-28T19:06:27ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:08:58.8292852Z2021-04-22T15:08:58.8292852Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:06:27.1600172Z2021-09-28T19:06:27.1600172Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:58 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: ' @@ -103,55 +103,55 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:08:59Z2021-04-22T15:08:59Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:27Z2021-09-28T19:06:27ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:08:59.1350835Z2021-04-22T15:08:59.1350835Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:06:27.4100177Z2021-09-28T19:06:27.4100177Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:58 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:08:59Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:27Z2021-09-28T19:06:27ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:08:58.8424999Z2021-04-22T15:08:59.1461603Z2021-04-22T15:08:58.843Z00000P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:06:27.1637921Z2021-09-28T19:06:27.4294224Z2021-09-28T19:06:27.1637921Z00000P10675199DT2H48M5.477539SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:58 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: ' @@ -167,60 +167,60 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:08:59Z2021-04-22T15:08:59Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:27Z2021-09-28T19:06:27ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:08:59.6663385Z2021-04-22T15:08:59.6663385Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:06:27.5350237Z2021-09-28T19:06:27.5350237Z0001-01-01T00:00:00PT10MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:58 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:08:59Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:27Z2021-09-28T19:06:27ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:08:58.8424999Z2021-04-22T15:08:59.6774516Z2021-04-22T15:08:58.843Z00000PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:06:27.1637921Z2021-09-28T19:06:27.5544151Z2021-09-28T19:06:27.1637921Z00000PT10MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:59 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: ' PT12SfalsePT11Mtruetrue14trueActivesb://servicebusteste2jcyl55n4.servicebus.windows.net/fjruisb://servicebusteste2jcyl55n4.servicebus.windows.net/fjruiPT10MAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue14trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruisb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruiPT10MAvailable' headers: Accept: - application/xml @@ -231,59 +231,59 @@ interactions: If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebusteste2jcyl55n4.servicebus.windows.net%2Ffjrui&sig=Gqpvpph3U7yIOc1H65DXTCvunMmzZYC%2bLdd4tcjh7CA%3d&se=1619107740&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Ffjrui&sig=KKyZxSReFnC8fWA%2fnkNvZOlTHu1Ts3YtsnpVTH28v68%3d&se=1632859587&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebusteste2jcyl55n4.servicebus.windows.net%2Ffjrui&sig=Gqpvpph3U7yIOc1H65DXTCvunMmzZYC%2bLdd4tcjh7CA%3d&se=1619107740&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkv3s7h2dmw.servicebus.windows.net%2Ffjrui&sig=KKyZxSReFnC8fWA%2fnkNvZOlTHu1Ts3YtsnpVTH28v68%3d&se=1632859587&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:09:00Z2021-04-22T15:09:00Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:27Z2021-09-28T19:06:27ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui2021-04-22T15:09:00.1984576Z2021-04-22T15:09:00.1984576Z0001-01-01T00:00:00sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui2021-09-28T19:06:27.6443997Z2021-09-28T19:06:27.6443997Z0001-01-01T00:00:00sb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:59 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:09:00Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:27Z2021-09-28T19:06:27ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui2021-04-22T15:08:58.8424999Z2021-04-22T15:09:00.2087017Z2021-04-22T15:08:58.843Z00000sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui2021-09-28T19:06:27.1637921Z2021-09-28T19:06:27.6637997Z2021-09-28T19:06:27.1637921Z00000sb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:59 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: ' @@ -299,97 +299,97 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:09:00Z2021-04-22T15:09:00Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:06:27Z2021-09-28T19:06:27ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:09:00.7297139Z2021-04-22T15:09:00.7297139Z0001-01-01T00:00:00PT15MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:06:27.7537703Z2021-09-28T19:06:27.7537703Z0001-01-01T00:00:00PT15MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:08:59 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:09:00Zsb://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:06:27Z2021-09-28T19:06:27ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:08:58.8424999Z2021-04-22T15:09:00.7243362Z2021-04-22T15:08:58.843Z00000PT15MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:06:27.1637921Z2021-09-28T19:06:27.7575509Z2021-09-28T19:06:27.1637921Z00000PT15MAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 15:09:00 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:09:00 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:27 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 15:09:01 GMT - etag: '637547009381070000' + date: Tue, 28 Sep 2021 19:06:28 GMT + etag: '637684527864200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_by_name.yaml index fde1c3a26598..748fb39920f6 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_by_name.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_by_name.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:16Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:28Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:15 GMT + date: Tue, 28 Sep 2021 19:06:27 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,74 +34,74 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:34:16Z2020-09-29T08:34:16Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-09-28T19:06:29Z2021-09-28T19:06:29Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:16.837Z2020-09-29T08:34:16.867ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:29.253Z2021-09-28T19:06:29.29ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:17 GMT + date: Tue, 28 Sep 2021 19:06:29 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-09-29T08:34:16Z2020-09-29T08:34:16Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05topic_testaddf2021-09-28T19:06:29Z2021-09-28T19:06:29Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:16.837Z2020-09-29T08:34:16.867Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:29.253Z2021-09-28T19:06:29.29Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:17 GMT - etag: '637369652568670000' + date: Tue, 28 Sep 2021 19:06:29 GMT + etag: '637684527892900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:17 GMT - etag: '637369652568670000' + date: Tue, 28 Sep 2021 19:06:30 GMT + etag: '637684527892900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/topic_testaddf?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_duplicate.yaml index a22b77f6778e..885c620fdf97 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_duplicate.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_duplicate.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:18Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:30Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:18 GMT + date: Tue, 28 Sep 2021 19:06:30 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,26 +34,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:34:19Z2020-09-29T08:34:19Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-09-28T19:06:31Z2021-09-28T19:06:31Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:19.127Z2020-09-29T08:34:19.16ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:31.38Z2021-09-28T19:06:31.41ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:19 GMT + date: Tue, 28 Sep 2021 19:06:31 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05 - request: body: ' @@ -67,46 +67,46 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: string: 409SubCode=40900. Conflict. You're requesting an operation that isn't allowed in the resource's current state. To know more - visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:17fbd43a-fc98-4ef3-887e-8b55303a1ffd_G5, - SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-09-29T08:34:19 + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:aec02faf-39ec-4da4-94c3-89375629a6a7_G8, + SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2021-09-28T19:06:31 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:34:19 GMT - etag: '637369652591600000' + date: Tue, 28 Sep 2021 19:06:31 GMT + etag: '637684527914100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 409 message: Conflict - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:19 GMT - etag: '637369652591600000' + date: Tue, 28 Sep 2021 19:06:32 GMT + etag: '637684527914100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dqkodq?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_with_topic_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_with_topic_description.yaml index e49b0ba035e0..815a70f9bc33 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_with_topic_description.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_with_topic_description.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestifpshnuf7z.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T16:10:59Z + string: Topicshttps://servicebustestqvutex6xoh.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T22:18:14Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 15 Apr 2021 16:10:58 GMT + date: Tue, 28 Sep 2021 22:18:14 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestifpshnuf7z.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestqvutex6xoh.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,54 +34,54 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: - string: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-15T16:10:59Z2021-04-15T16:11:00Zservicebustestifpshnuf7zhttps://servicebustestqvutex6xoh.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-09-28T22:18:14Z2021-09-28T22:18:14Zservicebustestqvutex6xohPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:10:59.67Z2021-04-15T16:11:00.473ZfalsePT10MtrueAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-09-28T22:18:14.627Z2021-09-28T22:18:14.777ZfalsePT10MtrueAvailablefalsetrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:11:00 GMT + date: Tue, 28 Sep 2021 22:18:15 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestqvutex6xoh.servicebus.windows.net/iweidk?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2021-04-15T16:10:59Z2021-04-15T16:11:00Zservicebustestifpshnuf7zhttps://servicebustestqvutex6xoh.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-09-28T22:18:14Z2021-09-28T22:18:14Zservicebustestqvutex6xohPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:10:59.67Z2021-04-15T16:11:00.473Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-09-28T22:18:14.627Z2021-09-28T22:18:14.777Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:11:00 GMT - etag: '637540998604730000' + date: Tue, 28 Sep 2021 22:18:15 GMT + etag: '637684642947770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 + url: https://servicebustestqvutex6xoh.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05 - request: body: ' @@ -95,96 +95,127 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05 response: body: - string: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?api-version=2017-04dkozq2021-04-15T16:11:01Z2021-04-15T16:11:02Zservicebustestifpshnuf7zhttps://servicebustestqvutex6xoh.servicebus.windows.net/dkozq?api-version=2021-05dkozq2021-09-28T22:18:15Z2021-09-28T22:18:15Zservicebustestqvutex6xohPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:11:01.717Z2021-04-15T16:11:02.163ZfalsePT10MtrueAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-09-28T22:18:15.543Z2021-09-28T22:18:15.733ZfalsePT10MtrueAvailablefalsetrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:11:01 GMT + date: Tue, 28 Sep 2021 22:18:16 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?api-version=2017-04 + url: https://servicebustestqvutex6xoh.servicebus.windows.net/dkozq?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkozq?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?enrich=false&api-version=2017-04dkozq2021-04-15T16:11:01Z2021-04-15T16:11:02Zservicebustestifpshnuf7zhttps://servicebustestqvutex6xoh.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05dkozq2021-09-28T22:18:15Z2021-09-28T22:18:15Zservicebustestqvutex6xohPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:11:01.717Z2021-04-15T16:11:02.163Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-09-28T22:18:15.543Z2021-09-28T22:18:15.733Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 15 Apr 2021 16:11:02 GMT - etag: '637540998621630000' + date: Tue, 28 Sep 2021 22:18:16 GMT + etag: '637684642957330000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?enrich=false&api-version=2017-04 + url: https://servicebustestqvutex6xoh.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05 +- request: + body: ' + + 1024' + headers: + Accept: + - application/xml + Content-Length: + - '324' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/famviq?api-version=2021-05 + response: + body: + string: 400SubCode=40000. Bad Request. To know more + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:ea57b839-3818-4642-a91d-02b599a09c0b_G13, + SystemTracker:servicebustestsbname.servicebus.windows.net:famviq, Timestamp:2021-09-28T22:18:16 + headers: + content-type: application/xml; charset=utf-8 + date: Tue, 28 Sep 2021 22:18:16 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 400 + message: Bad Request + url: https://servicebustestqvutex6xoh.servicebus.windows.net/famviq?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 16:11:03 GMT - etag: '637540998604730000' + date: Tue, 28 Sep 2021 22:18:17 GMT + etag: '637684642947770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestqvutex6xoh.servicebus.windows.net/iweidk?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 15 Apr 2021 16:11:04 GMT - etag: '637540998621630000' + date: Tue, 28 Sep 2021 22:18:17 GMT + etag: '637684642957330000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?api-version=2017-04 + url: https://servicebustestqvutex6xoh.servicebus.windows.net/dkozq?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_delete.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_delete.yaml index a2a8dc28b5f3..750c73dbf099 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_delete.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_delete.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:24Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:37Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:23 GMT + date: Tue, 28 Sep 2021 19:06:37 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,54 +34,54 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:06:38Z2021-09-28T19:06:38Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:38.16Z2021-09-28T19:06:38.317ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:24 GMT + date: Tue, 28 Sep 2021 19:06:38 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:25Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkTopicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:39Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:06:38Z2021-09-28T19:06:38Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:38.16Z2021-09-28T19:06:38.317Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:24 GMT + date: Tue, 28 Sep 2021 19:06:38 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -95,208 +95,208 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:06:39Z2021-09-28T19:06:39Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:39.543Z2021-09-28T19:06:39.777ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:25 GMT + date: Tue, 28 Sep 2021 19:06:39 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:27Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkTopicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:40Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:06:38Z2021-09-28T19:06:38Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:38.16Z2021-09-28T19:06:38.317Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:06:39Z2021-09-28T19:06:39Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:39.543Z2021-09-28T19:06:39.777Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:26 GMT + date: Tue, 28 Sep 2021 19:06:40 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05test_topic2021-09-28T19:06:38Z2021-09-28T19:06:38Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:38.16Z2021-09-28T19:06:38.317Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:26 GMT - etag: '637369652646970000' + date: Tue, 28 Sep 2021 19:06:40 GMT + etag: '637684527983170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:26 GMT - etag: '637369652646970000' + date: Tue, 28 Sep 2021 19:06:40 GMT + etag: '637684527983170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:28Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkTopicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:42Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:06:39Z2021-09-28T19:06:39Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:39.543Z2021-09-28T19:06:39.777Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:27 GMT + date: Tue, 28 Sep 2021 19:06:41 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2021-05txt/.-_1232021-09-28T19:06:39Z2021-09-28T19:06:39Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:39.543Z2021-09-28T19:06:39.777Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:27 GMT - etag: '637369652661900000' + date: Tue, 28 Sep 2021 19:06:41 GMT + etag: '637684527997770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:27 GMT - etag: '637369652661900000' + date: Tue, 28 Sep 2021 19:06:41 GMT + etag: '637684527997770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:29Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:43Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:28 GMT + date: Tue, 28 Sep 2021 19:06:42 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_properties_basic.yaml index 7d479e7ee497..dac05dcc84a9 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_properties_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_properties_basic.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:39Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:43Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:39 GMT + date: Tue, 28 Sep 2021 19:06:43 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,74 +34,74 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:40Z2020-08-17T08:05:40Zservicebustest32ip2wgoaahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:06:44Z2021-09-28T19:06:44Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:40.177Z2020-08-17T08:05:40.207ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:44.087Z2021-09-28T19:06:44.137ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:40 GMT + date: Tue, 28 Sep 2021 19:06:44 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-08-17T08:05:40Z2020-08-17T08:05:40Zservicebustest32ip2wgoaahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05test_topic2021-09-28T19:06:44Z2021-09-28T19:06:44Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:40.177Z2020-08-17T08:05:40.207Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:44.087Z2021-09-28T19:06:44.137Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:40 GMT - etag: '637332483402070000' + date: Tue, 28 Sep 2021 19:06:44 GMT + etag: '637684528041370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:40 GMT - etag: '637332483402070000' + date: Tue, 28 Sep 2021 19:06:45 GMT + etag: '637684528041370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list.yaml index d373bc43a138..5d3a57434b48 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list.yaml @@ -5,44 +5,44 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:32Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:45Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:32 GMT + date: Tue, 28 Sep 2021 19:06:44 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:33Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:46Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:32 GMT + date: Tue, 28 Sep 2021 19:06:46 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -56,26 +56,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:34:33Z2020-09-29T08:34:33Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic_1?api-version=2021-05test_topic_12021-09-28T19:06:47Z2021-09-28T19:06:47Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:33.473Z2020-09-29T08:34:33.503ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:47.54Z2021-09-28T19:06:47.613ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:33 GMT + date: Tue, 28 Sep 2021 19:06:47 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic_1?api-version=2021-05 - request: body: ' @@ -89,124 +89,124 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:34:34Z2020-09-29T08:34:34Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic_2?api-version=2021-05test_topic_22021-09-28T19:06:48Z2021-09-28T19:06:48Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:34.413Z2020-09-29T08:34:34.51ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:48.583Z2021-09-28T19:06:48.623ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:34 GMT + date: Tue, 28 Sep 2021 19:06:48 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic_2?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:35Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:34:33Z2020-09-29T08:34:33Zservicebustestrm7a5oi5hkTopicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:49Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic_1?api-version=2021-05test_topic_12021-09-28T19:06:47Z2021-09-28T19:06:47Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:33.473Z2020-09-29T08:34:33.503Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:34:34Z2020-09-29T08:34:34Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:47.54Z2021-09-28T19:06:47.613Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic_2?api-version=2021-05test_topic_22021-09-28T19:06:48Z2021-09-28T19:06:48Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:34.413Z2020-09-29T08:34:34.51Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:48.583Z2021-09-28T19:06:48.623Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:35 GMT + date: Tue, 28 Sep 2021 19:06:48 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:36 GMT - etag: '637369652735030000' + date: Tue, 28 Sep 2021 19:06:49 GMT + etag: '637684528076130000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic_1?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:36 GMT - etag: '637369652745100000' + date: Tue, 28 Sep 2021 19:06:49 GMT + etag: '637684528086230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic_2?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:37Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:50Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:37 GMT + date: Tue, 28 Sep 2021 19:06:50 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_properties.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_properties.yaml index 582c686597f3..8fb2a6f97bd4 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_properties.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_properties.yaml @@ -5,66 +5,66 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:47Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:51Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:47 GMT + date: Tue, 28 Sep 2021 19:06:51 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:48Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:52Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:48 GMT + date: Tue, 28 Sep 2021 19:06:51 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:48Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:52Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:48 GMT + date: Tue, 28 Sep 2021 19:06:52 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -78,124 +78,124 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:49Z2020-08-17T08:05:49Zservicebustest32ip2wgoaahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:06:52Z2021-09-28T19:06:52Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:49.45Z2020-08-17T08:05:49.503ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:52.963Z2021-09-28T19:06:52.99ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:49 GMT + date: Tue, 28 Sep 2021 19:06:53 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:50Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:49Z2020-08-17T08:05:49Zservicebustest32ip2wgoaaTopicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:53Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:06:52Z2021-09-28T19:06:52Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:49.45Z2020-08-17T08:05:49.503Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:52.963Z2021-09-28T19:06:52.99Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:50 GMT + date: Tue, 28 Sep 2021 19:06:53 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:51Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:49Z2020-08-17T08:05:49Zservicebustest32ip2wgoaaTopicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:54Zhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:06:52Z2021-09-28T19:06:52Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:49.45Z2020-08-17T08:05:49.503Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:52.963Z2021-09-28T19:06:52.99Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:51 GMT + date: Tue, 28 Sep 2021 19:06:54 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:51 GMT - etag: '637332483495030000' + date: Tue, 28 Sep 2021 19:06:54 GMT + etag: '637684528129900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/test_topic?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:52Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:55Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:05:51 GMT + date: Tue, 28 Sep 2021 19:06:55 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_premium_create_with_topic_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_premium_create_with_topic_description.yaml new file mode 100644 index 000000000000..c9c28282e18d --- /dev/null +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_premium_create_with_topic_description.yaml @@ -0,0 +1,329 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 + response: + body: + string: Topicshttps://servicebustestv73qvndifp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:56Z + headers: + content-type: application/atom+xml;type=feed;charset=utf-8 + date: Tue, 28 Sep 2021 19:06:56 GMT + server: Microsoft-HTTPAPI/2.0 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 +- request: + body: ' + + PT11M3072PT12MtruePT10M12345' + headers: + Accept: + - application/xml + Content-Length: + - '605' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-09-28T19:06:56Z2021-09-28T19:06:56Zservicebustestv73qvndifpPT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:56.553Z2021-09-28T19:06:56.783ZtruePT10MfalseAvailablefalsefalse12345 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:06:57 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 201 + message: Created + url: https://servicebustestv73qvndifp.servicebus.windows.net/iweidk?api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-09-28T19:06:56Z2021-09-28T19:06:56Zservicebustestv73qvndifpPT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:56.553Z2021-09-28T19:06:56.783Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse12345 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:06:57 GMT + etag: '637684528167830000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05 +- request: + body: ' + + PT11M3072PT12MtruePT10M' + headers: + Accept: + - application/xml + Content-Length: + - '545' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/dkozq?api-version=2021-05dkozq2021-09-28T19:06:57Z2021-09-28T19:06:57Zservicebustestv73qvndifpPT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:57.727Z2021-09-28T19:06:57.793ZtruePT10MfalseAvailablefalsefalse1024 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:06:57 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 201 + message: Created + url: https://servicebustestv73qvndifp.servicebus.windows.net/dkozq?api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05dkozq2021-09-28T19:06:57Z2021-09-28T19:06:57Zservicebustestv73qvndifpPT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:57.727Z2021-09-28T19:06:57.793Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse1024 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:06:57 GMT + etag: '637684528177930000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05 +- request: + body: ' + + 1023' + headers: + Accept: + - application/xml + Content-Length: + - '324' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05 + response: + body: + string: '400SubCode=40000. The property value for + ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace + ''servicebustestsbname'' is using ''Premium'' tier. + + Parameter name: MaxMessageSizeInKilobytes + + Actual value was 1023. TrackingId:dd7069e5-124e-47fb-b76f-d5dcede657e5_G8, + SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-09-28T19:06:58' + headers: + content-type: application/xml; charset=utf-8 + date: Tue, 28 Sep 2021 19:06:58 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 400 + message: Bad Request + url: https://servicebustestv73qvndifp.servicebus.windows.net/rekocd?api-version=2021-05 +- request: + body: ' + + 102401' + headers: + Accept: + - application/xml + Content-Length: + - '326' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05 + response: + body: + string: '400SubCode=40000. The property value for + ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace + ''servicebustestsbname'' is using ''Premium'' tier. + + Parameter name: MaxMessageSizeInKilobytes + + Actual value was 102401. TrackingId:54ee2055-7b67-43b4-aa77-7fc276add8ca_G8, + SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-09-28T19:06:59' + headers: + content-type: application/xml; charset=utf-8 + date: Tue, 28 Sep 2021 19:06:58 GMT + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 400 + message: Bad Request + url: https://servicebustestv73qvndifp.servicebus.windows.net/rekocd?api-version=2021-05 +- request: + body: ' + + PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:57.727Z2021-09-28T19:06:57.793Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsefalse54321' + headers: + Accept: + - application/xml + Content-Length: + - '1708' + Content-Type: + - application/atom+xml + If-Match: + - '*' + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/dkozq?api-version=2021-05dkozq2021-09-28T19:06:59Zservicebustestv73qvndifpPT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:57.727Z2021-09-28T19:06:57.793Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse54321 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:06:58 GMT + etag: '637684528177930000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/dkozq?api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestv73qvndifp.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05dkozq2021-09-28T19:06:57Z2021-09-28T19:06:59Zservicebustestv73qvndifpPT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:57.727Z2021-09-28T19:06:59.257Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse54321 + headers: + content-type: application/atom+xml;type=entry;charset=utf-8 + date: Tue, 28 Sep 2021 19:06:58 GMT + etag: '637684528192570000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + transfer-encoding: chunked + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 + response: + body: + string: '' + headers: + content-length: '0' + date: Tue, 28 Sep 2021 19:06:59 GMT + etag: '637684528167830000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/iweidk?api-version=2021-05 +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05 + response: + body: + string: '' + headers: + content-length: '0' + date: Tue, 28 Sep 2021 19:06:59 GMT + etag: '637684528192570000' + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000 + status: + code: 200 + message: OK + url: https://servicebustestv73qvndifp.servicebus.windows.net/dkozq?api-version=2021-05 +version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_invalid.yaml index 47bda95bb21b..8862d8a47abb 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_invalid.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_invalid.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:42Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:07:01Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:42 GMT + date: Tue, 28 Sep 2021 19:07:00 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,80 +34,80 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:34:43Z2020-09-29T08:34:43Zservicebustestrm7a5oi5hkhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-09-28T19:07:01Z2021-09-28T19:07:01Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:43.41Z2020-09-29T08:34:43.44ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:07:01.443Z2021-09-28T19:07:01.487ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Tue, 29 Sep 2020 08:34:43 GMT + date: Tue, 28 Sep 2021 19:07:01 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj?api-version=2021-05 - request: body: ' P10675199DT2H48M5.477539S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:43.410Z2020-09-29T08:34:43.440ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2021-09-28T19:07:01.443Z2021-09-28T19:07:01.487ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256' headers: Accept: - application/xml Content-Length: - - '1195' + - '1253' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2021-05 response: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:b1210d9b-78e3-4e12-9088-d9b6c35f4915_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, - Timestamp:2020-09-29T08:34:44 + . TrackingId:2cec81bb-45b1-4a7f-8459-a72ab514210d_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, + Timestamp:2021-09-28T19:07:02 headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:34:44 GMT + date: Tue, 28 Sep 2021 19:07:02 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iewdm?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/iewdm?api-version=2021-05 - request: body: ' P10675199DT2H48M5.477539S1024falseP25Dtrue0falsefalseActive2020-09-29T08:34:43.410Z2020-09-29T08:34:43.440ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2021-09-28T19:07:01.443Z2021-09-28T19:07:01.487ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256' headers: Accept: - application/xml Content-Length: - - '1194' + - '1252' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: string: '400SubCode=40000. The value supplied must @@ -115,39 +115,39 @@ interactions: Parameter name: DuplicateDetectionHistoryTimeWindow - Actual value was 25.00:00:00. TrackingId:c205eb47-6640-4b88-9507-0e0d84d6859d_G15, - SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-09-29T08:34:44' + Actual value was 25.00:00:00. TrackingId:c46f60d9-13cd-4a98-b3c7-733d61f38a3c_G6, + SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2021-09-28T19:07:02' headers: content-type: application/xml; charset=utf-8 - date: Tue, 29 Sep 2020 08:34:44 GMT - etag: '637369652834400000' + date: Tue, 28 Sep 2021 19:07:02 GMT + etag: '637684528214870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 400 message: Bad Request - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Tue, 29 Sep 2020 08:34:45 GMT - etag: '637369652834400000' + date: Tue, 28 Sep 2021 19:07:02 GMT + etag: '637684528214870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/dfjfj?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_success.yaml index a5baedcc6ea2..8f18cc40c1df 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_success.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestsqmnqdktqa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T14:57:55Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:07:03Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:55 GMT + date: Tue, 28 Sep 2021 19:07:03 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,310 +34,312 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:56Zservicebustestsqmnqdktqahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:07:04Z2021-09-28T19:07:04Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:56.657ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:04.43ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:57 GMT + date: Tue, 28 Sep 2021 19:07:04 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: ' PT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:56.657ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2021-09-28T19:07:04.357Z2021-09-28T19:07:04.430ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256' headers: Accept: - application/xml Content-Length: - - '1174' + - '1232' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:57Zservicebustestsqmnqdktqahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:07:04Zservicebustestkv3s7h2dmwPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:56.657ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:04.43ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:57 GMT - etag: '637547002766570000' + date: Tue, 28 Sep 2021 19:07:04 GMT + etag: '637684528244300000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:57Zservicebustestsqmnqdktqahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:07:04Z2021-09-28T19:07:04Zservicebustestkv3s7h2dmwPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:57.39Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:04.887Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:57 GMT - etag: '637547002773900000' + date: Tue, 28 Sep 2021 19:07:04 GMT + etag: '637684528248870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 - request: body: ' PT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:57.390Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue' + />Active2021-09-28T19:07:04.357Z2021-09-28T19:07:04.887Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue256' headers: Accept: - application/xml Content-Length: - - '1647' + - '1705' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:58Zservicebustestsqmnqdktqahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:07:05Zservicebustestkv3s7h2dmwPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:57.39Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:04.887Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:58 GMT - etag: '637547002773900000' + date: Tue, 28 Sep 2021 19:07:04 GMT + etag: '637684528248870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:58Zservicebustestsqmnqdktqahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:07:04Z2021-09-28T19:07:05Zservicebustestkv3s7h2dmwPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:58.09Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:05.133Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:58 GMT - etag: '637547002780900000' + date: Tue, 28 Sep 2021 19:07:04 GMT + etag: '637684528251330000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 - request: body: ' PT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:58.090Z0001-01-01T00:00:00.000Ztrue000000PT10M1SfalseAvailablefalsetrue' + />Active2021-09-28T19:07:04.357Z2021-09-28T19:07:05.133Z0001-01-01T00:00:00.000Ztrue000000PT10M1SfalseAvailablefalsetrue256' headers: Accept: - application/xml Content-Length: - - '1653' + - '1711' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:58Zservicebustestsqmnqdktqahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:07:05Zservicebustestkv3s7h2dmwPT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:58.09Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M2S3072falsePT12M3Strue0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:05.133Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:58 GMT - etag: '637547002780900000' + date: Tue, 28 Sep 2021 19:07:04 GMT + etag: '637684528251330000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:58Zservicebustestsqmnqdktqahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:07:04Z2021-09-28T19:07:05Zservicebustestkv3s7h2dmwPT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:58.61Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M2S3072falsePT12M3Strue0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:05.363Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:58 GMT - etag: '637547002786100000' + date: Tue, 28 Sep 2021 19:07:04 GMT + etag: '637684528253630000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 - request: body: ' - PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse' + PT15M2048falsePT16Mfalse0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:05.363Z0001-01-01T00:00:00.000Zfalse000000PT14MfalseAvailablefalsefalse256' headers: Accept: - application/xml Content-Length: - - '865' + - '1708' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:59Zservicebustestsqmnqdktqahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:07:05Zservicebustestkv3s7h2dmwPT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:05.363Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:59 GMT - etag: '637547002786100000' + date: Tue, 28 Sep 2021 19:07:04 GMT + etag: '637684528253630000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:59Zservicebustestsqmnqdktqahttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:07:04Z2021-09-28T19:07:05Zservicebustestkv3s7h2dmwPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:59.133Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-09-28T19:07:04.357Z2021-09-28T19:07:05.58Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:57:59 GMT - etag: '637547002791330000' + date: Tue, 28 Sep 2021 19:07:04 GMT + etag: '637684528255800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 14:58:00 GMT - etag: '637547002791330000' + date: Tue, 28 Sep 2021 19:07:05 GMT + etag: '637684528255800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjrui?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_error.yaml index bf528b73941c..1f5a861a042c 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_error.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_error.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustesterxlnliq4u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-19T17:30:33Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:07:06Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 19 Apr 2021 17:30:33 GMT + date: Tue, 28 Sep 2021 19:07:06 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustesterxlnliq4u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,46 +34,46 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustesterxlnliq4u.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-19T17:30:33Z2021-04-19T17:30:34Zservicebustesterxlnliq4uhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:07:07Z2021-09-28T19:07:07Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-19T17:30:33.93Z2021-04-19T17:30:34.087ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:07:07.307Z2021-09-28T19:07:07.343ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 19 Apr 2021 17:30:34 GMT + date: Tue, 28 Sep 2021 19:07:07 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustesterxlnliq4u.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Mon, 19 Apr 2021 17:30:35 GMT - etag: '637544502340870000' + date: Tue, 28 Sep 2021 19:07:07 GMT + etag: '637684528273430000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustesterxlnliq4u.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_success.yaml index 3af5eaedc164..ac61acb8d8ab 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_success.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestoklkptksim.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T14:49:38Z + string: Topicshttps://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:07:08Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 22 Apr 2021 14:49:37 GMT + date: Tue, 28 Sep 2021 19:07:07 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestoklkptksim.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 - request: body: ' @@ -34,241 +34,241 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:49:39Z2021-04-22T14:49:39Zservicebustestoklkptksimhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:07:09Z2021-09-28T19:07:09Zservicebustestkv3s7h2dmwP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:49:39.203Z2021-04-22T14:49:39.313ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:07:09.117Z2021-09-28T19:07:09.18ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:49:38 GMT + date: Tue, 28 Sep 2021 19:07:08 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: ' PT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '882' + - '940' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:49:40Zservicebustestoklkptksimhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:07:09Zservicebustestkv3s7h2dmwPT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:49:39 GMT - etag: '637546997793130000' + date: Tue, 28 Sep 2021 19:07:08 GMT + etag: '637684528291800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:49:39Z2021-04-22T14:49:40Zservicebustestoklkptksimhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:07:09Z2021-09-28T19:07:09Zservicebustestkv3s7h2dmwPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:49:39.203Z2021-04-22T14:49:40Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-09-28T19:07:09.117Z2021-09-28T19:07:09.67Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:49:39 GMT - etag: '637546997800000000' + date: Tue, 28 Sep 2021 19:07:08 GMT + etag: '637684528296700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 - request: body: ' PT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue' + />ActivetruePT10MfalseAvailabletrue256' headers: Accept: - application/xml Content-Length: - - '862' + - '920' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:49:40Zservicebustestoklkptksimhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:07:09Zservicebustestkv3s7h2dmwPT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:49:39 GMT - etag: '637546997800000000' + date: Tue, 28 Sep 2021 19:07:08 GMT + etag: '637684528296700000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:49:39Z2021-04-22T14:49:40Zservicebustestoklkptksimhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:07:09Z2021-09-28T19:07:09Zservicebustestkv3s7h2dmwPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:49:39.203Z2021-04-22T14:49:40.527Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:07:09.117Z2021-09-28T19:07:09.81Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:49:40 GMT - etag: '637546997805270000' + date: Tue, 28 Sep 2021 19:07:09 GMT + etag: '637684528298100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 - request: body: ' PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse' + />ActivefalsePT14MfalseAvailablefalse256' headers: Accept: - application/xml Content-Length: - - '865' + - '923' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:49:41Zservicebustestoklkptksimhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:07:10Zservicebustestkv3s7h2dmwPT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:49:40 GMT - etag: '637546997805270000' + date: Tue, 28 Sep 2021 19:07:09 GMT + etag: '637684528298100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:49:39Z2021-04-22T14:49:41Zservicebustestoklkptksimhttps://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:07:09Z2021-09-28T19:07:10Zservicebustestkv3s7h2dmwPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:49:39.203Z2021-04-22T14:49:41.193Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-09-28T19:07:09.117Z2021-09-28T19:07:10.053Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 22 Apr 2021 14:49:40 GMT - etag: '637546997811930000' + date: Tue, 28 Sep 2021 19:07:09 GMT + etag: '637684528300530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' headers: content-length: '0' - date: Thu, 22 Apr 2021 14:49:41 GMT - etag: '637546997811930000' + date: Tue, 28 Sep 2021 19:07:09 GMT + etag: '637684528300530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04 + url: https://servicebustestkv3s7h2dmw.servicebus.windows.net/fjruid?api-version=2021-05 version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_queues_async.py b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_queues_async.py index 6aeb4108565d..8454af260a11 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_queues_async.py +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_queues_async.py @@ -216,7 +216,6 @@ async def test_async_mgmt_queue_create_with_invalid_name(self, servicebus_namesp with pytest.raises(msrest.exceptions.ValidationError): await mgmt_service.create_queue('') - @CachedResourceGroupPreparer(name_prefix='servicebustest') @CachedServiceBusNamespacePreparer(name_prefix='servicebustest') async def test_async_mgmt_queue_create_with_queue_description(self, servicebus_namespace_connection_string, **kwargs): @@ -224,6 +223,7 @@ async def test_async_mgmt_queue_create_with_queue_description(self, servicebus_n await clear_queues(mgmt_service) queue_name = "dkldf" queue_name_2 = "vjiqjx" + queue_name_3 = "clpqza" topic_name = "aghadh" await mgmt_service.create_topic(topic_name) await mgmt_service.create_queue( @@ -260,6 +260,13 @@ async def test_async_mgmt_queue_create_with_queue_description(self, servicebus_n max_size_in_megabytes=3072, requires_session=True ) + + with pytest.raises(HttpResponseError): + await mgmt_service.create_queue( + queue_name_3, + max_message_size_in_kilobytes=1024 # basic/standard ties does not support + ) + try: queue = await mgmt_service.get_queue(queue_name) assert queue.name == queue_name @@ -299,6 +306,99 @@ async def test_async_mgmt_queue_create_with_queue_description(self, servicebus_n await mgmt_service.delete_topic(topic_name) await mgmt_service.close() + @CachedResourceGroupPreparer(name_prefix='servicebustest') + @CachedServiceBusNamespacePreparer(name_prefix='servicebustest', sku='Premium') + async def test_async_mgmt_queue_premium_create_with_queue_description(self, servicebus_namespace_connection_string, + **kwargs): + mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string) + await clear_queues(mgmt_service) + queue_name = "dkldf" + queue_name_2 = "vjiqjx" + queue_name_3 = "rekocd" + + await mgmt_service.create_queue( + queue_name, + auto_delete_on_idle=datetime.timedelta(minutes=10), + dead_lettering_on_message_expiration=True, + default_message_time_to_live=datetime.timedelta(minutes=11), + duplicate_detection_history_time_window=datetime.timedelta(minutes=12), + enable_batched_operations=True, + # enable_express=True, + # enable_partitioning=True, + lock_duration=datetime.timedelta(seconds=13), + max_delivery_count=14, + max_size_in_megabytes=3072, + # requires_duplicate_detection=True, + requires_session=True, + max_message_size_in_kilobytes=12345 + ) + + await mgmt_service.create_queue( + queue_name_2, + auto_delete_on_idle="PT10M1S", + dead_lettering_on_message_expiration=True, + default_message_time_to_live="PT11M2S", + duplicate_detection_history_time_window="PT12M3S", + enable_batched_operations=True, + lock_duration="PT13S", + max_delivery_count=14, + max_size_in_megabytes=3072, + requires_session=True + ) # default max_message_size_in_kilobytes is 1024 + + with pytest.raises(HttpResponseError): + await mgmt_service.create_queue( + queue_name_3, + max_message_size_in_kilobytes=1023 # min allowed is 1024 + ) + + with pytest.raises(HttpResponseError): + await mgmt_service.create_queue( + queue_name_3, + max_message_size_in_kilobytes=102401 # max allowed is 102400 + ) + + + try: + queue = await mgmt_service.get_queue(queue_name) + assert queue.name == queue_name + assert queue.auto_delete_on_idle == datetime.timedelta(minutes=10) + assert queue.dead_lettering_on_message_expiration == True + assert queue.default_message_time_to_live == datetime.timedelta(minutes=11) + assert queue.duplicate_detection_history_time_window == datetime.timedelta(minutes=12) + assert queue.enable_batched_operations == True + # assert queue.enable_express == True + # assert queue.enable_partitioning == True + assert queue.lock_duration == datetime.timedelta(seconds=13) + assert queue.max_delivery_count == 14 + assert queue.max_size_in_megabytes % 3072 == 0 + # assert queue.requires_duplicate_detection == True + assert queue.requires_session == True + assert queue.max_message_size_in_kilobytes == 12345 + + queue_2 = await mgmt_service.get_queue(queue_name_2) + assert queue_2.name == queue_name_2 + assert queue_2.auto_delete_on_idle == datetime.timedelta(minutes=10, seconds=1) + assert queue_2.dead_lettering_on_message_expiration == True + assert queue_2.default_message_time_to_live == datetime.timedelta(minutes=11, seconds=2) + assert queue_2.duplicate_detection_history_time_window == datetime.timedelta(minutes=12, seconds=3) + assert queue_2.enable_batched_operations == True + assert queue_2.lock_duration == datetime.timedelta(seconds=13) + assert queue_2.max_delivery_count == 14 + assert queue_2.max_size_in_megabytes % 3072 == 0 + assert queue_2.requires_session == True + assert queue_2.max_message_size_in_kilobytes == 1024 + + queue_2.max_message_size_in_kilobytes = 54321 + await mgmt_service.update_queue(queue_2) + queue_2_new = await mgmt_service.get_queue(queue_name_2) + assert queue_2_new.max_message_size_in_kilobytes == 54321 + + finally: + await mgmt_service.delete_queue(queue_name) + await mgmt_service.delete_queue(queue_name_2) + await mgmt_service.close() + @CachedResourceGroupPreparer(name_prefix='servicebustest') @CachedServiceBusNamespacePreparer(name_prefix='servicebustest') async def test_async_mgmt_queue_create_duplicate(self, servicebus_namespace_connection_string, **kwargs): diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_topics_async.py b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_topics_async.py index 751450f42a50..dbb9dc9d9800 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_topics_async.py +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_topics_async.py @@ -48,6 +48,7 @@ async def test_async_mgmt_topic_create_with_topic_description(self, servicebus_n await clear_topics(mgmt_service) topic_name = "iweidk" topic_name_2 = "dkozq" + topic_name_3 = "famviq" try: await mgmt_service.create_topic( topic_name=topic_name, @@ -88,6 +89,78 @@ async def test_async_mgmt_topic_create_with_topic_description(self, servicebus_n assert topic_2.enable_express assert topic_2.enable_partitioning assert topic_2.max_size_in_megabytes % 3072 == 0 + + with pytest.raises(HttpResponseError): + await mgmt_service.create_topic( + topic_name_3, + max_message_size_in_kilobytes=1024 # basic/standard ties does not support + ) + + finally: + await mgmt_service.delete_topic(topic_name) + await mgmt_service.delete_topic(topic_name_2) + + @CachedResourceGroupPreparer(name_prefix='servicebustest') + @CachedServiceBusNamespacePreparer(name_prefix='servicebustest', sku='Premium') + async def test_async_mgmt_topic_premium_create_with_topic_description(self, servicebus_namespace_connection_string, **kwargs): + mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string) + await clear_topics(mgmt_service) + topic_name = "iweidk" + topic_name_2 = "dkozq" + topic_name_3 = "rekocd" + try: + await mgmt_service.create_topic( + topic_name=topic_name, + auto_delete_on_idle=datetime.timedelta(minutes=10), + default_message_time_to_live=datetime.timedelta(minutes=11), + duplicate_detection_history_time_window=datetime.timedelta(minutes=12), + enable_batched_operations=True, + max_size_in_megabytes=3072, + max_message_size_in_kilobytes=12345 + ) + topic = await mgmt_service.get_topic(topic_name) + assert topic.name == topic_name + assert topic.auto_delete_on_idle == datetime.timedelta(minutes=10) + assert topic.default_message_time_to_live == datetime.timedelta(minutes=11) + assert topic.duplicate_detection_history_time_window == datetime.timedelta(minutes=12) + assert topic.enable_batched_operations + assert topic.max_size_in_megabytes % 3072 == 0 + assert topic.max_message_size_in_kilobytes == 12345 + + await mgmt_service.create_topic( + topic_name=topic_name_2, + auto_delete_on_idle="PT10M", + default_message_time_to_live="PT11M", + duplicate_detection_history_time_window="PT12M", + enable_batched_operations=True, + max_size_in_megabytes=3072 + ) + topic_2 = await mgmt_service.get_topic(topic_name_2) + assert topic_2.name == topic_name_2 + assert topic_2.auto_delete_on_idle == datetime.timedelta(minutes=10) + assert topic_2.default_message_time_to_live == datetime.timedelta(minutes=11) + assert topic_2.duplicate_detection_history_time_window == datetime.timedelta(minutes=12) + assert topic_2.enable_batched_operations + assert topic_2.max_size_in_megabytes % 3072 == 0 + assert topic_2.max_message_size_in_kilobytes == 1024 + + with pytest.raises(HttpResponseError): + await mgmt_service.create_topic( + topic_name=topic_name_3, + max_message_size_in_kilobytes=1023 + ) + + with pytest.raises(HttpResponseError): + await mgmt_service.create_topic( + topic_name=topic_name_3, + max_message_size_in_kilobytes=102401 + ) + + topic_2.max_message_size_in_kilobytes = 54321 + await mgmt_service.update_topic(topic_2) + topic_2_new = await mgmt_service.get_topic(topic_name_2) + assert topic_2_new.max_message_size_in_kilobytes == 54321 + finally: await mgmt_service.delete_topic(topic_name) await mgmt_service.delete_topic(topic_name_2) diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_namespaces.test_mgmt_namespace_get_properties.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_namespaces.test_mgmt_namespace_get_properties.yaml index c8675edd75fd..3bf71da2ce89 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_namespaces.test_mgmt_namespace_get_properties.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_namespaces.test_mgmt_namespace_get_properties.yaml @@ -9,21 +9,21 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$namespaceinfo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$namespaceinfo?api-version=2021-05 response: body: - string: https://servicebustestv2fvof4o5i.servicebus.windows.net/$namespaceinfo?api-version=2017-04servicebustestv2fvof4o5i2020-08-19T23:16:14Zservicebustestv2fvof4o5ihttps://servicebustestappwyrpk4k.servicebus.windows.net/$namespaceinfo?api-version=2021-05servicebustestappwyrpk4k2021-09-28T19:01:40Zservicebustestappwyrpk4k2020-08-19T23:15:11.6ZStandard2020-08-19T23:15:11.6Zservicebustestv2fvof4o5iMessaging + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">2021-09-28T19:00:40.38ZStandard2021-09-28T19:00:40.38Zservicebustestappwyrpk4kMessaging headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Wed, 19 Aug 2020 23:16:14 GMT + - Tue, 28 Sep 2021 19:01:39 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_by_name.yaml index 2c0acc8dfaf5..d4f9815139af 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_by_name.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_by_name.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:21:10Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:01:41Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:09 GMT + - Tue, 28 Sep 2021 19:01:40 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/queue_testaddf?api-version=2017-04queue_testaddf2021-04-19T17:21:10Z2021-04-19T17:21:10Zservicebustestflrbydrmyyhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue_testaddf?api-version=2021-05queue_testaddf2021-09-28T19:01:41Z2021-09-28T19:01:41Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:21:10.687Z2021-04-19T17:21:10.717ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:41.66Z2021-09-28T19:01:41.687ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:10 GMT + - Tue, 28 Sep 2021 19:01:41 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,24 +79,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04queue_testaddf2021-04-19T17:21:10Z2021-04-19T17:21:10Zservicebustestflrbydrmyyhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2021-05queue_testaddf2021-09-28T19:01:41Z2021-09-28T19:01:41Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:21:10.687Z2021-04-19T17:21:10.717Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:41.66Z2021-09-28T19:01:41.687Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:11 GMT + - Tue, 28 Sep 2021 19:01:41 GMT etag: - - '637544496707170000' + - '637684525016870000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,9 +118,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2021-05 response: body: string: '' @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Mon, 19 Apr 2021 17:21:12 GMT + - Tue, 28 Sep 2021 19:01:42 GMT etag: - - '637544496707170000' + - '637684525016870000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_duplicate.yaml index a8aa24d04baf..443bfaa0c558 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_duplicate.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_duplicate.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:21:14Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:01:43Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:13 GMT + - Tue, 28 Sep 2021 19:01:42 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/rtofdk?api-version=2017-04rtofdk2021-04-19T17:21:14Z2021-04-19T17:21:14Zservicebustestflrbydrmyyhttps://servicebustestappwyrpk4k.servicebus.windows.net/rtofdk?api-version=2021-05rtofdk2021-09-28T19:01:43Z2021-09-28T19:01:43Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:21:14.69Z2021-04-19T17:21:14.73ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:43.707Z2021-09-28T19:01:43.743ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:14 GMT + - Tue, 28 Sep 2021 19:01:43 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,22 +86,22 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2021-05 response: body: string: 409SubCode=40900. Conflict. You're requesting an operation that isn't allowed in the resource's current state. To know more - visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:6870a810-ed5b-4d98-8576-8e9c91ca7ba5_G2, - SystemTracker:servicebustestsbname.servicebus.windows.net:rtofdk, Timestamp:2021-04-19T17:21:15 + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:6852ecba-9594-4c27-8933-0f6076cd6840_G8, + SystemTracker:servicebustestsbname.servicebus.windows.net:rtofdk, Timestamp:2021-09-28T19:01:44 headers: content-type: - application/xml; charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:14 GMT + - Tue, 28 Sep 2021 19:01:43 GMT etag: - - '637544496747300000' + - '637684525037430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -123,9 +123,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2021-05 response: body: string: '' @@ -133,9 +133,9 @@ interactions: content-length: - '0' date: - - Mon, 19 Apr 2021 17:21:15 GMT + - Tue, 28 Sep 2021 19:01:44 GMT etag: - - '637544496747300000' + - '637684525037430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_with_queue_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_with_queue_description.yaml index 6528db9b90c7..d0b11a079c91 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_with_queue_description.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_with_queue_description.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:21:19Z + string: Queueshttps://servicebustestkxdmegmltc.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T22:19:03Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:18 GMT + - Tue, 28 Sep 2021 22:19:03 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/aghadh?api-version=2017-04aghadh2021-04-19T17:21:19Z2021-04-19T17:21:19Zservicebustestflrbydrmyyhttps://servicebustestkxdmegmltc.servicebus.windows.net/aghadh?api-version=2021-05aghadh2021-09-28T22:19:03Z2021-09-28T22:19:03ZservicebustestkxdmegmltcP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-19T17:21:19.837Z2021-04-19T17:21:19.95ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T22:19:03.93Z2021-09-28T22:19:03.96ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:19 GMT + - Tue, 28 Sep 2021 22:19:03 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -73,7 +73,7 @@ interactions: body: ' PT13S3072truePT11MtruePT12M14truePT10Mtruetruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh' + type="application/xml">PT13S3072truePT11MtruePT12M14truePT10Mtruetruesb://servicebustestkxdmegmltc.servicebus.windows.net/aghadhsb://servicebustestkxdmegmltc.servicebus.windows.net/aghadh' headers: Accept: - application/xml @@ -86,25 +86,25 @@ interactions: Content-Type: - application/atom+xml ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestflrbydrmyy.servicebus.windows.net%2Faghadh&sig=h5r4Yvyi8ICw3xJxIeb5NSm0umNCmNBohU9J0Ce9lR4%3d&se=1618856480&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkxdmegmltc.servicebus.windows.net%2Faghadh&sig=KBXPKuLIIoySgVB0wTSGT3%2b3unw8u9ba88HQPkX%2fEXc%3d&se=1632871144&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestflrbydrmyy.servicebus.windows.net%2Faghadh&sig=h5r4Yvyi8ICw3xJxIeb5NSm0umNCmNBohU9J0Ce9lR4%3d&se=1618856480&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkxdmegmltc.servicebus.windows.net%2Faghadh&sig=KBXPKuLIIoySgVB0wTSGT3%2b3unw8u9ba88HQPkX%2fEXc%3d&se=1632871144&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-19T17:21:21Z2021-04-19T17:21:21Zservicebustestflrbydrmyyhttps://servicebustestkxdmegmltc.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-09-28T22:19:04Z2021-09-28T22:19:04ZservicebustestkxdmegmltcPT13S49152falsetruePT11MtruePT12M14true00falseActive2021-04-19T17:21:21.363Z2021-04-19T17:21:21.843ZfalsePT10MtrueAvailabletruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-09-28T22:19:04.833Z2021-09-28T22:19:04.99ZfalsePT10MtrueAvailabletruesb://servicebustestkxdmegmltc.servicebus.windows.net/aghadhsb://servicebustestkxdmegmltc.servicebus.windows.net/aghadh256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:22 GMT + - Tue, 28 Sep 2021 22:19:05 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,7 +118,7 @@ interactions: body: ' PT13S3072truePT11M2StruePT12M3S14truePT10M1Struetruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh' + type="application/xml">PT13S3072truePT11M2StruePT12M3S14truePT10M1Struetruesb://servicebustestkxdmegmltc.servicebus.windows.net/aghadhsb://servicebustestkxdmegmltc.servicebus.windows.net/aghadh' headers: Accept: - application/xml @@ -131,25 +131,25 @@ interactions: Content-Type: - application/atom+xml ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestflrbydrmyy.servicebus.windows.net%2Faghadh&sig=7Sik4KXocATMqWckUOV3Aqb4r2EBtHPRDl%2fF8ywrkC4%3d&se=1618856481&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkxdmegmltc.servicebus.windows.net%2Faghadh&sig=tCjQ5s5ZseN61DYd9WscGhYRw5dkXPju7DSiYYdInAE%3d&se=1632871145&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestflrbydrmyy.servicebus.windows.net%2Faghadh&sig=7Sik4KXocATMqWckUOV3Aqb4r2EBtHPRDl%2fF8ywrkC4%3d&se=1618856481&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkxdmegmltc.servicebus.windows.net%2Faghadh&sig=tCjQ5s5ZseN61DYd9WscGhYRw5dkXPju7DSiYYdInAE%3d&se=1632871145&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/vladsk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vladsk?api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/vladsk?api-version=2017-04vladsk2021-04-19T17:21:22Z2021-04-19T17:21:23Zservicebustestflrbydrmyyhttps://servicebustestkxdmegmltc.servicebus.windows.net/vladsk?api-version=2021-05vladsk2021-09-28T22:19:05Z2021-09-28T22:19:06ZservicebustestkxdmegmltcPT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-04-19T17:21:22.94Z2021-04-19T17:21:23.077ZfalsePT10M1StrueAvailabletruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T22:19:05.917Z2021-09-28T22:19:06.12ZfalsePT10M1StrueAvailabletruesb://servicebustestkxdmegmltc.servicebus.windows.net/aghadhsb://servicebustestkxdmegmltc.servicebus.windows.net/aghadh256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:23 GMT + - Tue, 28 Sep 2021 22:19:06 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -159,6 +159,45 @@ interactions: status: code: 201 message: Created +- request: + body: ' + + 1024' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '324' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/famviq?api-version=2021-05 + response: + body: + string: 400SubCode=40000. Bad Request. To know more + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:8bebcfae-4fe3-4a2a-aa45-ec2943469609_G12, + SystemTracker:servicebustestsbname.servicebus.windows.net:famviq, Timestamp:2021-09-28T22:19:07 + headers: + content-type: + - application/xml; charset=utf-8 + date: + - Tue, 28 Sep 2021 22:19:06 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 400 + message: Bad Request - request: body: null headers: @@ -169,24 +208,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2021-04-19T17:21:21Z2021-04-19T17:21:21Zservicebustestflrbydrmyyhttps://servicebustestkxdmegmltc.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-09-28T22:19:04Z2021-09-28T22:19:04ZservicebustestkxdmegmltcPT13S49152falsetruePT11MtruePT12M14true00falseActive2021-04-19T17:21:21.363Z2021-04-19T17:21:21.843Z0001-01-01T00:00:00Zfalse00000PT10MtrueAvailabletruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-09-28T22:19:04.833Z2021-09-28T22:19:04.99Z0001-01-01T00:00:00Zfalse00000PT10MtrueAvailabletruesb://servicebustestkxdmegmltc.servicebus.windows.net/aghadhsb://servicebustestkxdmegmltc.servicebus.windows.net/aghadh256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:23 GMT + - Tue, 28 Sep 2021 22:19:06 GMT etag: - - '637544496818430000' + - '637684643449900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -206,24 +245,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/vladsk?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vladsk?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/vladsk?enrich=false&api-version=2017-04vladsk2021-04-19T17:21:22Z2021-04-19T17:21:23Zservicebustestflrbydrmyyhttps://servicebustestkxdmegmltc.servicebus.windows.net/vladsk?enrich=false&api-version=2021-05vladsk2021-09-28T22:19:05Z2021-09-28T22:19:06ZservicebustestkxdmegmltcPT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-04-19T17:21:22.94Z2021-04-19T17:21:23.077Z0001-01-01T00:00:00Zfalse00000PT10M1StrueAvailabletruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T22:19:05.917Z2021-09-28T22:19:06.12Z0001-01-01T00:00:00Zfalse00000PT10M1StrueAvailabletruesb://servicebustestkxdmegmltc.servicebus.windows.net/aghadhsb://servicebustestkxdmegmltc.servicebus.windows.net/aghadh256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:21:24 GMT + - Tue, 28 Sep 2021 22:19:06 GMT etag: - - '637544496830770000' + - '637684643461200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -245,9 +284,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: string: '' @@ -255,9 +294,9 @@ interactions: content-length: - '0' date: - - Mon, 19 Apr 2021 17:21:25 GMT + - Tue, 28 Sep 2021 22:19:07 GMT etag: - - '637544496818430000' + - '637684643449900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -277,9 +316,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/vladsk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/vladsk?api-version=2021-05 response: body: string: '' @@ -287,9 +326,9 @@ interactions: content-length: - '0' date: - - Mon, 19 Apr 2021 17:21:26 GMT + - Tue, 28 Sep 2021 22:19:07 GMT etag: - - '637544496830770000' + - '637684643461200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -309,9 +348,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2021-05 response: body: string: '' @@ -319,9 +358,9 @@ interactions: content-length: - '0' date: - - Mon, 19 Apr 2021 17:21:27 GMT + - Tue, 28 Sep 2021 22:19:08 GMT etag: - - '637544496799500000' + - '637684643439600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_basic.yaml index 164710cde1bc..ba7231b33700 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:57Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:01:53Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:34:57 GMT + - Tue, 28 Sep 2021 19:01:53 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:34:58Z2020-09-29T08:34:58Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:01:53Z2021-09-28T19:01:53Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:53.813Z2021-09-28T19:01:53.877ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:34:58 GMT + - Tue, 28 Sep 2021 19:01:54 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,24 +79,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:59Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:34:58Z2020-09-29T08:34:58Zservicebustestrm7a5oi5hkQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:01:54Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:01:53Z2021-09-28T19:01:53Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:53.813Z2021-09-28T19:01:53.877Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:34:59 GMT + - Tue, 28 Sep 2021 19:01:54 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -121,21 +121,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:01:55Z2021-09-28T19:01:55Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:00.29Z2020-09-29T08:35:00.363ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:55.24Z2021-09-28T19:01:55.287ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:00 GMT + - Tue, 28 Sep 2021 19:01:55 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -155,30 +155,30 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:01Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:34:58Z2020-09-29T08:34:58Zservicebustestrm7a5oi5hkQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:01:56Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:01:53Z2021-09-28T19:01:53Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:53.813Z2021-09-28T19:01:53.877Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:01:55Z2021-09-28T19:01:55Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:00.29Z2020-09-29T08:35:00.363Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:55.24Z2021-09-28T19:01:55.287Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:01 GMT + - Tue, 28 Sep 2021 19:01:55 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -198,9 +198,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' @@ -208,9 +208,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:01 GMT + - Tue, 28 Sep 2021 19:01:56 GMT etag: - - '637369652984900000' + - '637684525138770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -228,24 +228,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:02Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:01:57Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:01:55Z2021-09-28T19:01:55Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:00.2897971Z2020-09-29T08:35:00.2897971Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:55.24Z2021-09-28T19:01:55.287Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:02 GMT + - Tue, 28 Sep 2021 19:01:56 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -265,9 +265,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: string: '' @@ -275,9 +275,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:02 GMT + - Tue, 28 Sep 2021 19:01:57 GMT etag: - - '637369653003630000' + - '637684525152870000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -295,18 +295,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:03Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:01:57Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:03 GMT + - Tue, 28 Sep 2021 19:01:57 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_negtive.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_negtive.yaml index 55d672cb1643..f0a8cf51223e 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_negtive.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_negtive.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:04Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:01:58Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:03 GMT + - Tue, 28 Sep 2021 19:01:58 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:04Z2020-09-29T08:35:05Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:01:58Z2021-09-28T19:01:59Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:04.957Z2020-09-29T08:35:05.017ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:58.997Z2021-09-28T19:01:59.04ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:04 GMT + - Tue, 28 Sep 2021 19:01:59 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,24 +79,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:05Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:04Z2020-09-29T08:35:05Zservicebustestrm7a5oi5hkQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:01:59Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:01:58Z2021-09-28T19:01:59Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:04.957Z2020-09-29T08:35:05.017Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:01:58.997Z2021-09-28T19:01:59.04Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:05 GMT + - Tue, 28 Sep 2021 19:01:59 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -116,9 +116,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' @@ -126,9 +126,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:06 GMT + - Tue, 28 Sep 2021 19:02:00 GMT etag: - - '637369653050170000' + - '637684525190400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -146,18 +146,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:07Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:00Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:06 GMT + - Tue, 28 Sep 2021 19:02:00 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -177,19 +177,19 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: 404No service is hosted at the specified - address. TrackingId:f688a238-20bd-4784-b2c6-66ca3a0e2791_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, - Timestamp:2020-09-29T08:35:07 + address. TrackingId:a6090849-377f-4468-b9b5-094e825fbba8_G9, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, + Timestamp:2021-09-28T19:02:01 headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:07 GMT + - Tue, 28 Sep 2021 19:02:01 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -211,19 +211,19 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2021-05 response: body: string: 404No service is hosted at the specified - address. TrackingId:75a1cca2-5ba4-4c53-9077-3c38dde289c7_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, - Timestamp:2020-09-29T08:35:08 + address. TrackingId:7f8cebfa-298b-4288-9ada-81cd2b609e68_G9, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, + Timestamp:2021-09-28T19:02:01 headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:07 GMT + - Tue, 28 Sep 2021 19:02:01 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_one_and_check_not_existing.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_one_and_check_not_existing.yaml index f1feb00ee173..a22dc1c97d1b 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_one_and_check_not_existing.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_one_and_check_not_existing.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:08Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:02Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:08 GMT + - Tue, 28 Sep 2021 19:02:02 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04queue02020-09-29T08:35:09Z2020-09-29T08:35:09Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue0?api-version=2021-05queue02021-09-28T19:02:02Z2021-09-28T19:02:02Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:09.58Z2020-09-29T08:35:09.63ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:02.72Z2021-09-28T19:02:02.977ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:09 GMT + - Tue, 28 Sep 2021 19:02:03 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,21 +86,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:35:10Z2020-09-29T08:35:10Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue1?api-version=2021-05queue12021-09-28T19:02:03Z2021-09-28T19:02:03Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:10.693Z2020-09-29T08:35:10.777ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:03.907Z2021-09-28T19:02:03.997ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:10 GMT + - Tue, 28 Sep 2021 19:02:04 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -127,21 +127,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:35:11Z2020-09-29T08:35:11Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue2?api-version=2021-05queue22021-09-28T19:02:04Z2021-09-28T19:02:05Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:11.58Z2020-09-29T08:35:11.78ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:04.817Z2021-09-28T19:02:05.01ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:11 GMT + - Tue, 28 Sep 2021 19:02:05 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -168,21 +168,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:35:12Z2020-09-29T08:35:13Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue3?api-version=2021-05queue32021-09-28T19:02:05Z2021-09-28T19:02:05Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:12.94Z2020-09-29T08:35:13.023ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:05.91Z2021-09-28T19:02:05.953ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:13 GMT + - Tue, 28 Sep 2021 19:02:06 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -209,21 +209,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:35:14Z2020-09-29T08:35:14Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue4?api-version=2021-05queue42021-09-28T19:02:06Z2021-09-28T19:02:06Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:14.3Z2020-09-29T08:35:14.327ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:06.717Z2021-09-28T19:02:06.747ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:14 GMT + - Tue, 28 Sep 2021 19:02:07 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -250,21 +250,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:35:15Z2020-09-29T08:35:15Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue5?api-version=2021-05queue52021-09-28T19:02:07Z2021-09-28T19:02:07Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:15.423Z2020-09-29T08:35:15.453ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:07.65Z2021-09-28T19:02:07.687ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:15 GMT + - Tue, 28 Sep 2021 19:02:08 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -291,21 +291,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:35:16Z2020-09-29T08:35:16Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue6?api-version=2021-05queue62021-09-28T19:02:08Z2021-09-28T19:02:08Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:16.343Z2020-09-29T08:35:16.52ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:08.57Z2021-09-28T19:02:08.6ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:16 GMT + - Tue, 28 Sep 2021 19:02:08 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -332,21 +332,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:35:17Z2020-09-29T08:35:17Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue7?api-version=2021-05queue72021-09-28T19:02:09Z2021-09-28T19:02:09Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:17.41Z2020-09-29T08:35:17.44ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:09.48Z2021-09-28T19:02:09.507ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:17 GMT + - Tue, 28 Sep 2021 19:02:09 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -373,21 +373,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:35:18Z2020-09-29T08:35:18Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue8?api-version=2021-05queue82021-09-28T19:02:10Z2021-09-28T19:02:10Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:18.51Z2020-09-29T08:35:18.54ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:10.37Z2021-09-28T19:02:10.427ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:18 GMT + - Tue, 28 Sep 2021 19:02:10 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -414,21 +414,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:35:19Z2020-09-29T08:35:19Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue9?api-version=2021-05queue92021-09-28T19:02:11Z2021-09-28T19:02:11Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:19.417Z2020-09-29T08:35:19.497ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:11.287Z2021-09-28T19:02:11.323ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:19 GMT + - Tue, 28 Sep 2021 19:02:11 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -450,9 +450,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2021-05 response: body: string: '' @@ -460,9 +460,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:20 GMT + - Tue, 28 Sep 2021 19:02:12 GMT etag: - - '637369653096300000' + - '637684525229770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -480,72 +480,72 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:21Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:35:10Z2020-09-29T08:35:10Zservicebustestrm7a5oi5hkQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:12Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/queue1?api-version=2021-05queue12021-09-28T19:02:03Z2021-09-28T19:02:03Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:10.693Z2020-09-29T08:35:10.777Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:35:11Z2020-09-29T08:35:11Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:03.907Z2021-09-28T19:02:03.997Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/queue2?api-version=2021-05queue22021-09-28T19:02:04Z2021-09-28T19:02:05Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:11.58Z2020-09-29T08:35:11.78Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:35:12Z2020-09-29T08:35:13Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:04.817Z2021-09-28T19:02:05.01Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/queue3?api-version=2021-05queue32021-09-28T19:02:05Z2021-09-28T19:02:05Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:12.94Z2020-09-29T08:35:13.023Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:35:14Z2020-09-29T08:35:14Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:05.91Z2021-09-28T19:02:05.953Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/queue4?api-version=2021-05queue42021-09-28T19:02:06Z2021-09-28T19:02:06Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:14.3Z2020-09-29T08:35:14.327Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:35:15Z2020-09-29T08:35:15Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:06.717Z2021-09-28T19:02:06.747Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/queue5?api-version=2021-05queue52021-09-28T19:02:07Z2021-09-28T19:02:07Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:15.423Z2020-09-29T08:35:15.453Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:35:16Z2020-09-29T08:35:16Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:07.65Z2021-09-28T19:02:07.687Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/queue6?api-version=2021-05queue62021-09-28T19:02:08Z2021-09-28T19:02:08Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:16.343Z2020-09-29T08:35:16.52Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:35:17Z2020-09-29T08:35:17Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:08.57Z2021-09-28T19:02:08.6Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/queue7?api-version=2021-05queue72021-09-28T19:02:09Z2021-09-28T19:02:09Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:17.41Z2020-09-29T08:35:17.44Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:35:18Z2020-09-29T08:35:18Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:09.48Z2021-09-28T19:02:09.507Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/queue8?api-version=2021-05queue82021-09-28T19:02:10Z2021-09-28T19:02:10Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:18.51Z2020-09-29T08:35:18.54Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:35:19Z2020-09-29T08:35:19Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:10.3764248Z2021-09-28T19:02:10.3764248Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/queue9?api-version=2021-05queue92021-09-28T19:02:11Z2021-09-28T19:02:11Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:19.417Z2020-09-29T08:35:19.497Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:11.287Z2021-09-28T19:02:11.323Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:21 GMT + - Tue, 28 Sep 2021 19:02:12 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -565,9 +565,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2021-05 response: body: string: '' @@ -575,9 +575,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:21 GMT + - Tue, 28 Sep 2021 19:02:13 GMT etag: - - '637369653107770000' + - '637684525239970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -597,9 +597,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2021-05 response: body: string: '' @@ -607,9 +607,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:22 GMT + - Tue, 28 Sep 2021 19:02:13 GMT etag: - - '637369653117800000' + - '637684525250100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -629,9 +629,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2021-05 response: body: string: '' @@ -639,9 +639,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:23 GMT + - Tue, 28 Sep 2021 19:02:14 GMT etag: - - '637369653130230000' + - '637684525259530000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -661,9 +661,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2021-05 response: body: string: '' @@ -671,9 +671,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:24 GMT + - Tue, 28 Sep 2021 19:02:14 GMT etag: - - '637369653143270000' + - '637684525267470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -693,9 +693,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2021-05 response: body: string: '' @@ -703,9 +703,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:24 GMT + - Tue, 28 Sep 2021 19:02:15 GMT etag: - - '637369653154530000' + - '637684525276870000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -725,9 +725,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2021-05 response: body: string: '' @@ -735,9 +735,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:25 GMT + - Tue, 28 Sep 2021 19:02:15 GMT etag: - - '637369653165200000' + - '637684525286000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -757,9 +757,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2021-05 response: body: string: '' @@ -767,9 +767,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:25 GMT + - Tue, 28 Sep 2021 19:02:16 GMT etag: - - '637369653174400000' + - '637684525295070000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -789,9 +789,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2021-05 response: body: string: '' @@ -799,9 +799,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:26 GMT + - Tue, 28 Sep 2021 19:02:16 GMT etag: - - '637369653185400000' + - '637684525304270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -821,9 +821,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2021-05 response: body: string: '' @@ -831,9 +831,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:30 GMT + - Tue, 28 Sep 2021 19:02:17 GMT etag: - - '637369653194970000' + - '637684525313230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -851,18 +851,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:30Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:17Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:30 GMT + - Tue, 28 Sep 2021 19:02:17 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_basic.yaml index e79f6ec261ee..795f3abb81cc 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:38Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:18Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:38 GMT + - Tue, 28 Sep 2021 19:02:18 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:39Z2020-08-17T08:06:39Zservicebustest32ip2wgoaahttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:18Z2021-09-28T19:02:19Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:39.207Z2020-08-17T08:06:39.24ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:18.98Z2021-09-28T19:02:19.067ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:39 GMT + - Tue, 28 Sep 2021 19:02:19 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,24 +79,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2020-08-17T08:06:39Z2020-08-17T08:06:39Zservicebustest32ip2wgoaahttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05test_queue2021-09-28T19:02:18Z2021-09-28T19:02:19Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:39.207Z2020-08-17T08:06:39.24Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:18.98Z2021-09-28T19:02:19.067Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:39 GMT + - Tue, 28 Sep 2021 19:02:19 GMT etag: - - '637332483992400000' + - '637684525390670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,9 +118,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:39 GMT + - Tue, 28 Sep 2021 19:02:19 GMT etag: - - '637332483992400000' + - '637684525390670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_negative.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_negative.yaml index 67b075a55bf3..0f8cea5a1564 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_negative.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_negative.yaml @@ -9,20 +9,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2021-05 response: body: string: Publicly Listed ServicesThis is the list of publicly-listed - services currently available.uuid:6b241b3b-5932-4267-b274-00f572c98bbf;id=319272020-08-17T08:06:41ZService + services currently available.uuid:c4422ea9-78c4-4053-b550-0ef5187077a4;id=67382021-09-28T19:02:20ZService Bus 1.1 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:40 GMT + - Tue, 28 Sep 2021 19:02:20 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_basic.yaml index 3f00003a73d0..d81cda0eed7a 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:35Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:21Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:35 GMT + - Tue, 28 Sep 2021 19:02:21 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -38,18 +38,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:36Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:21Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:35 GMT + - Tue, 28 Sep 2021 19:02:21 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -74,21 +74,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:36Z2020-09-29T08:35:36Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:22Z2021-09-28T19:02:22Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:36.897Z2020-09-29T08:35:36.923ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:22.427Z2021-09-28T19:02:22.47ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:37 GMT + - Tue, 28 Sep 2021 19:02:22 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -108,24 +108,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:37Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:36Z2020-09-29T08:35:36Zservicebustestrm7a5oi5hkQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:23Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:22Z2021-09-28T19:02:22Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:36.897Z2020-09-29T08:35:36.923Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:22.427Z2021-09-28T19:02:22.47Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:37 GMT + - Tue, 28 Sep 2021 19:02:23 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -145,9 +145,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' @@ -155,9 +155,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:38 GMT + - Tue, 28 Sep 2021 19:02:23 GMT etag: - - '637369653369230000' + - '637684525424700000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -175,18 +175,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:38Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:24Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:38 GMT + - Tue, 28 Sep 2021 19:02:24 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -204,18 +204,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:39Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:24Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:39 GMT + - Tue, 28 Sep 2021 19:02:24 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -240,21 +240,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:40Z2020-09-29T08:35:40Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:25Z2021-09-28T19:02:25Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:40.267Z2020-09-29T08:35:40.3ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:25.11Z2021-09-28T19:02:25.157ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:40 GMT + - Tue, 28 Sep 2021 19:02:25 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -274,24 +274,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:41Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:40Z2020-09-29T08:35:40Zservicebustestrm7a5oi5hkQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:26Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:25Z2021-09-28T19:02:25Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:40.267Z2020-09-29T08:35:40.3Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:25.11Z2021-09-28T19:02:25.157Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:41 GMT + - Tue, 28 Sep 2021 19:02:25 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -311,9 +311,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' @@ -321,9 +321,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:41 GMT + - Tue, 28 Sep 2021 19:02:26 GMT etag: - - '637369653403000000' + - '637684525451570000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -341,18 +341,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:42Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:26Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:42 GMT + - Tue, 28 Sep 2021 19:02:26 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_properties_basic.yaml index 01b0cc8a07f7..7198ae4a79a5 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_properties_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_properties_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:49Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:27Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:49 GMT + - Tue, 28 Sep 2021 19:02:27 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -38,18 +38,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:49Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:27Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:49 GMT + - Tue, 28 Sep 2021 19:02:27 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -67,18 +67,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:50Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:28Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:50 GMT + - Tue, 28 Sep 2021 19:02:28 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -103,21 +103,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:50Z2020-08-17T08:06:50Zservicebustest32ip2wgoaahttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:28Z2021-09-28T19:02:28Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:50.91Z2020-08-17T08:06:50.957ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:28.893Z2021-09-28T19:02:28.947ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:51 GMT + - Tue, 28 Sep 2021 19:02:29 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -137,24 +137,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:52Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:50Z2020-08-17T08:06:50Zservicebustest32ip2wgoaaQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:29Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:28Z2021-09-28T19:02:28Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:50.91Z2020-08-17T08:06:50.957Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:28.893Z2021-09-28T19:02:28.947Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:51 GMT + - Tue, 28 Sep 2021 19:02:29 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -172,24 +172,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:52Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:50Z2020-08-17T08:06:50Zservicebustest32ip2wgoaaQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:30Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-09-28T19:02:28Z2021-09-28T19:02:28Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:50.91Z2020-08-17T08:06:50.957Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:28.893Z2021-09-28T19:02:28.947Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:52 GMT + - Tue, 28 Sep 2021 19:02:30 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,9 +209,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05 response: body: string: '' @@ -219,9 +219,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:53 GMT + - Tue, 28 Sep 2021 19:02:30 GMT etag: - - '637332484109570000' + - '637684525489470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -239,18 +239,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:53Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:31Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:53 GMT + - Tue, 28 Sep 2021 19:02:31 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_negative_credential.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_negative_credential.yaml index 43ad91ea73b8..028efd3a9c13 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_negative_credential.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_negative_credential.yaml @@ -9,19 +9,19 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: 401claim is empty or token is invalid. TrackingId:17c0761f-1e57-43fd-8af1-21037ae5adaa_G15, + string: 401claim is empty or token is invalid. TrackingId:7c20107c-37d6-4518-b38b-f9d8ab223689_G8, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-09-29T08:35:48 + Timestamp:2021-09-28T19:02:31 headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:47 GMT + - Tue, 28 Sep 2021 19:02:31 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -41,19 +41,19 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: 401claim is empty or token is invalid. TrackingId:6cdbb217-7d47-4c32-af19-d1ae1bec94f0_G13, + string: 401claim is empty or token is invalid. TrackingId:243cf4dc-f994-42f6-8169-4c7a7a2c8b25_G0, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-09-29T08:35:49 + Timestamp:2021-09-28T19:02:31 headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:48 GMT + - Tue, 28 Sep 2021 19:02:31 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_special_chars.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_special_chars.yaml index 16616390781d..96a0b8f7947f 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_special_chars.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_special_chars.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:50Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:32Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:49 GMT + - Tue, 28 Sep 2021 19:02:32 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -38,18 +38,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:50Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:32Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:50 GMT + - Tue, 28 Sep 2021 19:02:32 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -74,21 +74,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:51Z2020-09-29T08:35:51Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:02:33Z2021-09-28T19:02:33Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:51.053Z2020-09-29T08:35:51.127ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:33.463Z2021-09-28T19:02:33.49ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:51 GMT + - Tue, 28 Sep 2021 19:02:33 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -108,24 +108,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:52Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:51Z2020-09-29T08:35:51Zservicebustestrm7a5oi5hkQueueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:34Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:02:33Z2021-09-28T19:02:33Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:51.0756218Z2020-09-29T08:35:51.0756218Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:02:33.463Z2021-09-28T19:02:33.49Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:52 GMT + - Tue, 28 Sep 2021 19:02:34 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -145,9 +145,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: string: '' @@ -155,9 +155,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:35:52 GMT + - Tue, 28 Sep 2021 19:02:34 GMT etag: - - '637369653511270000' + - '637684525534900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -175,18 +175,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:53Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:02:35Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:35:53 GMT + - Tue, 28 Sep 2021 19:02:35 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_premium_create_with_queue_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_premium_create_with_queue_description.yaml new file mode 100644 index 000000000000..c8c9ab18a15f --- /dev/null +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_premium_create_with_queue_description.yaml @@ -0,0 +1,424 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 + response: + body: + string: Queueshttps://servicebustestmstsf53wi2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:11Z + headers: + content-type: + - application/atom+xml;type=feed;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:04:10 GMT + server: + - Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: ' + + PT13S3072truePT11MtruePT12M14truePT10M12345' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '790' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-09-28T19:04:11Z2021-09-28T19:04:12Zservicebustestmstsf53wi2PT13S3072falsetruePT11MtruePT12M14true00falseActive2021-09-28T19:04:11.51Z2021-09-28T19:04:12.12ZtruePT10MfalseAvailablefalse12345 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:04:11 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 201 + message: Created +- request: + body: ' + + PT13S3072truePT11M2StruePT12M3S14truePT10M1S' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '736' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/cpqmva?api-version=2021-05cpqmva2021-09-28T19:04:13Z2021-09-28T19:04:13Zservicebustestmstsf53wi2PT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:04:13.12Z2021-09-28T19:04:13.183ZtruePT10M1SfalseAvailablefalse1024 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:04:12 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 201 + message: Created +- request: + body: ' + + 1023' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '324' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05 + response: + body: + string: '400SubCode=40000. The property value for + ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace + ''servicebustestsbname'' is using ''Premium'' tier. + + Parameter name: MaxMessageSizeInKilobytes + + Actual value was 1023. TrackingId:ccdba1cf-1978-47a4-a056-e9d1d047be45_G11, + SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-09-28T19:04:14' + headers: + content-type: + - application/xml; charset=utf-8 + date: + - Tue, 28 Sep 2021 19:04:14 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 400 + message: Bad Request +- request: + body: ' + + 102401' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '326' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05 + response: + body: + string: '400SubCode=40000. The property value for + ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace + ''servicebustestsbname'' is using ''Premium'' tier. + + Parameter name: MaxMessageSizeInKilobytes + + Actual value was 102401. TrackingId:6a8a410e-a1a0-4e82-a028-a158b77a850a_G11, + SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-09-28T19:04:14' + headers: + content-type: + - application/xml; charset=utf-8 + date: + - Tue, 28 Sep 2021 19:04:14 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-09-28T19:04:11Z2021-09-28T19:04:12Zservicebustestmstsf53wi2PT13S3072falsetruePT11MtruePT12M14true00falseActive2021-09-28T19:04:11.51Z2021-09-28T19:04:12.12Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailablefalse12345 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:04:14 GMT + etag: + - '637684526521200000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/cpqmva?enrich=false&api-version=2021-05cpqmva2021-09-28T19:04:13Z2021-09-28T19:04:13Zservicebustestmstsf53wi2PT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:04:13.12Z2021-09-28T19:04:13.183Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse1024 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:04:14 GMT + etag: + - '637684526531830000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: ' + + PT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:04:13.120Z2021-09-28T19:04:13.183Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailablefalse54321' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1743' + Content-Type: + - application/atom+xml + If-Match: + - '*' + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/cpqmva?api-version=2021-05cpqmva2021-09-28T19:04:14Zservicebustestmstsf53wi2PT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:04:13.12Z2021-09-28T19:04:13.183Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse54321 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:04:14 GMT + etag: + - '637684526531830000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/cpqmva?enrich=false&api-version=2021-05cpqmva2021-09-28T19:04:13Z2021-09-28T19:04:14Zservicebustestmstsf53wi2PT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-09-28T19:04:13.12Z2021-09-28T19:04:14.873Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse54321 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:04:15 GMT + etag: + - '637684526548730000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Tue, 28 Sep 2021 19:04:15 GMT + etag: + - '637684526521200000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?api-version=2021-05 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Tue, 28 Sep 2021 19:04:16 GMT + etag: + - '637684526548730000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_error.yaml index e55c139ab831..8e92f29f0f64 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_error.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_error.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:22:54Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:16Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 19 Apr 2021 17:22:54 GMT + - Tue, 28 Sep 2021 19:04:16 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/dfjdfj?api-version=2017-04dfjdfj2021-04-19T17:22:54Z2021-04-19T17:22:54Zservicebustestflrbydrmyyhttps://servicebustestappwyrpk4k.servicebus.windows.net/dfjdfj?api-version=2021-05dfjdfj2021-09-28T19:04:17Z2021-09-28T19:04:17Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:22:54.74Z2021-04-19T17:22:54.847ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:04:17.43Z2021-09-28T19:04:17.51ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:22:55 GMT + - Tue, 28 Sep 2021 19:04:17 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -81,9 +81,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05 response: body: string: '' @@ -91,9 +91,9 @@ interactions: content-length: - '0' date: - - Mon, 19 Apr 2021 17:22:56 GMT + - Tue, 28 Sep 2021 19:04:17 GMT etag: - - '637544497748470000' + - '637684526575100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_success.yaml index 7e4453aa2a40..c18cc56e1eb9 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_success.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestz3qjmif56v.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-05-24T20:31:18Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:19Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 24 May 2021 20:31:18 GMT + - Tue, 28 Sep 2021 19:04:18 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-05-24T20:31:19Z2021-05-24T20:31:19Zservicebustestz3qjmif56vhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:04:19Z2021-09-28T19:04:19Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-05-24T20:31:19.193Z2021-05-24T20:31:19.263ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:04:19.477Z2021-09-28T19:04:19.607ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:31:19 GMT + - Tue, 28 Sep 2021 19:04:19 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse' + />ActiveP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml @@ -83,29 +83,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1022' + - '1080' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-05-24T20:31:19Zservicebustestz3qjmif56vhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:04:20Zservicebustestappwyrpk4kPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:31:19 GMT + - Tue, 28 Sep 2021 19:04:20 GMT etag: - - '637574850792630000' + - '637684526596070000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -125,24 +125,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-05-24T20:31:19Z2021-05-24T20:31:19Zservicebustestz3qjmif56vhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:04:19Z2021-09-28T19:04:20Zservicebustestappwyrpk4kPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:31:19.193Z2021-05-24T20:31:19.94Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:04:19.477Z2021-09-28T19:04:20.117Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:31:20 GMT + - Tue, 28 Sep 2021 19:04:20 GMT etag: - - '637574850799400000' + - '637684526601170000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -157,7 +157,7 @@ interactions: PT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestz3qjmif56v.servicebus.windows.net/fjruidsb://servicebustestz3qjmif56v.servicebus.windows.net/fjruid' + />ActivePT10MfalseAvailabletruesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruidsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid256' headers: Accept: - application/xml @@ -166,33 +166,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1185' + - '1243' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestz3qjmif56v.servicebus.windows.net%2Ffjruid&sig=%2fJTT0iv4FloZyfDam0W8MzV91JkwfSGZj%2bmP489zuWw%3d&se=1621891879&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjruid&sig=1FjXK6jYRVJGond7%2fFVwWb9P2%2fUZp1ObVdLpQEuqhxU%3d&se=1632859459&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestz3qjmif56v.servicebus.windows.net%2Ffjruid&sig=%2fJTT0iv4FloZyfDam0W8MzV91JkwfSGZj%2bmP489zuWw%3d&se=1621891879&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjruid&sig=1FjXK6jYRVJGond7%2fFVwWb9P2%2fUZp1ObVdLpQEuqhxU%3d&se=1632859459&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-05-24T20:31:20Zservicebustestz3qjmif56vhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:04:20Zservicebustestappwyrpk4kPT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestz3qjmif56v.servicebus.windows.net/fjruidsb://servicebustestz3qjmif56v.servicebus.windows.net/fjruid + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruidsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:31:20 GMT + - Tue, 28 Sep 2021 19:04:20 GMT etag: - - '637574850799400000' + - '637684526601170000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -212,24 +212,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-05-24T20:31:19Z2021-05-24T20:31:20Zservicebustestz3qjmif56vhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:04:19Z2021-09-28T19:04:20Zservicebustestappwyrpk4kPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-05-24T20:31:19.193Z2021-05-24T20:31:20.34Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestz3qjmif56v.servicebus.windows.net/fjruidsb://servicebustestz3qjmif56v.servicebus.windows.net/fjruid + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-09-28T19:04:19.477Z2021-09-28T19:04:20.23Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruidsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:31:20 GMT + - Tue, 28 Sep 2021 19:04:20 GMT etag: - - '637574850803400000' + - '637684526602300000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -244,7 +244,7 @@ interactions: PT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse' + />ActivePT15MfalseAvailablefalse256' headers: Accept: - application/xml @@ -253,29 +253,29 @@ interactions: Connection: - keep-alive Content-Length: - - '984' + - '1042' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-05-24T20:31:20Zservicebustestz3qjmif56vhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:04:20Zservicebustestappwyrpk4kPT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:31:20 GMT + - Tue, 28 Sep 2021 19:04:20 GMT etag: - - '637574850803400000' + - '637684526602300000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -295,24 +295,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-05-24T20:31:19Z2021-05-24T20:31:20Zservicebustestz3qjmif56vhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:04:19Z2021-09-28T19:04:20Zservicebustestappwyrpk4kPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-05-24T20:31:19.193Z2021-05-24T20:31:20.69Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-09-28T19:04:19.477Z2021-09-28T19:04:20.44Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:31:20 GMT + - Tue, 28 Sep 2021 19:04:20 GMT etag: - - '637574850806900000' + - '637684526604400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -334,9 +334,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' @@ -344,9 +344,9 @@ interactions: content-length: - '0' date: - - Mon, 24 May 2021 20:31:21 GMT + - Tue, 28 Sep 2021 19:04:21 GMT etag: - - '637574850806900000' + - '637684526604400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_invalid.yaml index ddee23db989d..42de4d6ec02f 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_invalid.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_invalid.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:23:05Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:21Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 19 Apr 2021 17:23:05 GMT + - Tue, 28 Sep 2021 19:04:21 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: - string: https://servicebustestflrbydrmyy.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2021-04-19T17:23:06Z2021-04-19T17:23:06Zservicebustestflrbydrmyyhttps://servicebustestappwyrpk4k.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-09-28T19:04:22Z2021-09-28T19:04:22Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:23:06.2Z2021-04-19T17:23:06.253ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:04:22.12Z2021-09-28T19:04:22.19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 19 Apr 2021 17:23:06 GMT + - Tue, 28 Sep 2021 19:04:22 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT1M1024falsetrueP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-19T17:23:06.200Z2021-04-19T17:23:06.253ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:04:22.120Z2021-09-28T19:04:22.190ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml @@ -83,28 +83,28 @@ interactions: Connection: - keep-alive Content-Length: - - '1264' + - '1322' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: string: 400SubCode=40000. The value for the RequiresSession property of an existing Queue cannot be changed. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:05e07a04-fd56-4414-81d3-ff265a5f746c_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, - Timestamp:2021-04-19T17:23:07 + . TrackingId:b206ec50-35d1-4782-a0cf-e2892e952841_G1, SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, + Timestamp:2021-09-28T19:04:22 headers: content-type: - application/xml; charset=utf-8 date: - - Mon, 19 Apr 2021 17:23:07 GMT + - Tue, 28 Sep 2021 19:04:22 GMT etag: - - '637544497862530000' + - '637684526621900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -119,7 +119,7 @@ interactions: PT1M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-19T17:23:06.200Z2021-04-19T17:23:06.253ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:04:22.120Z2021-09-28T19:04:22.190ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml @@ -128,26 +128,26 @@ interactions: Connection: - keep-alive Content-Length: - - '1265' + - '1323' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2021-05 response: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:3d8f41b5-45f9-4390-b316-1e39f584234b_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, - Timestamp:2021-04-19T17:23:08 + . TrackingId:98a549cc-08ca-4898-9bb8-a65e4cbc886e_G1, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, + Timestamp:2021-09-28T19:04:23 headers: content-type: - application/xml; charset=utf-8 date: - - Mon, 19 Apr 2021 17:23:08 GMT + - Tue, 28 Sep 2021 19:04:22 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -162,7 +162,7 @@ interactions: P25D1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-19T17:23:06.200Z2021-04-19T17:23:06.253ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:04:22.120Z2021-09-28T19:04:22.190ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml @@ -171,15 +171,15 @@ interactions: Connection: - keep-alive Content-Length: - - '1265' + - '1323' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: string: '400SubCode=40000. The supplied lock time @@ -188,15 +188,15 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:2d37467c-7e79-445b-aef0-a5c6ed96da18_G12, - SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2021-04-19T17:23:09' + Actual value was 25.00:00:00. TrackingId:579119c5-30a7-4459-89e9-c353d3792346_G1, + SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2021-09-28T19:04:23' headers: content-type: - application/xml; charset=utf-8 date: - - Mon, 19 Apr 2021 17:23:09 GMT + - Tue, 28 Sep 2021 19:04:23 GMT etag: - - '637544497862530000' + - '637684526621900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -218,9 +218,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: string: '' @@ -228,9 +228,9 @@ interactions: content-length: - '0' date: - - Mon, 19 Apr 2021 17:23:10 GMT + - Tue, 28 Sep 2021 19:04:23 GMT etag: - - '637544497862530000' + - '637684526621900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_success.yaml index 74c669a6ae6d..2e156b7504d2 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_success.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05 response: body: - string: Queueshttps://servicebustestpgigjfsnve.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-05-24T20:26:33Z + string: Queueshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:24Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 24 May 2021 20:26:33 GMT + - Tue, 28 Sep 2021 19:04:24 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:34Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:04:25Z2021-09-28T19:04:25Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:34.36ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:25.51ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:34 GMT + - Tue, 28 Sep 2021 19:04:25 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,21 +86,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/sagho?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/sagho?api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/sagho?api-version=2017-04sagho2021-05-24T20:26:35Z2021-05-24T20:26:35Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/sagho?api-version=2021-05sagho2021-09-28T19:04:26Z2021-09-28T19:04:26Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-05-24T20:26:35.237Z2021-05-24T20:26:35.29ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:26.34Z2021-09-28T19:04:26.377ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:35 GMT + - Tue, 28 Sep 2021 19:04:26 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -115,7 +115,7 @@ interactions: PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:34.360ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:04:25.460Z2021-09-28T19:04:25.510ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml @@ -124,29 +124,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1265' + - '1323' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:35Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:04:26Zservicebustestappwyrpk4kPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:34.36ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:25.51ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:35 GMT + - Tue, 28 Sep 2021 19:04:26 GMT etag: - - '637574847943600000' + - '637684526655100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -166,24 +166,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:35Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:04:25Z2021-09-28T19:04:26Zservicebustestappwyrpk4kPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:35.877Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:26.837Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:35 GMT + - Tue, 28 Sep 2021 19:04:26 GMT etag: - - '637574847958770000' + - '637684526668370000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -199,7 +199,7 @@ interactions: PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:35.877Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestpgigjfsnve.servicebus.windows.net/saghosb://servicebustestpgigjfsnve.servicebus.windows.net/sagho' + />Active2021-09-28T19:04:25.460Z2021-09-28T19:04:26.837Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestappwyrpk4k.servicebus.windows.net/saghosb://servicebustestappwyrpk4k.servicebus.windows.net/sagho256' headers: Accept: - application/xml @@ -208,34 +208,34 @@ interactions: Connection: - keep-alive Content-Length: - - '1920' + - '1978' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Fsagho&sig=bPIj%2bgXVBkTntzJo6rgyWuqMw10gAgWS1hcsz0MdRlU%3d&se=1621891595&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Fsagho&sig=l1UB9NYeTS1Mplsob8ta81JSvGwE8%2bWa%2bu4V8Ycx1nM%3d&se=1632859466&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Fsagho&sig=bPIj%2bgXVBkTntzJo6rgyWuqMw10gAgWS1hcsz0MdRlU%3d&se=1621891595&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Fsagho&sig=l1UB9NYeTS1Mplsob8ta81JSvGwE8%2bWa%2bu4V8Ycx1nM%3d&se=1632859466&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:04:27Zservicebustestappwyrpk4kPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:35.877Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestpgigjfsnve.servicebus.windows.net/saghosb://servicebustestpgigjfsnve.servicebus.windows.net/sagho + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:26.837Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestappwyrpk4k.servicebus.windows.net/saghosb://servicebustestappwyrpk4k.servicebus.windows.net/sagho256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:36 GMT + - Tue, 28 Sep 2021 19:04:26 GMT etag: - - '637574847958770000' + - '637684526668370000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -255,24 +255,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:04:25Z2021-09-28T19:04:27Zservicebustestappwyrpk4kPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.12Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestpgigjfsnve.servicebus.windows.net/saghosb://servicebustestpgigjfsnve.servicebus.windows.net/sagho + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:27.097Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestappwyrpk4k.servicebus.windows.net/saghosb://servicebustestappwyrpk4k.servicebus.windows.net/sagho256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:36 GMT + - Tue, 28 Sep 2021 19:04:26 GMT etag: - - '637574847961200000' + - '637684526670970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -288,7 +288,7 @@ interactions: PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:36.120Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2021-09-28T19:04:25.460Z2021-09-28T19:04:27.097Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml @@ -297,30 +297,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1718' + - '1776' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:04:27Zservicebustestappwyrpk4kPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.12Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:27.097Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:36 GMT + - Tue, 28 Sep 2021 19:04:27 GMT etag: - - '637574847961200000' + - '637684526670970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -340,24 +340,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:04:25Z2021-09-28T19:04:27Zservicebustestappwyrpk4kPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.407Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:27.33Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:36 GMT + - Tue, 28 Sep 2021 19:04:27 GMT etag: - - '637574847964070000' + - '637684526673300000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -373,7 +373,7 @@ interactions: PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:36.407Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui' + />Active2021-09-28T19:04:25.460Z2021-09-28T19:04:27.330Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletruesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruisb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui256' headers: Accept: - application/xml @@ -382,34 +382,34 @@ interactions: Connection: - keep-alive Content-Length: - - '1879' + - '1937' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Ffjrui&sig=YfkQNXjZYsFaI9N57Oxwq3Meqp5CeuOnuGJqHfv5aDg%3d&se=1621891596&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjrui&sig=6PdBlNhOvEGEvcaifjIzQn5KCJlU0BBNIO4fZr4%2f29M%3d&se=1632859467&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Ffjrui&sig=YfkQNXjZYsFaI9N57Oxwq3Meqp5CeuOnuGJqHfv5aDg%3d&se=1621891596&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjrui&sig=6PdBlNhOvEGEvcaifjIzQn5KCJlU0BBNIO4fZr4%2f29M%3d&se=1632859467&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:04:27Zservicebustestappwyrpk4kPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.407Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:27.33Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruisb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:36 GMT + - Tue, 28 Sep 2021 19:04:27 GMT etag: - - '637574847964070000' + - '637684526673300000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -429,24 +429,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:04:25Z2021-09-28T19:04:27Zservicebustestappwyrpk4kPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.903Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:27.533Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruisb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:37 GMT + - Tue, 28 Sep 2021 19:04:27 GMT etag: - - '637574847969030000' + - '637684526675330000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -462,7 +462,7 @@ interactions: PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:36.903Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui' + />Active2021-09-28T19:04:25.460Z2021-09-28T19:04:27.533Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruisb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui256' headers: Accept: - application/xml @@ -471,34 +471,34 @@ interactions: Connection: - keep-alive Content-Length: - - '1885' + - '1943' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Ffjrui&sig=YfkQNXjZYsFaI9N57Oxwq3Meqp5CeuOnuGJqHfv5aDg%3d&se=1621891596&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjrui&sig=6PdBlNhOvEGEvcaifjIzQn5KCJlU0BBNIO4fZr4%2f29M%3d&se=1632859467&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Ffjrui&sig=YfkQNXjZYsFaI9N57Oxwq3Meqp5CeuOnuGJqHfv5aDg%3d&se=1621891596&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjrui&sig=6PdBlNhOvEGEvcaifjIzQn5KCJlU0BBNIO4fZr4%2f29M%3d&se=1632859467&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:37Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:04:27Zservicebustestappwyrpk4kPT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.903Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:27.533Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruisb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:37 GMT + - Tue, 28 Sep 2021 19:04:27 GMT etag: - - '637574847969030000' + - '637684526675330000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -518,24 +518,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:37Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:04:25Z2021-09-28T19:04:27Zservicebustestappwyrpk4kPT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:37.257Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:27.767Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruisb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:37 GMT + - Tue, 28 Sep 2021 19:04:27 GMT etag: - - '637574847972570000' + - '637684526677670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -551,7 +551,7 @@ interactions: PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:37.257Z0001-01-01T00:00:00.000Ztrue00000PT15MfalseAvailablefalse' + />Active2021-09-28T19:04:25.460Z2021-09-28T19:04:27.767Z0001-01-01T00:00:00.000Ztrue00000PT15MfalseAvailablefalse256' headers: Accept: - application/xml @@ -560,30 +560,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1680' + - '1738' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:37Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:04:28Zservicebustestappwyrpk4kPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:37.257Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:27.767Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:37 GMT + - Tue, 28 Sep 2021 19:04:27 GMT etag: - - '637574847972570000' + - '637684526677670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -603,24 +603,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:37Zservicebustestpgigjfsnvehttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:04:25Z2021-09-28T19:04:28Zservicebustestappwyrpk4kPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:37.733Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-09-28T19:04:25.46Z2021-09-28T19:04:28.023Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 24 May 2021 20:26:38 GMT + - Tue, 28 Sep 2021 19:04:27 GMT etag: - - '637574847977330000' + - '637684526680230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -642,9 +642,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' @@ -652,9 +652,9 @@ interactions: content-length: - '0' date: - - Mon, 24 May 2021 20:26:38 GMT + - Tue, 28 Sep 2021 19:04:28 GMT etag: - - '637574847977330000' + - '637684526680230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -674,9 +674,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/sagho?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/sagho?api-version=2021-05 response: body: string: '' @@ -684,9 +684,9 @@ interactions: content-length: - '0' date: - - Mon, 24 May 2021 20:26:39 GMT + - Tue, 28 Sep 2021 19:04:28 GMT etag: - - '637574847952900000' + - '637684526663770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create.yaml index f67c2dcb872f..0e7fa65969bf 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrkkx42w5im.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T17:03:28Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:29Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:28 GMT + - Tue, 28 Sep 2021 19:04:29 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: - string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2021-04-15T17:03:29Z2021-04-15T17:03:29Zservicebustestrkkx42w5imhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-09-28T19:04:30Z2021-09-28T19:04:30Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T17:03:29.533Z2021-04-15T17:03:29.593ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:30.267Z2021-09-28T19:04:30.313ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:29 GMT + - Tue, 28 Sep 2021 19:04:30 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: - string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2021-04-15T17:03:30Z2021-04-15T17:03:30Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-09-28T19:04:30Z2021-09-28T19:04:30ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-15T17:03:30.250717Z2021-04-15T17:03:30.250717Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:30.7995031Z2021-09-28T19:04:30.7995031Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:29 GMT + - Tue, 28 Sep 2021 19:04:30 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -138,14 +138,14 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 response: body: - string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12021-04-15T17:03:30Z2021-04-15T17:03:30Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-09-28T19:04:31Z2021-09-28T19:04:31Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13true2021-04-15T17:03:30.6257157Ztest_rule_1 + i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2021-09-28T19:04:31.0807783Ztest_rule_1 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:30 GMT + - Tue, 28 Sep 2021 19:04:30 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -182,14 +182,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12021-04-15T17:03:30Z2021-04-15T17:03:30Zsb://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05test_rule_12021-09-28T19:04:31Z2021-09-28T19:04:31Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13true2021-04-15T17:03:30.6275695Ztest_rule_1 + i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2021-09-28T19:04:31.0959133Ztest_rule_1 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:30 GMT + - Tue, 28 Sep 2021 19:04:30 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -237,27 +237,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 response: body: - string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22021-04-15T17:03:31Z2021-04-15T17:03:31Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-09-28T19:04:31Z2021-09-28T19:04:31ZPriority = @param1 AND Level = @param220@param1str1@param21true2021-04-15T17:03:31.1725993Ztest_rule_2 + i:type="EmptyRuleAction"/>2021-09-28T19:04:31.330754Ztest_rule_2 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:30 GMT + - Tue, 28 Sep 2021 19:04:30 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -277,27 +277,27 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22021-04-15T17:03:31Z2021-04-15T17:03:31Zsb://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05test_rule_22021-09-28T19:04:31Z2021-09-28T19:04:31ZPriority = @param1 AND Level = @param220@param1str1@param21true2021-04-15T17:03:31.1744598Ztest_rule_2 + i:type="EmptyRuleAction"/>2021-09-28T19:04:31.3303045Ztest_rule_2 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:31 GMT + - Tue, 28 Sep 2021 19:04:30 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -326,24 +326,24 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 response: body: - string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32021-04-15T17:03:31Z2021-04-15T17:03:31Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-09-28T19:04:31Z2021-09-28T19:04:31Z1=1202021-04-15T17:03:31.7194699Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:04:31.4870059Ztest_rule_3 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:31 GMT + - Tue, 28 Sep 2021 19:04:30 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -363,24 +363,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32021-04-15T17:03:31Z2021-04-15T17:03:31Zsb://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05test_rule_32021-09-28T19:04:31Z2021-09-28T19:04:31Z1=1202021-04-15T17:03:31.7213337Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:04:31.4865644Ztest_rule_3 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:31 GMT + - Tue, 28 Sep 2021 19:04:31 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -409,24 +409,24 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05 response: body: - string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04test_rule_42021-04-15T17:03:32Z2021-04-15T17:03:32Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05test_rule_42021-09-28T19:04:31Z2021-09-28T19:04:31Z1=1202021-04-15T17:03:32.2508235Ztest_rule_4 + i:type="EmptyRuleAction"/>2021-09-28T19:04:31.6276308Ztest_rule_4 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:31 GMT + - Tue, 28 Sep 2021 19:04:31 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -446,24 +446,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04test_rule_42021-04-15T17:03:32Z2021-04-15T17:03:32Zsb://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05test_rule_42021-09-28T19:04:31Z2021-09-28T19:04:31Z1=1202021-04-15T17:03:32.2686329Ztest_rule_4 + i:type="EmptyRuleAction"/>2021-09-28T19:04:31.6271795Ztest_rule_4 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 17:03:32 GMT + - Tue, 28 Sep 2021 19:04:31 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -485,9 +485,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 response: body: string: '' @@ -495,9 +495,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 17:03:32 GMT + - Tue, 28 Sep 2021 19:04:31 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -517,9 +517,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 response: body: string: '' @@ -527,9 +527,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 17:03:32 GMT + - Tue, 28 Sep 2021 19:04:31 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -549,9 +549,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 response: body: string: '' @@ -559,9 +559,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 17:03:33 GMT + - Tue, 28 Sep 2021 19:04:31 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -581,9 +581,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05 response: body: string: '' @@ -591,9 +591,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 17:03:33 GMT + - Tue, 28 Sep 2021 19:04:31 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -613,9 +613,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: string: '' @@ -623,9 +623,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 17:03:33 GMT + - Tue, 28 Sep 2021 19:04:31 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -645,9 +645,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: string: '' @@ -655,9 +655,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 17:03:34 GMT + - Tue, 28 Sep 2021 19:04:32 GMT etag: - - '637541030095930000' + - '637684526703130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create_duplicate.yaml index 97d46974984b..26dc79806bac 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create_duplicate.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create_duplicate.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestssikhu6c5u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:31Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:33Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:31 GMT + - Tue, 28 Sep 2021 19:04:32 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-11-23T20:27:32Z2020-11-23T20:27:32Zservicebustestssikhu6c5uhttps://servicebustestappwyrpk4k.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-09-28T19:04:33Z2021-09-28T19:04:34Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:32.087Z2020-11-23T20:27:32.15ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:33.997Z2021-09-28T19:04:34.113ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:32 GMT + - Tue, 28 Sep 2021 19:04:33 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-11-23T20:27:32Z2020-11-23T20:27:32Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05kkaqo2021-09-28T19:04:34Z2021-09-28T19:04:34ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:32.6012538Z2020-11-23T20:27:32.6012538Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:34.625158Z2021-09-28T19:04:34.625158Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:32 GMT + - Tue, 28 Sep 2021 19:04:33 GMT etag: - - '637417600521500000' + - '637684526741130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -131,25 +131,25 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-11-23T20:27:32Z2020-11-23T20:27:32Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05rule2021-09-28T19:04:34Z2021-09-28T19:04:34ZPriority = 'low'20true2020-11-23T20:27:32.773151Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:34.8439156Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:32 GMT + - Tue, 28 Sep 2021 19:04:34 GMT etag: - - '637417600521500000' + - '637684526741130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -178,21 +178,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05 response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo|rule' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:5f45bfb3-6946-4c55-a2b3-c3449d24e8be_B2, - SystemTracker:NoSystemTracker, Timestamp:2020-11-23T20:27:33 + already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:36cc689a-459a-4992-955e-801b4ef59ba1_B10, + SystemTracker:NoSystemTracker, Timestamp:2021-09-28T19:04:35 headers: content-type: - application/xml; charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:33 GMT + - Tue, 28 Sep 2021 19:04:35 GMT etag: - - '637417600521500000' + - '637684526741130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -214,9 +214,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05 response: body: string: '' @@ -224,9 +224,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:33 GMT + - Tue, 28 Sep 2021 19:04:35 GMT etag: - - '637417600521500000' + - '637684526741130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -246,9 +246,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: string: '' @@ -256,9 +256,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:33 GMT + - Tue, 28 Sep 2021 19:04:35 GMT etag: - - '637417600521500000' + - '637684526741130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -278,9 +278,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: string: '' @@ -288,9 +288,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:34 GMT + - Tue, 28 Sep 2021 19:04:35 GMT etag: - - '637417600521500000' + - '637684526741130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_list_and_delete.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_list_and_delete.yaml index ef78ba201c34..fd208efbb9de 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_list_and_delete.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_list_and_delete.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestssikhu6c5u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:35Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:37Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:35 GMT + - Tue, 28 Sep 2021 19:04:36 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-11-23T20:27:35Z2020-11-23T20:27:35Zservicebustestssikhu6c5uhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-09-28T19:04:37Z2021-09-28T19:04:37Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:35.833Z2020-11-23T20:27:35.86ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:37.613Z2021-09-28T19:04:37.647ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:36 GMT + - Tue, 28 Sep 2021 19:04:37 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-11-23T20:27:36Z2020-11-23T20:27:36Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-09-28T19:04:38Z2021-09-28T19:04:38ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:36.3426002Z2020-11-23T20:27:36.3426002Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:38.1588895Z2021-09-28T19:04:38.1588895Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:36 GMT + - Tue, 28 Sep 2021 19:04:37 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -122,26 +122,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 response: body: - string: Ruleshttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:36Zhttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:36Z2020-11-23T20:27:36ZRuleshttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:38Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-09-28T19:04:38Z2021-09-28T19:04:38Z1=1202020-11-23T20:27:36.3411485Z$Default + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">1=1202021-09-28T19:04:38.1526595Z$Default headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:36 GMT + - Tue, 28 Sep 2021 19:04:37 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -170,25 +170,25 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:36Z2020-11-23T20:27:36Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-09-28T19:04:38Z2021-09-28T19:04:38ZPriority = 'low'20true2020-11-23T20:27:36.4988522Ztest_rule_1 + i:type="EmptyRuleAction"/>2021-09-28T19:04:38.5026393Ztest_rule_1 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:36 GMT + - Tue, 28 Sep 2021 19:04:37 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -217,25 +217,25 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-11-23T20:27:36Z2020-11-23T20:27:36Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-09-28T19:04:38Z2021-09-28T19:04:38ZPriority = 'middle'20true2020-11-23T20:27:36.5769778Ztest_rule_2 + i:type="EmptyRuleAction"/>2021-09-28T19:04:38.6588864Ztest_rule_2 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:36 GMT + - Tue, 28 Sep 2021 19:04:38 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -264,25 +264,25 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:36Z2020-11-23T20:27:36Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-09-28T19:04:38Z2021-09-28T19:04:38ZPriority = 'high'20true2020-11-23T20:27:36.748863Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:04:38.8308137Ztest_rule_3 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:36 GMT + - Tue, 28 Sep 2021 19:04:38 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -302,47 +302,47 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 response: body: - string: Ruleshttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:36Zhttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:36Z2020-11-23T20:27:36ZRuleshttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:38Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-09-28T19:04:38Z2021-09-28T19:04:38Z1=1202020-11-23T20:27:36.3411485Z$Defaulthttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:36Z2020-11-23T20:27:36Z1=1202021-09-28T19:04:38.1526595Z$Defaulthttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-09-28T19:04:38Z2021-09-28T19:04:38ZPriority = 'low'20true2020-11-23T20:27:36.5130306Ztest_rule_1https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-11-23T20:27:36Z2020-11-23T20:27:36Z2021-09-28T19:04:38.5120027Ztest_rule_1https://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-09-28T19:04:38Z2021-09-28T19:04:38ZPriority = 'middle'20true2020-11-23T20:27:36.5755298Ztest_rule_2https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:36Z2020-11-23T20:27:36Z2021-09-28T19:04:38.6526249Ztest_rule_2https://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-09-28T19:04:38Z2021-09-28T19:04:38ZPriority = 'high'20true2020-11-23T20:27:36.7473997Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:04:38.8401224Ztest_rule_3 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:36 GMT + - Tue, 28 Sep 2021 19:04:38 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -364,9 +364,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05 response: body: string: '' @@ -374,9 +374,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:36 GMT + - Tue, 28 Sep 2021 19:04:38 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -394,40 +394,40 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 response: body: - string: Ruleshttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:36Zhttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:36Z2020-11-23T20:27:36ZRuleshttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:39Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-09-28T19:04:38Z2021-09-28T19:04:38Z1=1202020-11-23T20:27:36.3411485Z$Defaulthttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:36Z2020-11-23T20:27:36Z1=1202021-09-28T19:04:38.1526595Z$Defaulthttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-09-28T19:04:38Z2021-09-28T19:04:38ZPriority = 'low'20true2020-11-23T20:27:36.5130306Ztest_rule_1https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:36Z2020-11-23T20:27:36Z2021-09-28T19:04:38.5120027Ztest_rule_1https://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-09-28T19:04:38Z2021-09-28T19:04:38ZPriority = 'high'20true2020-11-23T20:27:36.7473997Ztest_rule_3 + i:type="EmptyRuleAction"/>2021-09-28T19:04:38.8401224Ztest_rule_3 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:36 GMT + - Tue, 28 Sep 2021 19:04:38 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -449,9 +449,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05 response: body: string: '' @@ -459,9 +459,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:37 GMT + - Tue, 28 Sep 2021 19:04:38 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -481,9 +481,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05 response: body: string: '' @@ -491,9 +491,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:37 GMT + - Tue, 28 Sep 2021 19:04:38 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -511,26 +511,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05 response: body: - string: Ruleshttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:37Zhttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:36Z2020-11-23T20:27:36ZRuleshttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:39Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-09-28T19:04:38Z2021-09-28T19:04:38Z1=1202020-11-23T20:27:36.3411485Z$Default + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">1=1202021-09-28T19:04:38.1526595Z$Default headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:37 GMT + - Tue, 28 Sep 2021 19:04:38 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -552,9 +552,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: string: '' @@ -562,9 +562,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:37 GMT + - Tue, 28 Sep 2021 19:04:38 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -584,9 +584,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: string: '' @@ -594,9 +594,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:37 GMT + - Tue, 28 Sep 2021 19:04:39 GMT etag: - - '637417600558600000' + - '637684526776470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_error.yaml index 0c8d733e88c5..298f385eb5d3 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_error.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_error.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestqd6kevky7y.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:49:50Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:40Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 02 Mar 2021 19:49:50 GMT + - Tue, 28 Sep 2021 19:04:40 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestqd6kevky7y.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-03-02T19:49:51Z2021-03-02T19:49:51Zservicebustestqd6kevky7yhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:04:40Z2021-09-28T19:04:41Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:49:51.13Z2021-03-02T19:49:51.21ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:40.977Z2021-09-28T19:04:41.05ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 02 Mar 2021 19:49:51 GMT + - Tue, 28 Sep 2021 19:04:41 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: - string: https://servicebustestqd6kevky7y.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-03-02T19:49:51Z2021-03-02T19:49:51Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-09-28T19:04:41Z2021-09-28T19:04:41ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-03-02T19:49:51.7058503Z2021-03-02T19:49:51.7058503Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:41.5736318Z2021-09-28T19:04:41.5736318Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 02 Mar 2021 19:49:51 GMT + - Tue, 28 Sep 2021 19:04:41 GMT etag: - - '637503113912100000' + - '637684526810500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -131,25 +131,25 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestqd6kevky7y.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-03-02T19:49:52Z2021-03-02T19:49:52Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-09-28T19:04:41Z2021-09-28T19:04:41ZPriority = 'low'20true2021-03-02T19:49:52.0027557Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:41.6829611Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 02 Mar 2021 19:49:51 GMT + - Tue, 28 Sep 2021 19:04:41 GMT etag: - - '637503113912100000' + - '637684526810500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -171,9 +171,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: string: '' @@ -181,9 +181,9 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 19:49:52 GMT + - Tue, 28 Sep 2021 19:04:41 GMT etag: - - '637503113912100000' + - '637684526810500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,9 +203,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: string: '' @@ -213,9 +213,9 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 19:49:52 GMT + - Tue, 28 Sep 2021 19:04:41 GMT etag: - - '637503113912100000' + - '637684526810500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -235,9 +235,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' @@ -245,9 +245,9 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 19:49:52 GMT + - Tue, 28 Sep 2021 19:04:42 GMT etag: - - '637503113912100000' + - '637684526810500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_success.yaml index 7b5c1765cb7e..f629ae47b780 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_success.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustesto3ardhmdnl.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:21:32Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:42Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 22 Apr 2021 15:21:32 GMT + - Tue, 28 Sep 2021 19:04:42 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T15:21:32Z2021-04-22T15:21:32Zservicebustesto3ardhmdnlhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:04:43Z2021-09-28T19:04:43Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:21:32.923Z2021-04-22T15:21:32.973ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:43.383Z2021-09-28T19:04:43.42ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:21:33 GMT + - Tue, 28 Sep 2021 19:04:42 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: - string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:21:33Z2021-04-22T15:21:33Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-09-28T19:04:43Z2021-09-28T19:04:43ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:21:33.6536071Z2021-04-22T15:21:33.6536071Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:43.8758856Z2021-09-28T19:04:43.8758856Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:21:33 GMT + - Tue, 28 Sep 2021 19:04:43 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -131,25 +131,25 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: - string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-09-28T19:04:44Z2021-09-28T19:04:44ZPriority = 'low'20true2021-04-22T15:21:34.169941Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:44.1103501Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:21:34 GMT + - Tue, 28 Sep 2021 19:04:43 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -169,25 +169,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:04:44Z2021-09-28T19:04:44ZPriority = 'low'20true2021-04-22T15:21:34.1691241Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:44.1068015Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:21:34 GMT + - Tue, 28 Sep 2021 19:04:43 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,7 +203,7 @@ interactions: testcidSET Priority = ''low''20true2021-04-22T15:21:34.169124Zrule' + xsi:type="SqlRuleAction">SET Priority = ''low''20true2021-09-28T19:04:44.106801Zrule' headers: Accept: - application/xml @@ -218,24 +218,24 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: - string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-09-28T19:04:44Z2021-09-28T19:04:44ZtestcidSET Priority = 'low'20true2021-04-22T15:21:34.7793219Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2021-09-28T19:04:44.2665033Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:21:34 GMT + - Tue, 28 Sep 2021 19:04:43 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -255,24 +255,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:04:44Z2021-09-28T19:04:44ZtestcidSET Priority = 'low'20true2021-04-22T15:21:34.1691241Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2021-09-28T19:04:44.1068015Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:21:34 GMT + - Tue, 28 Sep 2021 19:04:43 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -288,7 +288,7 @@ interactions: updatedcid2021-04-22T15:21:34.169124Zrule' + xsi:type="EmptyRuleAction" />2021-09-28T19:04:44.106801Zrule' headers: Accept: - application/xml @@ -303,24 +303,24 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: - string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:21:35Z2021-04-22T15:21:35Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-09-28T19:04:44Z2021-09-28T19:04:44Zupdatedcid2021-04-22T15:21:35.4043346Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:44.4071486Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:21:35 GMT + - Tue, 28 Sep 2021 19:04:43 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -340,24 +340,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:04:44Z2021-09-28T19:04:44Zupdatedcid2021-04-22T15:21:34.1691241Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:44.1068015Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:21:35 GMT + - Tue, 28 Sep 2021 19:04:43 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -379,9 +379,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05 response: body: string: '' @@ -389,9 +389,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:21:35 GMT + - Tue, 28 Sep 2021 19:04:43 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -411,9 +411,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: string: '' @@ -421,9 +421,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:21:36 GMT + - Tue, 28 Sep 2021 19:04:43 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -443,9 +443,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' @@ -453,9 +453,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:21:36 GMT + - Tue, 28 Sep 2021 19:04:44 GMT etag: - - '637547016929730000' + - '637684526834200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_invalid.yaml index 559f55c6e973..213989eee78c 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_invalid.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_invalid.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestssikhu6c5u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:45Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:38 GMT + - Tue, 28 Sep 2021 19:04:45 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-11-23T20:27:39Z2020-11-23T20:27:39Zservicebustestssikhu6c5uhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:04:46Z2021-09-28T19:04:46Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:39.11Z2020-11-23T20:27:39.34ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:46.083Z2021-09-28T19:04:46.11ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:39 GMT + - Tue, 28 Sep 2021 19:04:46 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-11-23T20:27:40Z2020-11-23T20:27:40Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:04:46Z2021-09-28T19:04:46ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:40.0561992Z2020-11-23T20:27:40.0561992Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:46.5784543Z2021-09-28T19:04:46.5784543Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:39 GMT + - Tue, 28 Sep 2021 19:04:46 GMT etag: - - '637417600593400000' + - '637684526861100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -131,25 +131,25 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestssikhu6c5u.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-11-23T20:27:40Z2020-11-23T20:27:40Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-09-28T19:04:46Z2021-09-28T19:04:46ZPriority = 'low'20true2020-11-23T20:27:40.1812113Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:46.7815283Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:39 GMT + - Tue, 28 Sep 2021 19:04:46 GMT etag: - - '637417600593400000' + - '637684526861100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -169,25 +169,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestssikhu6c5u.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-11-23T20:27:40Z2020-11-23T20:27:40Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:04:46Z2021-09-28T19:04:46ZPriority = 'low'20true2020-11-23T20:27:40.1758102Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:46.7760934Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:39 GMT + - Tue, 28 Sep 2021 19:04:46 GMT etag: - - '637417600593400000' + - '637684526861100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,7 +203,7 @@ interactions: Priority = ''low''20true2020-11-23T20:27:40.17581Ziewdm' + xsi:type="EmptyRuleAction" />2021-09-28T19:04:46.776093Ziewdm' headers: Accept: - application/xml @@ -212,27 +212,27 @@ interactions: Connection: - keep-alive Content-Length: - - '600' + - '601' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2021-05 response: body: string: 404Entity 'servicebustestsbname:Topic:fjrui|eqkovc|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:f68ac7fb-fb3b-4273-9db1-cdf58d115911_B1, - SystemTracker:NoSystemTracker, Timestamp:2020-11-23T20:27:40 + was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:d7fe1734-e21b-4b92-8e25-a762f21fa722_B7, + SystemTracker:NoSystemTracker, Timestamp:2021-09-28T19:04:46 headers: content-type: - application/xml; charset=utf-8 date: - - Mon, 23 Nov 2020 20:27:40 GMT + - Tue, 28 Sep 2021 19:04:47 GMT etag: - - '637417600593400000' + - '637684526861100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -254,9 +254,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: string: '' @@ -264,9 +264,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:40 GMT + - Tue, 28 Sep 2021 19:04:47 GMT etag: - - '637417600593400000' + - '637684526861100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -286,9 +286,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: string: '' @@ -296,9 +296,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:41 GMT + - Tue, 28 Sep 2021 19:04:47 GMT etag: - - '637417600593400000' + - '637684526861100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -318,9 +318,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' @@ -328,9 +328,9 @@ interactions: content-length: - '0' date: - - Mon, 23 Nov 2020 20:27:41 GMT + - Tue, 28 Sep 2021 19:04:48 GMT etag: - - '637417600593400000' + - '637684526861100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_success.yaml index 4e78f638e63b..da2a5e639db3 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_success.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestlzb7z2tqdh.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:18:56Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:49Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 22 Apr 2021 15:18:56 GMT + - Tue, 28 Sep 2021 19:04:48 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:18:57Z2021-04-22T15:18:57Zservicebustestlzb7z2tqdhhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:04:49Z2021-09-28T19:04:49Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:18:57.323Z2021-04-22T15:18:57.377ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:49.617Z2021-09-28T19:04:49.66ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:18:57 GMT + - Tue, 28 Sep 2021 19:04:49 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:18:58Z2021-04-22T15:18:58Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:04:50Z2021-09-28T19:04:50ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:18:58.0416933Z2021-04-22T15:18:58.0416933Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:50.1697806Z2021-09-28T19:04:50.1697806Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:18:58 GMT + - Tue, 28 Sep 2021 19:04:49 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -131,25 +131,25 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:18:58Z2021-04-22T15:18:58Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-09-28T19:04:50Z2021-09-28T19:04:50ZPriority = 'low'20true2021-04-22T15:18:58.4948313Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:50.3572924Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:18:58 GMT + - Tue, 28 Sep 2021 19:04:49 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -169,25 +169,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:18:58Z2021-04-22T15:18:58Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:04:50Z2021-09-28T19:04:50ZPriority = 'low'20true2021-04-22T15:18:58.4985986Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:50.3617179Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:18:58 GMT + - Tue, 28 Sep 2021 19:04:49 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,7 +203,7 @@ interactions: testcidSET Priority = ''low''20true2021-04-22T15:18:58.498598Zrule' + xsi:type="SqlRuleAction">SET Priority = ''low''20true2021-09-28T19:04:50.361717Zrule' headers: Accept: - application/xml @@ -218,24 +218,24 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:18:59Z2021-04-22T15:18:59Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-09-28T19:04:50Z2021-09-28T19:04:50ZtestcidSET Priority = 'low'20true2021-04-22T15:18:59.041708Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2021-09-28T19:04:50.5291671Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:18:58 GMT + - Tue, 28 Sep 2021 19:04:49 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -255,24 +255,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:18:58Z2021-04-22T15:18:58Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:04:50Z2021-09-28T19:04:50ZtestcidSET Priority = 'low'20true2021-04-22T15:18:58.4985986Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2021-09-28T19:04:50.3617179Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:18:59 GMT + - Tue, 28 Sep 2021 19:04:49 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -288,7 +288,7 @@ interactions: updatedcid2021-04-22T15:18:58.498598Zrule' + xsi:type="EmptyRuleAction" />2021-09-28T19:04:50.361717Zrule' headers: Accept: - application/xml @@ -303,24 +303,24 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: - string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:18:59Z2021-04-22T15:18:59Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-09-28T19:04:50Z2021-09-28T19:04:50Zupdatedcid2021-04-22T15:18:59.6198338Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:50.7479078Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:18:59 GMT + - Tue, 28 Sep 2021 19:04:50 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -340,24 +340,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:18:58Z2021-04-22T15:18:58Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-09-28T19:04:50Z2021-09-28T19:04:50Zupdatedcid2021-04-22T15:18:58.4985986Zrule + i:type="EmptyRuleAction"/>2021-09-28T19:04:50.3617179Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:18:59 GMT + - Tue, 28 Sep 2021 19:04:50 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -379,9 +379,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05 response: body: string: '' @@ -389,9 +389,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:19:00 GMT + - Tue, 28 Sep 2021 19:04:50 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -411,9 +411,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: string: '' @@ -421,9 +421,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:19:00 GMT + - Tue, 28 Sep 2021 19:04:50 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -443,9 +443,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' @@ -453,9 +453,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:19:01 GMT + - Tue, 28 Sep 2021 19:04:50 GMT etag: - - '637547015373770000' + - '637684526896600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_by_name.yaml index d8e183d031db..65a087a66ed3 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_by_name.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_by_name.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:23Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:52Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:23 GMT + - Tue, 28 Sep 2021 19:04:51 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:36:24Z2020-09-29T08:36:24Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-09-28T19:04:52Z2021-09-28T19:04:52Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:24.637Z2020-09-29T08:36:24.667ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:52.5Z2021-09-28T19:04:52.53ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:24 GMT + - Tue, 28 Sep 2021 19:04:52 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:36:25Z2020-09-29T08:36:25Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-09-28T19:04:53Z2021-09-28T19:04:53ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:25.7266754Z2020-09-29T08:36:25.7266754Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:53.0013543Z2021-09-28T19:04:53.0013543Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:25 GMT + - Tue, 28 Sep 2021 19:04:52 GMT etag: - - '637369653846670000' + - '637684526925300000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -122,24 +122,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-09-29T08:36:25Z2020-09-29T08:36:25Zsb://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05sub_testkkk2021-09-28T19:04:52Z2021-09-28T19:04:52ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:25.7199052Z2020-09-29T08:36:25.7199052Z2020-09-29T08:36:25.72Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:52.9974232Z2021-09-28T19:04:52.9974232Z2021-09-28T19:04:52.9974232Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:26 GMT + - Tue, 28 Sep 2021 19:04:52 GMT etag: - - '637369653846670000' + - '637684526925300000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -161,9 +161,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05 response: body: string: '' @@ -171,9 +171,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:26 GMT + - Tue, 28 Sep 2021 19:04:52 GMT etag: - - '637369653846670000' + - '637684526925300000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -193,9 +193,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: string: '' @@ -203,9 +203,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:26 GMT + - Tue, 28 Sep 2021 19:04:52 GMT etag: - - '637369653846670000' + - '637684526925300000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_duplicate.yaml index b57e6c07acd8..9fdc3f6a75ab 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_duplicate.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_duplicate.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:28Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:54Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:27 GMT + - Tue, 28 Sep 2021 19:04:54 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:36:28Z2020-09-29T08:36:28Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-09-28T19:04:54Z2021-09-28T19:04:54Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:28.5Z2020-09-29T08:36:28.543ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:54.91Z2021-09-28T19:04:54.96ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:28 GMT + - Tue, 28 Sep 2021 19:04:55 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:36:29Z2020-09-29T08:36:29Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05kkaqo2021-09-28T19:04:55Z2021-09-28T19:04:55ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:29.1347421Z2020-09-29T08:36:29.1347421Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:04:55.4832836Z2021-09-28T19:04:55.4832836Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:28 GMT + - Tue, 28 Sep 2021 19:04:55 GMT etag: - - '637369653885430000' + - '637684526949600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -129,21 +129,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:54918e51-b6a5-4dc2-aa5d-8b5bbfc46407_B4, - SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:36:29 + already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:54565b43-60de-486e-81f7-ec75c525220c_B11, + SystemTracker:NoSystemTracker, Timestamp:2021-09-28T19:04:55 headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:29 GMT + - Tue, 28 Sep 2021 19:04:56 GMT etag: - - '637369653885430000' + - '637684526949600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -165,9 +165,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05 response: body: string: '' @@ -175,9 +175,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:30 GMT + - Tue, 28 Sep 2021 19:04:56 GMT etag: - - '637369653885430000' + - '637684526949600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -197,9 +197,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: string: '' @@ -207,9 +207,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:30 GMT + - Tue, 28 Sep 2021 19:04:56 GMT etag: - - '637369653885430000' + - '637684526949600000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_forward_to.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_forward_to.yaml index 3d03054ef9a1..9962b7ae2283 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_forward_to.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_forward_to.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestuxrihuue54.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-19T22:18:32Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:04:57Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Fri, 19 Mar 2021 22:18:31 GMT + - Tue, 28 Sep 2021 19:04:57 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2021-05 response: body: - string: https://servicebustestuxrihuue54.servicebus.windows.net/dkfthj?api-version=2017-04dkfthj2021-03-19T22:18:32Z2021-03-19T22:18:33Zservicebustestuxrihuue54https://servicebustestappwyrpk4k.servicebus.windows.net/dkfthj?api-version=2021-05dkfthj2021-09-28T19:04:58Z2021-09-28T19:04:58Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-03-19T22:18:32.96Z2021-03-19T22:18:33.097ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:04:58Z2021-09-28T19:04:58.05ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 19 Mar 2021 22:18:32 GMT + - Tue, 28 Sep 2021 19:04:58 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,21 +86,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2021-05 response: body: - string: https://servicebustestuxrihuue54.servicebus.windows.net/iweidkforward?api-version=2017-04iweidkforward2021-03-19T22:18:33Z2021-03-19T22:18:33Zservicebustestuxrihuue54https://servicebustestappwyrpk4k.servicebus.windows.net/iweidkforward?api-version=2021-05iweidkforward2021-09-28T19:04:58Z2021-09-28T19:04:58Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-19T22:18:33.9Z2021-03-19T22:18:33.987ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:04:58.863Z2021-09-28T19:04:58.9ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 19 Mar 2021 22:18:33 GMT + - Tue, 28 Sep 2021 19:04:59 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -114,7 +114,7 @@ interactions: body: ' sb://servicebustestuxrihuue54.servicebus.windows.net/dkfthjsb://servicebustestuxrihuue54.servicebus.windows.net/dkfthj' + type="application/xml">sb://servicebustestappwyrpk4k.servicebus.windows.net/dkfthjsb://servicebustestappwyrpk4k.servicebus.windows.net/dkfthj' headers: Accept: - application/xml @@ -127,27 +127,27 @@ interactions: Content-Type: - application/atom+xml ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestuxrihuue54.servicebus.windows.net%2Fdkfthj&sig=%2fG5jJTxKyPzckZWN363QRs6tOXUuNQHlaEcLB0JvN3M%3d&se=1616195914&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Fdkfthj&sig=7TtVex826m6SSVIP4uY996LuxgKXF8C1szz%2fgiE7u%2fA%3d&se=1632859498&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestuxrihuue54.servicebus.windows.net%2Fdkfthj&sig=%2fG5jJTxKyPzckZWN363QRs6tOXUuNQHlaEcLB0JvN3M%3d&se=1616195914&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Fdkfthj&sig=7TtVex826m6SSVIP4uY996LuxgKXF8C1szz%2fgiE7u%2fA%3d&se=1632859498&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05 response: body: - string: https://servicebustestuxrihuue54.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04kdosakoforward2021-03-19T22:18:34Z2021-03-19T22:18:34Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05kdosakoforward2021-09-28T19:04:59Z2021-09-28T19:04:59ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestuxrihuue54.servicebus.windows.net/dkfthj2021-03-19T22:18:34.6104365Z2021-03-19T22:18:34.6104365Z0001-01-01T00:00:00sb://servicebustestuxrihuue54.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/dkfthj2021-09-28T19:04:59.3817116Z2021-09-28T19:04:59.3817116Z0001-01-01T00:00:00sb://servicebustestappwyrpk4k.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 19 Mar 2021 22:18:34 GMT + - Tue, 28 Sep 2021 19:04:59 GMT etag: - - '637517891139870000' + - '637684526989000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -167,24 +167,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestuxrihuue54.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04kdosakoforward2021-03-19T22:18:34Z2021-03-19T22:18:34Zsb://servicebustestappwyrpk4k.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05kdosakoforward2021-09-28T19:04:59Z2021-09-28T19:04:59ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestuxrihuue54.servicebus.windows.net/dkfthj2021-03-19T22:18:34.6084681Z2021-03-19T22:18:34.6084681Z2021-03-19T22:18:34.61Z00000sb://servicebustestuxrihuue54.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/dkfthj2021-09-28T19:04:59.38558Z2021-09-28T19:04:59.38558Z2021-09-28T19:04:59.387Z00000sb://servicebustestappwyrpk4k.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 19 Mar 2021 22:18:34 GMT + - Tue, 28 Sep 2021 19:04:59 GMT etag: - - '637517891139870000' + - '637684526989000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -206,9 +206,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05 response: body: string: '' @@ -216,9 +216,9 @@ interactions: content-length: - '0' date: - - Fri, 19 Mar 2021 22:18:34 GMT + - Tue, 28 Sep 2021 19:04:59 GMT etag: - - '637517891139870000' + - '637684526989000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -238,9 +238,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2021-05 response: body: string: '' @@ -248,9 +248,9 @@ interactions: content-length: - '0' date: - - Fri, 19 Mar 2021 22:18:34 GMT + - Tue, 28 Sep 2021 19:05:00 GMT etag: - - '637517891139870000' + - '637684526989000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -270,9 +270,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2021-05 response: body: string: '' @@ -280,9 +280,9 @@ interactions: content-length: - '0' date: - - Fri, 19 Mar 2021 22:18:35 GMT + - Tue, 28 Sep 2021 19:05:00 GMT etag: - - '637517891130970000' + - '637684526980500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_subscription_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_subscription_description.yaml index 153ec2be368e..01bf6221620e 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_subscription_description.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_subscription_description.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestxi2l2ghys7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T16:11:22Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:01Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 15 Apr 2021 16:11:22 GMT + - Tue, 28 Sep 2021 19:05:00 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: - string: https://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-15T16:11:23Z2021-04-15T16:11:23Zservicebustestxi2l2ghys7https://servicebustestappwyrpk4k.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-09-28T19:05:01Z2021-09-28T19:05:01Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T16:11:23.527Z2021-04-15T16:11:23.57ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:01.48Z2021-09-28T19:05:01.563ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 16:11:23 GMT + - Tue, 28 Sep 2021 19:05:01 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05 response: body: - string: https://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2021-04-15T16:11:24Z2021-04-15T16:11:24Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05kdosako2021-09-28T19:05:02Z2021-09-28T19:05:02ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:11:24.2964145Z2021-04-15T16:11:24.2964145Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-09-28T19:05:02.0568431Z2021-09-28T19:05:02.0568431Z0001-01-01T00:00:00PT10MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 16:11:23 GMT + - Tue, 28 Sep 2021 19:05:01 GMT etag: - - '637540998835700000' + - '637684527015630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -122,24 +122,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2021-04-15T16:11:24Z2021-04-15T16:11:24Zsb://servicebustestappwyrpk4k.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05kdosako2021-09-28T19:05:02Z2021-09-28T19:05:02ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:11:24.3006566Z2021-04-15T16:11:24.3006566Z2021-04-15T16:11:24.3006566Z00000PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-09-28T19:05:02.068326Z2021-09-28T19:05:02.068326Z2021-09-28T19:05:02.068326Z00000PT10MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 16:11:24 GMT + - Tue, 28 Sep 2021 19:05:01 GMT etag: - - '637540998835700000' + - '637684527015630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -166,23 +166,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2021-05 response: body: - string: https://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2017-04pfkxmq2021-04-15T16:11:25Z2021-04-15T16:11:25Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2021-05pfkxmq2021-09-28T19:05:02Z2021-09-28T19:05:02ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:11:25.0054126Z2021-04-15T16:11:25.0054126Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-09-28T19:05:02.3380859Z2021-09-28T19:05:02.3380859Z0001-01-01T00:00:00PT10MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 16:11:24 GMT + - Tue, 28 Sep 2021 19:05:01 GMT etag: - - '637540998835700000' + - '637684527015630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -202,24 +202,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk/subscriptions/pfkxmq?enrich=false&api-version=2017-04pfkxmq2021-04-15T16:11:25Z2021-04-15T16:11:25Zsb://servicebustestappwyrpk4k.servicebus.windows.net/iweidk/subscriptions/pfkxmq?enrich=false&api-version=2021-05pfkxmq2021-09-28T19:05:02Z2021-09-28T19:05:02ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:11:25.019399Z2021-04-15T16:11:25.019399Z2021-04-15T16:11:25.019399Z00000PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-09-28T19:05:02.3339502Z2021-09-28T19:05:02.3339502Z2021-09-28T19:05:02.3339502Z00000PT10MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 16:11:24 GMT + - Tue, 28 Sep 2021 19:05:01 GMT etag: - - '637540998835700000' + - '637684527015630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -241,9 +241,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05 response: body: string: '' @@ -251,9 +251,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 16:11:25 GMT + - Tue, 28 Sep 2021 19:05:01 GMT etag: - - '637540998835700000' + - '637684527015630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -273,9 +273,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2021-05 response: body: string: '' @@ -283,9 +283,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 16:11:25 GMT + - Tue, 28 Sep 2021 19:05:01 GMT etag: - - '637540998835700000' + - '637684527015630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -305,9 +305,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: string: '' @@ -315,9 +315,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 16:11:26 GMT + - Tue, 28 Sep 2021 19:05:02 GMT etag: - - '637540998835700000' + - '637684527015630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_delete.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_delete.yaml index 7122f49471f9..b5575c8fd291 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_delete.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_delete.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:35Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:03Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:34 GMT + - Tue, 28 Sep 2021 19:05:03 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-09-29T08:36:35Z2020-09-29T08:36:35Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda?api-version=2021-05test_topicgda2021-09-28T19:05:03Z2021-09-28T19:05:03Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:35.773Z2020-09-29T08:36:35.883ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:03.86Z2021-09-28T19:05:03.923ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:35 GMT + - Tue, 28 Sep 2021 19:05:03 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-09-28T19:05:04Z2021-09-28T19:05:04ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.4355262Z2020-09-29T08:36:36.4355262Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:04.3741863Z2021-09-28T19:05:04.3741863Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:36 GMT + - Tue, 28 Sep 2021 19:05:04 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -122,26 +122,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:36Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36ZSubscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:04Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-09-28T19:05:04Z2021-09-28T19:05:04ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:04.3772829Z2021-09-28T19:05:04.3772829Z2021-09-28T19:05:04.3772829Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:36 GMT + - Tue, 28 Sep 2021 19:05:04 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -168,23 +168,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-09-28T19:05:04Z2021-09-28T19:05:04ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.8105286Z2020-09-29T08:36:36.8105286Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:04.5616863Z2021-09-28T19:05:04.5616863Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:36 GMT + - Tue, 28 Sep 2021 19:05:04 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -204,32 +204,32 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:37Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36ZSubscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:04Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-09-28T19:05:04Z2021-09-28T19:05:04ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:04.3772829Z2021-09-28T19:05:04.3772829Z2021-09-28T19:05:04.3772829Z00000P10675199DT2H48M5.4775807SAvailablefalsehttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-09-28T19:05:04Z2021-09-28T19:05:04ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:04.5648368Z2021-09-28T19:05:04.5648368Z2021-09-28T19:05:04.5648368Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:36 GMT + - Tue, 28 Sep 2021 19:05:04 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -249,24 +249,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36Zsb://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05test_sub1da2021-09-28T19:05:04Z2021-09-28T19:05:04ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:04.3772829Z2021-09-28T19:05:04.3772829Z2021-09-28T19:05:04.3772829Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:36 GMT + - Tue, 28 Sep 2021 19:05:04 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -288,9 +288,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05 response: body: string: '' @@ -298,9 +298,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:36 GMT + - Tue, 28 Sep 2021 19:05:04 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -318,26 +318,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:37Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36ZSubscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:04Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-09-28T19:05:04Z2021-09-28T19:05:04ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:04.5648368Z2021-09-28T19:05:04.5648368Z2021-09-28T19:05:04.5648368Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:36 GMT + - Tue, 28 Sep 2021 19:05:04 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -359,9 +359,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05 response: body: string: '' @@ -369,9 +369,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:37 GMT + - Tue, 28 Sep 2021 19:05:04 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -389,20 +389,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:37Z + string: Subscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:04Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:37 GMT + - Tue, 28 Sep 2021 19:05:04 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -424,9 +424,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2021-05 response: body: string: '' @@ -434,9 +434,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:37 GMT + - Tue, 28 Sep 2021 19:05:05 GMT etag: - - '637369653958830000' + - '637684527039230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_properties_basic.yaml index e8896be2acd3..0be3b436c793 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_properties_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_properties_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:26Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:05Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:26 GMT + - Tue, 28 Sep 2021 19:05:05 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2021-05 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa?api-version=2017-04dcvxqa2020-08-17T17:53:27Z2020-08-17T17:53:27Zservicebustesteotyq3ucg7https://servicebustestappwyrpk4k.servicebus.windows.net/dcvxqa?api-version=2021-05dcvxqa2021-09-28T19:05:06Z2021-09-28T19:05:06Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:27.23Z2020-08-17T17:53:27.263ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:06.347Z2021-09-28T19:05:06.377ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:27 GMT + - Tue, 28 Sep 2021 19:05:06 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04xvazzag2020-08-17T17:53:28Z2020-08-17T17:53:28Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05xvazzag2021-09-28T19:05:06Z2021-09-28T19:05:06ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:28.0266691Z2020-08-17T17:53:28.0266691Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:06.8198089Z2021-09-28T19:05:06.8198089Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:28 GMT + - Tue, 28 Sep 2021 19:05:06 GMT etag: - - '637332836072630000' + - '637684527063770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -122,24 +122,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04xvazzag2020-08-17T17:53:28Z2020-08-17T17:53:28Zsb://servicebustestappwyrpk4k.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05xvazzag2021-09-28T19:05:06Z2021-09-28T19:05:06ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:28.0287663Z2020-08-17T17:53:28.0287663Z2020-08-17T17:53:28.03Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:06.8263492Z2021-09-28T19:05:06.8263492Z2021-09-28T19:05:06.827Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:28 GMT + - Tue, 28 Sep 2021 19:05:06 GMT etag: - - '637332836072630000' + - '637684527063770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -161,9 +161,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05 response: body: string: '' @@ -171,9 +171,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:28 GMT + - Tue, 28 Sep 2021 19:05:06 GMT etag: - - '637332836072630000' + - '637684527063770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -193,9 +193,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2021-05 response: body: string: '' @@ -203,9 +203,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:28 GMT + - Tue, 28 Sep 2021 19:05:07 GMT etag: - - '637332836072630000' + - '637684527063770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list.yaml index 917ded55fe50..f649eb1ede0e 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:42Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:08Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:42 GMT + - Tue, 28 Sep 2021 19:05:07 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-09-29T08:36:43Z2020-09-29T08:36:43Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/lkoqxc?api-version=2021-05lkoqxc2021-09-28T19:05:08Z2021-09-28T19:05:08Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:43.043Z2020-09-29T08:36:43.077ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:08.59Z2021-09-28T19:05:08.627ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:43 GMT + - Tue, 28 Sep 2021 19:05:08 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,20 +79,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:43Z + string: Subscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:09Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:43 GMT + - Tue, 28 Sep 2021 19:05:08 GMT etag: - - '637369654030770000' + - '637684527086270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -119,23 +119,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:36:43Z2020-09-29T08:36:43Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05testsub12021-09-28T19:05:09Z2021-09-28T19:05:09ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:43.8949819Z2020-09-29T08:36:43.8949819Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:09.1193777Z2021-09-28T19:05:09.1193777Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:43 GMT + - Tue, 28 Sep 2021 19:05:08 GMT etag: - - '637369654030770000' + - '637684527086270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -162,23 +162,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:36:44Z2020-09-29T08:36:44Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05testsub22021-09-28T19:05:09Z2021-09-28T19:05:09ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:44.4262925Z2020-09-29T08:36:44.4262925Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:09.3225051Z2021-09-28T19:05:09.3225051Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:44 GMT + - Tue, 28 Sep 2021 19:05:08 GMT etag: - - '637369654030770000' + - '637684527086270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -198,32 +198,32 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:44Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:36:43Z2020-09-29T08:36:43ZSubscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:09Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05testsub12021-09-28T19:05:09Z2021-09-28T19:05:09ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:43.8908707Z2020-09-29T08:36:43.8908707Z2020-09-29T08:36:43.8908707Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:36:44Z2020-09-29T08:36:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:09.1279801Z2021-09-28T19:05:09.1279801Z2021-09-28T19:05:09.1279801Z00000P10675199DT2H48M5.4775807SAvailablefalsehttps://servicebustestappwyrpk4k.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05testsub22021-09-28T19:05:09Z2021-09-28T19:05:09ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:44.4377786Z2020-09-29T08:36:44.4377786Z2020-09-29T08:36:44.4377786Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:09.3154639Z2021-09-28T19:05:09.3154639Z2021-09-28T19:05:09.3154639Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:44 GMT + - Tue, 28 Sep 2021 19:05:08 GMT etag: - - '637369654030770000' + - '637684527086270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -245,9 +245,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05 response: body: string: '' @@ -255,9 +255,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:44 GMT + - Tue, 28 Sep 2021 19:05:08 GMT etag: - - '637369654030770000' + - '637684527086270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -277,9 +277,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05 response: body: string: '' @@ -287,9 +287,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:44 GMT + - Tue, 28 Sep 2021 19:05:08 GMT etag: - - '637369654030770000' + - '637684527086270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -307,20 +307,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:44Z + string: Subscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:09Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:44 GMT + - Tue, 28 Sep 2021 19:05:08 GMT etag: - - '637369654030770000' + - '637684527086270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -342,9 +342,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2021-05 response: body: string: '' @@ -352,9 +352,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:45 GMT + - Tue, 28 Sep 2021 19:05:09 GMT etag: - - '637369654030770000' + - '637684527086270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_properties.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_properties.yaml index 49d66e8678fb..5d09f4871697 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_properties.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_properties.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:34Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:10Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:33 GMT + - Tue, 28 Sep 2021 19:05:10 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2021-05 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv?api-version=2017-04dkoamv2020-08-17T17:53:34Z2020-08-17T17:53:34Zservicebustesteotyq3ucg7https://servicebustestappwyrpk4k.servicebus.windows.net/dkoamv?api-version=2021-05dkoamv2021-09-28T19:05:11Z2021-09-28T19:05:11Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:34.87Z2020-08-17T17:53:34.903ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:11.143Z2021-09-28T19:05:11.19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:34 GMT + - Tue, 28 Sep 2021 19:05:11 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,20 +79,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:35Z + string: Subscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:11Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:34 GMT + - Tue, 28 Sep 2021 19:05:11 GMT etag: - - '637332836149030000' + - '637684527111900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -112,20 +112,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:36Z + string: Subscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:11Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:35 GMT + - Tue, 28 Sep 2021 19:05:11 GMT etag: - - '637332836149030000' + - '637684527111900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -152,23 +152,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-17T17:53:36Z2020-08-17T17:53:36Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-09-28T19:05:11Z2021-09-28T19:05:11ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:36.1601948Z2020-08-17T17:53:36.1601948Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:11.8452694Z2021-09-28T19:05:11.8452694Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:35 GMT + - Tue, 28 Sep 2021 19:05:12 GMT etag: - - '637332836149030000' + - '637684527111900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -188,26 +188,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:36Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-17T17:53:36Z2020-08-17T17:53:36ZSubscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:12Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-09-28T19:05:11Z2021-09-28T19:05:11ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:36.1693589Z2020-08-17T17:53:36.1693589Z2020-08-17T17:53:36.17Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:11.844377Z2021-09-28T19:05:11.844377Z2021-09-28T19:05:11.844377Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:35 GMT + - Tue, 28 Sep 2021 19:05:12 GMT etag: - - '637332836149030000' + - '637684527111900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -227,26 +227,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:36Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-17T17:53:36Z2020-08-17T17:53:36ZSubscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:12Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-09-28T19:05:11Z2021-09-28T19:05:11ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:36.1693589Z2020-08-17T17:53:36.1693589Z2020-08-17T17:53:36.17Z00000P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:11.844377Z2021-09-28T19:05:11.844377Z2021-09-28T19:05:11.844377Z00000P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:35 GMT + - Tue, 28 Sep 2021 19:05:12 GMT etag: - - '637332836149030000' + - '637684527111900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -268,9 +268,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05 response: body: string: '' @@ -278,9 +278,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:35 GMT + - Tue, 28 Sep 2021 19:05:12 GMT etag: - - '637332836149030000' + - '637684527111900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -298,20 +298,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:36Z + string: Subscriptionshttps://servicebustestappwyrpk4k.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:12Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 17:53:36 GMT + - Tue, 28 Sep 2021 19:05:12 GMT etag: - - '637332836149030000' + - '637684527111900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -333,9 +333,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2021-05 response: body: string: '' @@ -343,9 +343,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:36 GMT + - Tue, 28 Sep 2021 19:05:12 GMT etag: - - '637332836149030000' + - '637684527111900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_error.yaml index 970b238060be..8727e4cb17fd 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_error.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_error.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestnkxyo36wpb.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:51:48Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:13Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 02 Mar 2021 19:51:48 GMT + - Tue, 28 Sep 2021 19:05:13 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05 response: body: - string: https://servicebustestnkxyo36wpb.servicebus.windows.net/dfjdfj?api-version=2017-04dfjdfj2021-03-02T19:51:48Z2021-03-02T19:51:48Zservicebustestnkxyo36wpbhttps://servicebustestappwyrpk4k.servicebus.windows.net/dfjdfj?api-version=2021-05dfjdfj2021-09-28T19:05:13Z2021-09-28T19:05:13Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:51:48.493Z2021-03-02T19:51:48.56ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:13.853Z2021-09-28T19:05:13.903ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 02 Mar 2021 19:51:48 GMT + - Tue, 28 Sep 2021 19:05:13 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2021-05 response: body: - string: https://servicebustestnkxyo36wpb.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2017-04kwqxd2021-03-02T19:51:49Z2021-03-02T19:51:49Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2021-05kwqxd2021-09-28T19:05:14Z2021-09-28T19:05:14ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-03-02T19:51:49.0648439Z2021-03-02T19:51:49.0648439Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:14.3602209Z2021-09-28T19:05:14.3602209Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 02 Mar 2021 19:51:49 GMT + - Tue, 28 Sep 2021 19:05:14 GMT etag: - - '637503115085600000' + - '637684527139030000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -124,9 +124,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2021-05 response: body: string: '' @@ -134,9 +134,9 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 19:51:49 GMT + - Tue, 28 Sep 2021 19:05:14 GMT etag: - - '637503115085600000' + - '637684527139030000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -156,9 +156,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05 response: body: string: '' @@ -166,9 +166,9 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 19:51:49 GMT + - Tue, 28 Sep 2021 19:05:14 GMT etag: - - '637503115085600000' + - '637684527139030000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_success.yaml index e74795606c89..00e327e57843 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_success.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestf27vchuqgf.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:04:58Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:15Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 22 Apr 2021 15:04:58 GMT + - Tue, 28 Sep 2021 19:05:15 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T15:04:59Z2021-04-22T15:04:59Zservicebustestf27vchuqgfhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:05:16Z2021-09-28T19:05:16Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:04:59.14Z2021-04-22T15:04:59.19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:16.04Z2021-09-28T19:05:16.08ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:04:59 GMT + - Tue, 28 Sep 2021 19:05:16 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: - string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:04:59Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-09-28T19:05:16Z2021-09-28T19:05:16ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:04:59.8631553Z2021-04-22T15:04:59.8631553Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:16.5321735Z2021-09-28T19:05:16.5321735Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:04:59 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -131,23 +131,23 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: - string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:05:00Z2021-04-22T15:05:00Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-09-28T19:05:16Z2021-09-28T19:05:16ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:05:00.2068751Z2021-04-22T15:05:00.2068751Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:05:16.7196705Z2021-09-28T19:05:16.7196705Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:04:59 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -167,24 +167,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:05:00Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05eqkovcd2021-09-28T19:05:16Z2021-09-28T19:05:16ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:04:59.8612051Z2021-04-22T15:05:00.2049828Z2021-04-22T15:04:59.8612051Z00000P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:05:16.5392247Z2021-09-28T19:05:16.7581952Z2021-09-28T19:05:16.54Z00000P10675199DT2H48M5.477539SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:05:00 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -213,23 +213,23 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: - string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:05:00Z2021-04-22T15:05:00Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-09-28T19:05:16Z2021-09-28T19:05:16ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:05:00.7589009Z2021-04-22T15:05:00.7589009Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:05:16.8446667Z2021-09-28T19:05:16.8446667Z0001-01-01T00:00:00PT10MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:05:00 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -249,24 +249,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:05:00Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05eqkovcd2021-09-28T19:05:16Z2021-09-28T19:05:16ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:04:59.8612051Z2021-04-22T15:05:00.8768405Z2021-04-22T15:04:59.8612051Z00000PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:05:16.5392247Z2021-09-28T19:05:16.8835796Z2021-09-28T19:05:16.54Z00000PT10MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:05:00 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -280,7 +280,7 @@ interactions: body: ' PT12SfalsePT11Mtruetrue14trueActivesb://servicebustestf27vchuqgf.servicebus.windows.net/fjruidsb://servicebustestf27vchuqgf.servicebus.windows.net/fjruidPT10MAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue14trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruidsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruidPT10MAvailable' headers: Accept: - application/xml @@ -295,27 +295,27 @@ interactions: If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestf27vchuqgf.servicebus.windows.net%2Ffjruid&sig=FwaFbEXORavfgL47hbYM5djMQSSvoy4%2bQ6XOjrEujI8%3d&se=1619107501&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjruid&sig=XwmCkZBJX5aDufNd3%2bC6mDzGEOtt5xoEmFj9kUqNLUM%3d&se=1632859516&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestf27vchuqgf.servicebus.windows.net%2Ffjruid&sig=FwaFbEXORavfgL47hbYM5djMQSSvoy4%2bQ6XOjrEujI8%3d&se=1619107501&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjruid&sig=XwmCkZBJX5aDufNd3%2bC6mDzGEOtt5xoEmFj9kUqNLUM%3d&se=1632859516&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: - string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:05:01Z2021-04-22T15:05:01Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-09-28T19:05:16Z2021-09-28T19:05:16ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid2021-04-22T15:05:01.4307831Z2021-04-22T15:05:01.4307831Z0001-01-01T00:00:00sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruidP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid2021-09-28T19:05:16.9696671Z2021-09-28T19:05:16.9696671Z0001-01-01T00:00:00sb://servicebustestappwyrpk4k.servicebus.windows.net/fjruidP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:05:01 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -335,24 +335,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:05:01Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05eqkovcd2021-09-28T19:05:16Z2021-09-28T19:05:16ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid2021-04-22T15:04:59.8612051Z2021-04-22T15:05:01.4393735Z2021-04-22T15:04:59.8612051Z00000sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruidP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid2021-09-28T19:05:16.5392247Z2021-09-28T19:05:16.9773627Z2021-09-28T19:05:16.54Z00000sb://servicebustestappwyrpk4k.servicebus.windows.net/fjruidP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:05:01 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -381,23 +381,23 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: - string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:05:01Z2021-04-22T15:05:01Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-09-28T19:05:17Z2021-09-28T19:05:17ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:05:01.9777217Z2021-04-22T15:05:01.9777217Z0001-01-01T00:00:00PT15MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:05:17.1415451Z2021-09-28T19:05:17.1415451Z0001-01-01T00:00:00PT15MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:05:01 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -417,24 +417,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:05:02Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05eqkovcd2021-09-28T19:05:16Z2021-09-28T19:05:17ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:04:59.8612051Z2021-04-22T15:05:02.0018556Z2021-04-22T15:04:59.8612051Z00000PT15MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:05:16.5392247Z2021-09-28T19:05:17.1648524Z2021-09-28T19:05:16.54Z00000PT15MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:05:01 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -456,9 +456,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05 response: body: string: '' @@ -466,9 +466,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:05:02 GMT + - Tue, 28 Sep 2021 19:05:16 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -488,9 +488,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' @@ -498,9 +498,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:05:02 GMT + - Tue, 28 Sep 2021 19:05:17 GMT etag: - - '637547006991900000' + - '637684527160800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_invalid.yaml index 59745f0598b2..88af496757e3 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_invalid.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_invalid.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:49Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:18Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:49 GMT + - Tue, 28 Sep 2021 19:05:18 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:36:49Z2020-09-29T08:36:49Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-09-28T19:05:18Z2021-09-28T19:05:19Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:49.837Z2020-09-29T08:36:49.88ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:18.87Z2021-09-28T19:05:19.113ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:50 GMT + - Tue, 28 Sep 2021 19:05:19 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,23 +86,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-09-29T08:36:50Z2020-09-29T08:36:50Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05kwqxc2021-09-28T19:05:19Z2021-09-28T19:05:19ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:50.6002126Z2020-09-29T08:36:50.6002126Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:19.611918Z2021-09-28T19:05:19.611918Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:50 GMT + - Tue, 28 Sep 2021 19:05:19 GMT etag: - - '637369654098800000' + - '637684527191130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -116,7 +116,7 @@ interactions: body: ' PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:36:50.600212Z2020-09-29T08:36:50.600212Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:05:19.611918Z2021-09-28T19:05:19.611918Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -131,21 +131,21 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2021-05 response: body: string: 404Entity 'servicebustestsbname:Topic:dfjfj|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:8b42b62c-a6cf-45e8-9679-2512ecdfd006_B14, - SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:36:51 + was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:c8daecfb-314b-4295-8d50-ff19c9fe22c0_B2, + SystemTracker:NoSystemTracker, Timestamp:2021-09-28T19:05:19 headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:52 GMT + - Tue, 28 Sep 2021 19:05:20 GMT etag: - - '637369654098800000' + - '637684527191130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -159,7 +159,7 @@ interactions: body: ' P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:36:50.600212Z2020-09-29T08:36:50.600212Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:05:19.611918Z2021-09-28T19:05:19.611918Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -174,9 +174,9 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2021-05 response: body: string: '400The supplied lock time exceeds the allowed @@ -185,15 +185,15 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:351941aa-f78c-432c-a9cf-6393d835e395_G1, - SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-09-29T08:36:52' + Actual value was 25.00:00:00. TrackingId:bc0029ee-abd9-426e-9b6e-a726ce1dc76d_G13, + SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2021-09-28T19:05:20' headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:53 GMT + - Tue, 28 Sep 2021 19:05:21 GMT etag: - - '637369654098800000' + - '637684527191130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -215,9 +215,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05 response: body: string: '' @@ -225,9 +225,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:53 GMT + - Tue, 28 Sep 2021 19:05:21 GMT etag: - - '637369654098800000' + - '637684527191130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -247,9 +247,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: string: '' @@ -257,9 +257,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:36:54 GMT + - Tue, 28 Sep 2021 19:05:21 GMT etag: - - '637369654098800000' + - '637684527191130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_success.yaml index 111b8b5f3205..42fc61b66dbb 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_success.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestskjauwsb3z.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:02:39Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:22Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:39 GMT + - Tue, 28 Sep 2021 19:05:22 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/dfkla?api-version=2017-04dfkla2021-04-22T15:02:40Z2021-04-22T15:02:40Zservicebustestskjauwsb3zhttps://servicebustestappwyrpk4k.servicebus.windows.net/dfkla?api-version=2021-05dfkla2021-09-28T19:05:23Z2021-09-28T19:05:23Zservicebustestappwyrpk4kPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-22T15:02:40.057Z2021-04-22T15:02:40.09ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-09-28T19:05:23.453Z2021-09-28T19:05:23.483ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:40 GMT + - Tue, 28 Sep 2021 19:05:22 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,21 +86,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:02:41Z2021-04-22T15:02:41Zservicebustestskjauwsb3zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:05:24Z2021-09-28T19:05:24Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:02:41.223Z2021-04-22T15:02:41.26ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:24.357Z2021-09-28T19:05:24.397ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:41 GMT + - Tue, 28 Sep 2021 19:05:23 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -127,23 +127,23 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:41Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:24Z2021-09-28T19:05:24ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:02:41.9375754Z2021-04-22T15:02:41.9375754Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-09-28T19:05:24.8769244Z2021-09-28T19:05:24.8769244Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:41 GMT + - Tue, 28 Sep 2021 19:05:23 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -157,7 +157,7 @@ interactions: body: ' PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:02:41.937575Z2021-04-22T15:02:41.937575Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:05:24.876924Z2021-09-28T19:05:24.876924Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -172,23 +172,23 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:42Z2021-04-22T15:02:42Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:24Z2021-09-28T19:05:24ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:02:42.2813253Z2021-04-22T15:02:42.2813253Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:05:24.9863273Z2021-09-28T19:05:24.9863273Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:42 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -208,24 +208,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:42Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:05:24Z2021-09-28T19:05:25ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:42.2783438Z2021-04-22T15:02:41.9344853Z00000P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-09-28T19:05:24.8630409Z2021-09-28T19:05:25.0036255Z2021-09-28T19:05:24.8630409Z00000P10675199DT2H48M5.477539SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:42 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -240,7 +240,7 @@ interactions: PT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:41.934485Z2021-04-22T15:02:42.278343Z2021-04-22T15:02:41.934485Z00000PT10MAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:05:24.86304Z2021-09-28T19:05:25.003625Z2021-09-28T19:05:24.86304Z00000PT10MAvailable' headers: Accept: - application/xml @@ -249,29 +249,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1382' + - '1380' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:42Z2021-04-22T15:02:42Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:25Z2021-09-28T19:05:25ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:42.8282366Z2021-04-22T15:02:42.8282366Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:05:25.1269158Z2021-09-28T19:05:25.1269158Z0001-01-01T00:00:00PT10MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:42 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -291,24 +291,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:42Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:05:24Z2021-09-28T19:05:25ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:42.840715Z2021-04-22T15:02:41.9344853Z00000PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:05:24.8630409Z2021-09-28T19:05:25.1286351Z2021-09-28T19:05:24.8630409Z00000PT10MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:43 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -323,7 +323,7 @@ interactions: PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui2021-04-22T15:02:41.934485Z2021-04-22T15:02:42.840715Z2021-04-22T15:02:41.934485Z00000sb://servicebustestskjauwsb3z.servicebus.windows.net/fjruiPT10MAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui2021-09-28T19:05:24.86304Z2021-09-28T19:05:25.128635Z2021-09-28T19:05:24.86304Z00000sb://servicebustestappwyrpk4k.servicebus.windows.net/fjruiPT10MAvailable' headers: Accept: - application/xml @@ -332,33 +332,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1584' + - '1582' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestskjauwsb3z.servicebus.windows.net%2Ffjrui&sig=GczHvExOSistT0gXxQw4codO2SJpvfvqRaYEfR3kkRk%3d&se=1619107363&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjrui&sig=0V%2fiRqgyJgHFoXHoLBbtQKFdT4oD5ukFSISOQ5j%2f8pM%3d&se=1632859524&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestskjauwsb3z.servicebus.windows.net%2Ffjrui&sig=GczHvExOSistT0gXxQw4codO2SJpvfvqRaYEfR3kkRk%3d&se=1619107363&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Ffjrui&sig=0V%2fiRqgyJgHFoXHoLBbtQKFdT4oD5ukFSISOQ5j%2f8pM%3d&se=1632859524&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:43Z2021-04-22T15:02:43Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:25Z2021-09-28T19:05:25ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui2021-04-22T15:02:43.4063673Z2021-04-22T15:02:43.4063673Z0001-01-01T00:00:00sb://servicebustestskjauwsb3z.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui2021-09-28T19:05:25.2987922Z2021-09-28T19:05:25.2987922Z0001-01-01T00:00:00sb://servicebustestappwyrpk4k.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:43 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -378,24 +378,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:43Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:05:24Z2021-09-28T19:05:25ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui2021-04-22T15:02:41.9344853Z2021-04-22T15:02:43.5438339Z2021-04-22T15:02:41.9344853Z00000sb://servicebustestskjauwsb3z.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui2021-09-28T19:05:24.8630409Z2021-09-28T19:05:25.3161252Z2021-09-28T19:05:24.8630409Z00000sb://servicebustestappwyrpk4k.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:44 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -410,7 +410,7 @@ interactions: PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/dfkla2021-04-22T15:02:41.934485Z2021-04-22T15:02:43.543833Z2021-04-22T15:02:41.934485Z00000sb://servicebustestskjauwsb3z.servicebus.windows.net/dfklaP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/dfkla2021-09-28T19:05:24.86304Z2021-09-28T19:05:25.316125Z2021-09-28T19:05:24.86304Z00000sb://servicebustestappwyrpk4k.servicebus.windows.net/dfklaP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -419,33 +419,33 @@ interactions: Connection: - keep-alive Content-Length: - - '1604' + - '1602' Content-Type: - application/atom+xml If-Match: - '*' ServiceBusDlqSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestskjauwsb3z.servicebus.windows.net%2Fdfkla&sig=aK4FMuVQQCSc9KroxJpqQnt0VvYDiFQ85VhdunumOsI%3d&se=1619107364&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Fdfkla&sig=HxBnRRxZAXemCgNqpTWyJLX1K%2bBtWkZ2f8GgdcocKjc%3d&se=1632859524&skn=RootManageSharedAccessKey ServiceBusSupplementaryAuthorization: - - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestskjauwsb3z.servicebus.windows.net%2Fdfkla&sig=aK4FMuVQQCSc9KroxJpqQnt0VvYDiFQ85VhdunumOsI%3d&se=1619107364&skn=RootManageSharedAccessKey + - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestappwyrpk4k.servicebus.windows.net%2Fdfkla&sig=HxBnRRxZAXemCgNqpTWyJLX1K%2bBtWkZ2f8GgdcocKjc%3d&se=1632859524&skn=RootManageSharedAccessKey User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:44Z2021-04-22T15:02:44Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:25Z2021-09-28T19:05:25ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/dfkla2021-04-22T15:02:44.3594638Z2021-04-22T15:02:44.3594638Z0001-01-01T00:00:00sb://servicebustestskjauwsb3z.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/dfkla2021-09-28T19:05:25.4550415Z2021-09-28T19:05:25.4550415Z0001-01-01T00:00:00sb://servicebustestappwyrpk4k.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:44 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -465,24 +465,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:44Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:05:24Z2021-09-28T19:05:25ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/dfkla2021-04-22T15:02:41.9344853Z2021-04-22T15:02:44.3719549Z2021-04-22T15:02:41.9344853Z00000sb://servicebustestskjauwsb3z.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestappwyrpk4k.servicebus.windows.net/dfkla2021-09-28T19:05:24.8630409Z2021-09-28T19:05:25.4568125Z2021-09-28T19:05:24.8630409Z00000sb://servicebustestappwyrpk4k.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:44 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -497,7 +497,7 @@ interactions: PT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:41.934485Z2021-04-22T15:02:44.371954Z2021-04-22T15:02:41.934485Z00000P10675199DT2H48M5.477539SAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:05:24.86304Z2021-09-28T19:05:25.456812Z2021-09-28T19:05:24.86304Z00000P10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -506,29 +506,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1402' + - '1400' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:44Z2021-04-22T15:02:44Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:25Z2021-09-28T19:05:25ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:44.9376476Z2021-04-22T15:02:44.9376476Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:05:25.5800888Z2021-09-28T19:05:25.5800888Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:44 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -548,24 +548,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:44Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:05:24Z2021-09-28T19:05:25ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:44.9500921Z2021-04-22T15:02:41.9344853Z00000P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-09-28T19:05:24.8630409Z2021-09-28T19:05:25.5817846Z2021-09-28T19:05:24.8630409Z00000P10675199DT2H48M5.477539SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:45 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -580,7 +580,7 @@ interactions: PT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:02:41.934485Z2021-04-22T15:02:44.950092Z2021-04-22T15:02:41.934485Z00000PT10M1SAvailable' + type="application/xml">PT3M3SfalsePT11M2Struetrue014trueActive2021-09-28T19:05:24.86304Z2021-09-28T19:05:25.581784Z2021-09-28T19:05:24.86304Z00000PT10M1SAvailable' headers: Accept: - application/xml @@ -589,29 +589,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1387' + - '1385' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:45Z2021-04-22T15:02:45Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:25Z2021-09-28T19:05:25ZPT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:02:45.4844637Z2021-04-22T15:02:45.4844637Z0001-01-01T00:00:00PT10M1SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT3M3SfalsePT11M2Struetrue014trueActive2021-09-28T19:05:25.7050912Z2021-09-28T19:05:25.7050912Z0001-01-01T00:00:00PT10M1SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:45 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -631,24 +631,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:45Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:05:24Z2021-09-28T19:05:25ZPT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:45.4813476Z2021-04-22T15:02:41.9344853Z00000PT10M1SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT3M3SfalsePT11M2Struetrue014trueActive2021-09-28T19:05:24.8630409Z2021-09-28T19:05:25.7067931Z2021-09-28T19:05:24.8630409Z00000PT10M1SAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:45 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -663,7 +663,7 @@ interactions: PT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:02:41.934485Z2021-04-22T15:02:45.481347Z2021-04-22T15:02:41.934485Z00000PT15MAvailable' + type="application/xml">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:05:24.86304Z2021-09-28T19:05:25.706793Z2021-09-28T19:05:24.86304Z00000PT15MAvailable' headers: Accept: - application/xml @@ -672,29 +672,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1383' + - '1381' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: - string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:46Z2021-04-22T15:02:46Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-09-28T19:05:25Z2021-09-28T19:05:25ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:02:46.0001018Z2021-04-22T15:02:46.0001018Z0001-01-01T00:00:00PT15MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:05:25.8144198Z2021-09-28T19:05:25.8144198Z0001-01-01T00:00:00PT15MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:45 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -714,24 +714,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05 response: body: - string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:46Zsb://servicebustestappwyrpk4k.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-09-28T19:05:24Z2021-09-28T19:05:25ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:46.0126234Z2021-04-22T15:02:41.9344853Z00000PT15MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-09-28T19:05:24.8630409Z2021-09-28T19:05:25.8161249Z2021-09-28T19:05:24.8630409Z00000PT15MAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 15:02:46 GMT + - Tue, 28 Sep 2021 19:05:24 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -753,9 +753,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05 response: body: string: '' @@ -763,9 +763,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:02:46 GMT + - Tue, 28 Sep 2021 19:05:25 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -785,9 +785,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' @@ -795,9 +795,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:02:47 GMT + - Tue, 28 Sep 2021 19:05:25 GMT etag: - - '637547005612600000' + - '637684527243970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -817,9 +817,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2021-05 response: body: string: '' @@ -827,9 +827,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 15:02:47 GMT + - Tue, 28 Sep 2021 19:05:26 GMT etag: - - '637547005600900000' + - '637684527234830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_by_name.yaml index face8dc5ffb1..1d938708f42c 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_by_name.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_by_name.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:59Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:27Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:36:58 GMT + - Tue, 28 Sep 2021 19:05:27 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:37:00Z2020-09-29T08:37:00Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-09-28T19:05:28Z2021-09-28T19:05:28Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:00.183Z2020-09-29T08:37:00.42ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:28.333Z2021-09-28T19:05:28.403ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:00 GMT + - Tue, 28 Sep 2021 19:05:28 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,24 +79,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-09-29T08:37:00Z2020-09-29T08:37:00Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05topic_testaddf2021-09-28T19:05:28Z2021-09-28T19:05:28Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:00.183Z2020-09-29T08:37:00.42Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:28.333Z2021-09-28T19:05:28.403Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:01 GMT + - Tue, 28 Sep 2021 19:05:28 GMT etag: - - '637369654204200000' + - '637684527284030000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,9 +118,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05 response: body: string: '' @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:37:01 GMT + - Tue, 28 Sep 2021 19:05:29 GMT etag: - - '637369654204200000' + - '637684527284030000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_duplicate.yaml index b436771e51c5..e85417093256 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_duplicate.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_duplicate.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:02Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:29Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:01 GMT + - Tue, 28 Sep 2021 19:05:29 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:37:02Z2020-09-29T08:37:03Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-09-28T19:05:30Z2021-09-28T19:05:30Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:02.953Z2020-09-29T08:37:03ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:30.44Z2021-09-28T19:05:30.473ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:02 GMT + - Tue, 28 Sep 2021 19:05:30 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -86,22 +86,22 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: string: 409SubCode=40900. Conflict. You're requesting an operation that isn't allowed in the resource's current state. To know more - visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:f0c0ed1c-fb92-454a-8ea0-62f1f7fca110_G6, - SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-09-29T08:37:03 + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:1e820553-4060-4e18-b26c-c82f1567a06f_G5, + SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2021-09-28T19:05:30 headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:02 GMT + - Tue, 28 Sep 2021 19:05:30 GMT etag: - - '637369654230000000' + - '637684527304730000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -123,9 +123,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05 response: body: string: '' @@ -133,9 +133,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:37:03 GMT + - Tue, 28 Sep 2021 19:05:31 GMT etag: - - '637369654230000000' + - '637684527304730000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_with_topic_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_with_topic_description.yaml index 5f61f96d31c1..3fa5cc0e4bee 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_with_topic_description.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_with_topic_description.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestkuzkhxoacd.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T16:05:50Z + string: Topicshttps://servicebustestmmj5i6jihq.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T22:18:13Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 15 Apr 2021 16:05:50 GMT + - Tue, 28 Sep 2021 22:18:13 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: - string: https://servicebustestkuzkhxoacd.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-15T16:05:50Z2021-04-15T16:05:51Zservicebustestkuzkhxoacdhttps://servicebustestmmj5i6jihq.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-09-28T22:18:14Z2021-09-28T22:18:14Zservicebustestmmj5i6jihqPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:05:50.94Z2021-04-15T16:05:51.077ZfalsePT10MtrueAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-09-28T22:18:14.38Z2021-09-28T22:18:14.787ZfalsePT10MtrueAvailablefalsetrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 16:05:51 GMT + - Tue, 28 Sep 2021 22:18:14 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,24 +79,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestkuzkhxoacd.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2021-04-15T16:05:50Z2021-04-15T16:05:51Zservicebustestkuzkhxoacdhttps://servicebustestmmj5i6jihq.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-09-28T22:18:14Z2021-09-28T22:18:14Zservicebustestmmj5i6jihqPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:05:50.94Z2021-04-15T16:05:51.077Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-09-28T22:18:14.38Z2021-09-28T22:18:14.787Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 16:05:51 GMT + - Tue, 28 Sep 2021 22:18:14 GMT etag: - - '637540995510770000' + - '637684642947870000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -123,21 +123,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/djsadq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/djsadq?api-version=2021-05 response: body: - string: https://servicebustestkuzkhxoacd.servicebus.windows.net/djsadq?api-version=2017-04djsadq2021-04-15T16:05:52Z2021-04-15T16:05:54Zservicebustestkuzkhxoacdhttps://servicebustestmmj5i6jihq.servicebus.windows.net/djsadq?api-version=2021-05djsadq2021-09-28T22:18:15Z2021-09-28T22:18:15Zservicebustestmmj5i6jihqPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:05:52.377Z2021-04-15T16:05:54.913ZfalsePT10MtrueAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-09-28T22:18:15.693Z2021-09-28T22:18:15.87ZfalsePT10MtrueAvailablefalsetrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 16:05:55 GMT + - Tue, 28 Sep 2021 22:18:15 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -157,24 +157,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/djsadq?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/djsadq?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestkuzkhxoacd.servicebus.windows.net/djsadq?enrich=false&api-version=2017-04djsadq2021-04-15T16:05:52Z2021-04-15T16:05:54Zservicebustestkuzkhxoacdhttps://servicebustestmmj5i6jihq.servicebus.windows.net/djsadq?enrich=false&api-version=2021-05djsadq2021-09-28T22:18:15Z2021-09-28T22:18:15Zservicebustestmmj5i6jihqPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:05:52.377Z2021-04-15T16:05:54.913Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-09-28T22:18:15.693Z2021-09-28T22:18:15.87Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 15 Apr 2021 16:05:55 GMT + - Tue, 28 Sep 2021 22:18:15 GMT etag: - - '637540995549130000' + - '637684642958700000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -184,6 +184,45 @@ interactions: status: code: 200 message: OK +- request: + body: ' + + 1024' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '324' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/famviq?api-version=2021-05 + response: + body: + string: 400SubCode=40000. Bad Request. To know more + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:925506b1-5e6a-481f-b349-9c67dfdce5ef_G0, + SystemTracker:servicebustestsbname.servicebus.windows.net:famviq, Timestamp:2021-09-28T22:18:16 + headers: + content-type: + - application/xml; charset=utf-8 + date: + - Tue, 28 Sep 2021 22:18:16 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 400 + message: Bad Request - request: body: null headers: @@ -196,9 +235,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 response: body: string: '' @@ -206,9 +245,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 16:05:56 GMT + - Tue, 28 Sep 2021 22:18:16 GMT etag: - - '637540995510770000' + - '637684642947870000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -228,9 +267,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/djsadq?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/djsadq?api-version=2021-05 response: body: string: '' @@ -238,9 +277,9 @@ interactions: content-length: - '0' date: - - Thu, 15 Apr 2021 16:05:57 GMT + - Tue, 28 Sep 2021 22:18:17 GMT etag: - - '637540995549130000' + - '637684642958700000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_delete.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_delete.yaml index 5c7720f5c072..430177ca6202 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_delete.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_delete.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:07Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:36Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:07 GMT + - Tue, 28 Sep 2021 19:05:36 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:05:37Z2021-09-28T19:05:37Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:37.33Z2021-09-28T19:05:37.37ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:08 GMT + - Tue, 28 Sep 2021 19:05:37 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,24 +79,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:09Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkTopicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:38Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:05:37Z2021-09-28T19:05:37Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:37.33Z2021-09-28T19:05:37.37Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:09 GMT + - Tue, 28 Sep 2021 19:05:38 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -121,21 +121,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:05:38Z2021-09-28T19:05:38Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:38.703Z2021-09-28T19:05:38.747ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:10 GMT + - Tue, 28 Sep 2021 19:05:39 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -155,30 +155,30 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:10Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkTopicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:39Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:05:37Z2021-09-28T19:05:37Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:37.33Z2021-09-28T19:05:37.37Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:05:38Z2021-09-28T19:05:38Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:38.703Z2021-09-28T19:05:38.747Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:10 GMT + - Tue, 28 Sep 2021 19:05:39 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -196,24 +196,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05test_topic2021-09-28T19:05:37Z2021-09-28T19:05:37Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:37.33Z2021-09-28T19:05:37.37Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:10 GMT + - Tue, 28 Sep 2021 19:05:39 GMT etag: - - '637369654283630000' + - '637684527373700000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -235,9 +235,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: string: '' @@ -245,9 +245,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:37:11 GMT + - Tue, 28 Sep 2021 19:05:40 GMT etag: - - '637369654283630000' + - '637684527373700000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -265,24 +265,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:12Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkTopicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:40Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-09-28T19:05:38Z2021-09-28T19:05:38Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:38.703Z2021-09-28T19:05:38.747Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:11 GMT + - Tue, 28 Sep 2021 19:05:40 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -300,24 +300,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2021-05txt/.-_1232021-09-28T19:05:38Z2021-09-28T19:05:38Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:38.703Z2021-09-28T19:05:38.747Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:12 GMT + - Tue, 28 Sep 2021 19:05:40 GMT etag: - - '637369654299500000' + - '637684527387470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -339,9 +339,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05 response: body: string: '' @@ -349,9 +349,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:37:12 GMT + - Tue, 28 Sep 2021 19:05:41 GMT etag: - - '637369654299500000' + - '637684527387470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -369,18 +369,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:13Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:41Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:13 GMT + - Tue, 28 Sep 2021 19:05:41 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_properties_basic.yaml index 0e9fb972de57..fbbf7609d14c 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_properties_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_properties_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:21Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:41Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:08:20 GMT + - Tue, 28 Sep 2021 19:05:41 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:08:21Z2020-08-17T08:08:21Zservicebustest32ip2wgoaahttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:05:42Z2021-09-28T19:05:42Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:21.727Z2020-08-17T08:08:21.76ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:42.38Z2021-09-28T19:05:42.443ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:08:21 GMT + - Tue, 28 Sep 2021 19:05:42 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -79,24 +79,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-08-17T08:08:21Z2020-08-17T08:08:21Zservicebustest32ip2wgoaahttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05test_topic2021-09-28T19:05:42Z2021-09-28T19:05:42Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:21.727Z2020-08-17T08:08:21.76Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:42.38Z2021-09-28T19:05:42.443Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:08:21 GMT + - Tue, 28 Sep 2021 19:05:42 GMT etag: - - '637332485017600000' + - '637684527424430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,9 +118,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: string: '' @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:22 GMT + - Tue, 28 Sep 2021 19:05:42 GMT etag: - - '637332485017600000' + - '637684527424430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list.yaml index 1aab1635f415..b6b555d96112 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:17Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:44Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:17 GMT + - Tue, 28 Sep 2021 19:05:44 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -38,18 +38,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:18Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:44Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:18 GMT + - Tue, 28 Sep 2021 19:05:44 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -74,21 +74,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:37:18Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic_1?api-version=2021-05test_topic_12021-09-28T19:05:45Z2021-09-28T19:05:45Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:18.957Z2020-09-29T08:37:19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:45.08Z2021-09-28T19:05:45.14ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:19 GMT + - Tue, 28 Sep 2021 19:05:45 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -115,21 +115,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:37:19Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic_2?api-version=2021-05test_topic_22021-09-28T19:05:45Z2021-09-28T19:05:46Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:19.8Z2020-09-29T08:37:19.843ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:45.977Z2021-09-28T19:05:46.05ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:20 GMT + - Tue, 28 Sep 2021 19:05:46 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -149,30 +149,30 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:20Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:37:18Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkTopicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:47Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic_1?api-version=2021-05test_topic_12021-09-28T19:05:45Z2021-09-28T19:05:45Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:18.957Z2020-09-29T08:37:19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:37:19Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:45.08Z2021-09-28T19:05:45.14Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256https://servicebustestappwyrpk4k.servicebus.windows.net/test_topic_2?api-version=2021-05test_topic_22021-09-28T19:05:45Z2021-09-28T19:05:46Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:19.8Z2020-09-29T08:37:19.843Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:45.977Z2021-09-28T19:05:46.05Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:20 GMT + - Tue, 28 Sep 2021 19:05:46 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -192,9 +192,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2021-05 response: body: string: '' @@ -202,9 +202,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:37:21 GMT + - Tue, 28 Sep 2021 19:05:47 GMT etag: - - '637369654390000000' + - '637684527451400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -224,9 +224,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2021-05 response: body: string: '' @@ -234,9 +234,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:37:21 GMT + - Tue, 28 Sep 2021 19:05:48 GMT etag: - - '637369654398430000' + - '637684527460500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -254,18 +254,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:22Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:48Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:22 GMT + - Tue, 28 Sep 2021 19:05:48 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_properties.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_properties.yaml index ad7f5d46fb60..79105e34de3a 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_properties.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_properties.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:09Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:49Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 18 Aug 2020 21:12:08 GMT + - Tue, 28 Sep 2021 19:05:49 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -38,18 +38,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:10Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:49Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 18 Aug 2020 21:12:09 GMT + - Tue, 28 Sep 2021 19:05:49 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -67,18 +67,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:10Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:50Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 18 Aug 2020 21:12:09 GMT + - Tue, 28 Sep 2021 19:05:50 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -103,21 +103,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: - string: https://servicebustestbsudkdyafp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-18T21:12:11Z2020-08-18T21:12:11Zservicebustestbsudkdyafphttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:05:50Z2021-09-28T19:05:50Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-18T21:12:11.09Z2020-08-18T21:12:11.17ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:50.59Z2021-09-28T19:05:50.613ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 18 Aug 2020 21:12:10 GMT + - Tue, 28 Sep 2021 19:05:50 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -137,24 +137,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:11Zhttps://servicebustestbsudkdyafp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-18T21:12:11Z2020-08-18T21:12:11ZservicebustestbsudkdyafpTopicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:51Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:05:50Z2021-09-28T19:05:50Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-18T21:12:11.09Z2020-08-18T21:12:11.17Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:50.59Z2021-09-28T19:05:50.613Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 18 Aug 2020 21:12:11 GMT + - Tue, 28 Sep 2021 19:05:51 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -172,24 +172,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:12Zhttps://servicebustestbsudkdyafp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-18T21:12:11Z2020-08-18T21:12:11ZservicebustestbsudkdyafpTopicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:52Zhttps://servicebustestappwyrpk4k.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-09-28T19:05:50Z2021-09-28T19:05:50Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-18T21:12:11.09Z2020-08-18T21:12:11.17Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:50.59Z2021-09-28T19:05:50.613Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 18 Aug 2020 21:12:11 GMT + - Tue, 28 Sep 2021 19:05:51 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,9 +209,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05 response: body: string: '' @@ -219,9 +219,9 @@ interactions: content-length: - '0' date: - - Tue, 18 Aug 2020 21:12:12 GMT + - Tue, 28 Sep 2021 19:05:52 GMT etag: - - '637333819311700000' + - '637684527506130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -239,18 +239,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:13Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:52Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 18 Aug 2020 21:12:12 GMT + - Tue, 28 Sep 2021 19:05:52 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_premium_create_with_topic_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_premium_create_with_topic_description.yaml new file mode 100644 index 000000000000..1e4f732f8c8c --- /dev/null +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_premium_create_with_topic_description.yaml @@ -0,0 +1,424 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 + response: + body: + string: Topicshttps://servicebustestmstsf53wi2.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:53Z + headers: + content-type: + - application/atom+xml;type=feed;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:05:52 GMT + server: + - Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: ' + + PT11M3072PT12MtruePT10M12345' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '605' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-09-28T19:05:54Z2021-09-28T19:05:54Zservicebustestmstsf53wi2PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:05:54.023Z2021-09-28T19:05:54.233ZtruePT10MfalseAvailablefalsefalse12345 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:05:53 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-09-28T19:05:54Z2021-09-28T19:05:54Zservicebustestmstsf53wi2PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:05:54.023Z2021-09-28T19:05:54.233Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse12345 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:05:54 GMT + etag: + - '637684527542330000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: ' + + PT11M3072PT12MtruePT10M' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '545' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/cdasmc?api-version=2021-05cdasmc2021-09-28T19:05:55Z2021-09-28T19:05:55Zservicebustestmstsf53wi2PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:05:55.18Z2021-09-28T19:05:55.257ZtruePT10MfalseAvailablefalsefalse1024 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:05:54 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/cdasmc?enrich=false&api-version=2021-05cdasmc2021-09-28T19:05:55Z2021-09-28T19:05:55Zservicebustestmstsf53wi2PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:05:55.18Z2021-09-28T19:05:55.257Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse1024 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:05:54 GMT + etag: + - '637684527552570000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: ' + + PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:05:55.180Z2021-09-28T19:05:55.257Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsefalse54321' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1708' + Content-Type: + - application/atom+xml + If-Match: + - '*' + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/cdasmc?api-version=2021-05cdasmc2021-09-28T19:05:55Zservicebustestmstsf53wi2PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:05:55.18Z2021-09-28T19:05:55.257Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse54321 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:05:55 GMT + etag: + - '637684527552570000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: GET + uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?enrich=false&api-version=2021-05 + response: + body: + string: https://servicebustestmstsf53wi2.servicebus.windows.net/cdasmc?enrich=false&api-version=2021-05cdasmc2021-09-28T19:05:55Z2021-09-28T19:05:55Zservicebustestmstsf53wi2PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:05:55.18Z2021-09-28T19:05:55.787Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse54321 + headers: + content-type: + - application/atom+xml;type=entry;charset=utf-8 + date: + - Tue, 28 Sep 2021 19:05:55 GMT + etag: + - '637684527557870000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 200 + message: OK +- request: + body: ' + + 1023' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '324' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05 + response: + body: + string: '400SubCode=40000. The property value for + ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace + ''servicebustestsbname'' is using ''Premium'' tier. + + Parameter name: MaxMessageSizeInKilobytes + + Actual value was 1023. TrackingId:85d12f2f-ee1a-4d1f-b53d-25af44f580bb_G7, + SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-09-28T19:05:56' + headers: + content-type: + - application/xml; charset=utf-8 + date: + - Tue, 28 Sep 2021 19:05:55 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 400 + message: Bad Request +- request: + body: ' + + 102401' + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '326' + Content-Type: + - application/atom+xml + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: PUT + uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05 + response: + body: + string: '400SubCode=40000. The property value for + ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace + ''servicebustestsbname'' is using ''Premium'' tier. + + Parameter name: MaxMessageSizeInKilobytes + + Actual value was 102401. TrackingId:ca1b13be-8b58-4578-8c93-8dcd4e09f418_G7, + SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-09-28T19:05:56' + headers: + content-type: + - application/xml; charset=utf-8 + date: + - Tue, 28 Sep 2021 19:05:56 GMT + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + transfer-encoding: + - chunked + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Tue, 28 Sep 2021 19:05:56 GMT + etag: + - '637684527542330000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) + method: DELETE + uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?api-version=2021-05 + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Tue, 28 Sep 2021 19:05:58 GMT + etag: + - '637684527557870000' + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000 + status: + code: 200 + message: OK +version: 1 diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_error.yaml index adbecf008433..2365386fe169 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_error.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_error.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrzdukahnat.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:52:13Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:05:58Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 02 Mar 2021 19:52:12 GMT + - Tue, 28 Sep 2021 19:05:58 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05 response: body: - string: https://servicebustestrzdukahnat.servicebus.windows.net/dfjdfj?api-version=2017-04dfjdfj2021-03-02T19:52:13Z2021-03-02T19:52:13Zservicebustestrzdukahnathttps://servicebustestappwyrpk4k.servicebus.windows.net/dfjdfj?api-version=2021-05dfjdfj2021-09-28T19:05:59Z2021-09-28T19:05:59Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:52:13.657Z2021-03-02T19:52:13.697ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:05:59.11Z2021-09-28T19:05:59.183ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 02 Mar 2021 19:52:13 GMT + - Tue, 28 Sep 2021 19:05:59 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -81,9 +81,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05 response: body: string: '' @@ -91,9 +91,9 @@ interactions: content-length: - '0' date: - - Tue, 02 Mar 2021 19:52:13 GMT + - Tue, 28 Sep 2021 19:05:59 GMT etag: - - '637503115336970000' + - '637684527591830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_success.yaml index c8ca6b41ba55..9a17dc715098 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_success.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustest5xccvzoibz.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T14:45:40Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:00Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 22 Apr 2021 14:45:40 GMT + - Tue, 28 Sep 2021 19:06:00 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:45:41Z2021-04-22T14:45:41Zservicebustest5xccvzoibzhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:06:01Z2021-09-28T19:06:01Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:45:41.447Z2021-04-22T14:45:41.48ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:01.13Z2021-09-28T19:06:01.17ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:45:41 GMT + - Tue, 28 Sep 2021 19:06:01 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse256' headers: Accept: - application/xml @@ -83,29 +83,29 @@ interactions: Connection: - keep-alive Content-Length: - - '882' + - '940' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:45:42Zservicebustest5xccvzoibzhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:06:01Zservicebustestappwyrpk4kPT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:45:41 GMT + - Tue, 28 Sep 2021 19:06:01 GMT etag: - - '637546995414800000' + - '637684527611700000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -125,24 +125,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:45:41Z2021-04-22T14:45:42Zservicebustest5xccvzoibzhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:06:01Z2021-09-28T19:06:01Zservicebustestappwyrpk4kPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:45:41.447Z2021-04-22T14:45:42.17Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:01.13Z2021-09-28T19:06:01.677Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:45:42 GMT + - Tue, 28 Sep 2021 19:06:01 GMT etag: - - '637546995421700000' + - '637684527616770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -157,7 +157,7 @@ interactions: PT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue' + />ActivetruePT10MfalseAvailabletrue256' headers: Accept: - application/xml @@ -166,29 +166,29 @@ interactions: Connection: - keep-alive Content-Length: - - '862' + - '920' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:45:42Zservicebustest5xccvzoibzhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:06:01Zservicebustestappwyrpk4kPT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:45:42 GMT + - Tue, 28 Sep 2021 19:06:01 GMT etag: - - '637546995421700000' + - '637684527616770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -208,24 +208,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:45:41Z2021-04-22T14:45:42Zservicebustest5xccvzoibzhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:06:01Z2021-09-28T19:06:01Zservicebustestappwyrpk4kPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:45:41.447Z2021-04-22T14:45:42.717Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:01.13Z2021-09-28T19:06:01.897Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:45:42 GMT + - Tue, 28 Sep 2021 19:06:01 GMT etag: - - '637546995427170000' + - '637684527618970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -240,7 +240,7 @@ interactions: PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse' + />ActivefalsePT14MfalseAvailablefalse256' headers: Accept: - application/xml @@ -249,29 +249,29 @@ interactions: Connection: - keep-alive Content-Length: - - '865' + - '923' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: - string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:45:43Zservicebustest5xccvzoibzhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-09-28T19:06:02Zservicebustestappwyrpk4kPT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:45:42 GMT + - Tue, 28 Sep 2021 19:06:02 GMT etag: - - '637546995427170000' + - '637684527618970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -291,24 +291,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05 response: body: - string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:45:41Z2021-04-22T14:45:43Zservicebustest5xccvzoibzhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-09-28T19:06:01Z2021-09-28T19:06:02Zservicebustestappwyrpk4kPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:45:41.447Z2021-04-22T14:45:43.307Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-09-28T19:06:01.13Z2021-09-28T19:06:02.173Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:45:43 GMT + - Tue, 28 Sep 2021 19:06:02 GMT etag: - - '637546995433070000' + - '637684527621730000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -330,9 +330,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05 response: body: string: '' @@ -340,9 +340,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 14:45:44 GMT + - Tue, 28 Sep 2021 19:06:02 GMT etag: - - '637546995433070000' + - '637684527621730000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_invalid.yaml index 4da64e4868d2..e352c0ba82ef 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_invalid.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_invalid.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:28Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:03Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:28 GMT + - Tue, 28 Sep 2021 19:06:03 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: - string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:37:28Z2020-09-29T08:37:28Zservicebustestrm7a5oi5hkhttps://servicebustestappwyrpk4k.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-09-28T19:06:03Z2021-09-28T19:06:03Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:03.83Z2021-09-28T19:06:03.867ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:29 GMT + - Tue, 28 Sep 2021 19:06:04 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: P10675199DT2H48M5.477539S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2021-09-28T19:06:03.830Z2021-09-28T19:06:03.867ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256' headers: Accept: - application/xml @@ -83,26 +83,26 @@ interactions: Connection: - keep-alive Content-Length: - - '1195' + - '1253' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2021-05 response: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:288e2e47-7cd2-4915-880a-8b1f3ca7f8b7_G14, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, - Timestamp:2020-09-29T08:37:30 + . TrackingId:fc204950-20c5-4dfc-9fb3-add4016980b0_G1, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, + Timestamp:2021-09-28T19:06:04 headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:29 GMT + - Tue, 28 Sep 2021 19:06:04 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -117,7 +117,7 @@ interactions: P10675199DT2H48M5.477539S1024falseP25Dtrue0falsefalseActive2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2021-09-28T19:06:03.830Z2021-09-28T19:06:03.867ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256' headers: Accept: - application/xml @@ -126,15 +126,15 @@ interactions: Connection: - keep-alive Content-Length: - - '1194' + - '1252' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: string: '400SubCode=40000. The value supplied must @@ -142,15 +142,15 @@ interactions: Parameter name: DuplicateDetectionHistoryTimeWindow - Actual value was 25.00:00:00. TrackingId:c99bb746-a2c0-4777-a914-4ef0d5cd8229_G14, - SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-09-29T08:37:30' + Actual value was 25.00:00:00. TrackingId:a25d0d53-26c5-437c-8f6c-dbc3fd1dc344_G1, + SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2021-09-28T19:06:05' headers: content-type: - application/xml; charset=utf-8 date: - - Tue, 29 Sep 2020 08:37:30 GMT + - Tue, 28 Sep 2021 19:06:04 GMT etag: - - '637369654489670000' + - '637684527638670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -172,9 +172,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05 response: body: string: '' @@ -182,9 +182,9 @@ interactions: content-length: - '0' date: - - Tue, 29 Sep 2020 08:37:30 GMT + - Tue, 28 Sep 2021 19:06:05 GMT etag: - - '637369654489670000' + - '637684527638670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_success.yaml index ac87b0b32eb1..2083d7fda2da 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_success.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_success.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05 response: body: - string: Topicshttps://servicebustestosez4o2u7d.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T14:40:20Z + string: Topicshttps://servicebustestappwyrpk4k.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-09-28T19:06:06Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:19 GMT + - Tue, 28 Sep 2021 19:06:05 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -45,21 +45,21 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:20Zservicebustestosez4o2u7dhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:06:06Z2021-09-28T19:06:06Zservicebustestappwyrpk4kP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:20.787ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:06.553Z2021-09-28T19:06:06.597ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:20 GMT + - Tue, 28 Sep 2021 19:06:06 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:40:20.720Z2021-04-22T14:40:20.787ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2021-09-28T19:06:06.553Z2021-09-28T19:06:06.597ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256' headers: Accept: - application/xml @@ -83,29 +83,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1174' + - '1232' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:21Zservicebustestosez4o2u7dhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:06:07Zservicebustestappwyrpk4kPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:20.787ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:06.553Z2021-09-28T19:06:06.597ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:21 GMT + - Tue, 28 Sep 2021 19:06:06 GMT etag: - - '637546992207870000' + - '637684527665970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -125,24 +125,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:21Zservicebustestosez4o2u7dhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:06:06Z2021-09-28T19:06:07Zservicebustestappwyrpk4kPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:21.46Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-09-28T19:06:06.553Z2021-09-28T19:06:07.04Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:21 GMT + - Tue, 28 Sep 2021 19:06:06 GMT etag: - - '637546992214600000' + - '637684527670400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -158,7 +158,7 @@ interactions: PT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:40:20.720Z2021-04-22T14:40:21.460Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue' + />Active2021-09-28T19:06:06.553Z2021-09-28T19:06:07.040Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue256' headers: Accept: - application/xml @@ -167,30 +167,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1647' + - '1705' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:22Zservicebustestosez4o2u7dhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:06:07Zservicebustestappwyrpk4kPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:21.46Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:06.553Z2021-09-28T19:06:07.04Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:21 GMT + - Tue, 28 Sep 2021 19:06:06 GMT etag: - - '637546992214600000' + - '637684527670400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -210,24 +210,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:21Zservicebustestosez4o2u7dhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:06:06Z2021-09-28T19:06:07Zservicebustestappwyrpk4kPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:21.99Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-09-28T19:06:06.553Z2021-09-28T19:06:07.283Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:22 GMT + - Tue, 28 Sep 2021 19:06:06 GMT etag: - - '637546992219900000' + - '637684527672830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -243,7 +243,7 @@ interactions: PT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:40:20.720Z2021-04-22T14:40:21.990Z0001-01-01T00:00:00.000Ztrue000000PT10M1SfalseAvailablefalsetrue' + />Active2021-09-28T19:06:06.553Z2021-09-28T19:06:07.283Z0001-01-01T00:00:00.000Ztrue000000PT10M1SfalseAvailablefalsetrue256' headers: Accept: - application/xml @@ -252,30 +252,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1653' + - '1711' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:22Zservicebustestosez4o2u7dhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:06:07Zservicebustestappwyrpk4kPT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:21.99Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M2S3072falsePT12M3Strue0falsefalseActive2021-09-28T19:06:06.553Z2021-09-28T19:06:07.283Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:22 GMT + - Tue, 28 Sep 2021 19:06:06 GMT etag: - - '637546992219900000' + - '637684527672830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -295,24 +295,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:22Zservicebustestosez4o2u7dhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:06:06Z2021-09-28T19:06:07Zservicebustestappwyrpk4kPT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:22.517Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M2S3072falsePT12M3Strue0falsefalseActive2021-09-28T19:06:06.553Z2021-09-28T19:06:07.42Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:22 GMT + - Tue, 28 Sep 2021 19:06:06 GMT etag: - - '637546992225170000' + - '637684527674200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -328,7 +328,7 @@ interactions: PT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:40:20.720Z2021-04-22T14:40:22.517Z0001-01-01T00:00:00.000Zfalse000000PT14MfalseAvailablefalsefalse' + />Active2021-09-28T19:06:06.553Z2021-09-28T19:06:07.420Z0001-01-01T00:00:00.000Zfalse000000PT14MfalseAvailablefalsefalse256' headers: Accept: - application/xml @@ -337,30 +337,30 @@ interactions: Connection: - keep-alive Content-Length: - - '1650' + - '1708' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: PUT - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: - string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:23Zservicebustestosez4o2u7dhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-09-28T19:06:07Zservicebustestappwyrpk4kPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:22.517Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-09-28T19:06:06.553Z2021-09-28T19:06:07.42Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:22 GMT + - Tue, 28 Sep 2021 19:06:06 GMT etag: - - '637546992225170000' + - '637684527674200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -380,24 +380,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: GET - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05 response: body: - string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:23Zservicebustestosez4o2u7dhttps://servicebustestappwyrpk4k.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-09-28T19:06:06Z2021-09-28T19:06:07Zservicebustestappwyrpk4kPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:23.067Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-09-28T19:06:06.553Z2021-09-28T19:06:07.637Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 22 Apr 2021 14:40:23 GMT + - Tue, 28 Sep 2021 19:06:06 GMT etag: - - '637546992230670000' + - '637684527676370000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -419,9 +419,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0) + - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0) method: DELETE - uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 + uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05 response: body: string: '' @@ -429,9 +429,9 @@ interactions: content-length: - '0' date: - - Thu, 22 Apr 2021 14:40:23 GMT + - Tue, 28 Sep 2021 19:06:07 GMT etag: - - '637546992230670000' + - '637684527676370000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_queues.py b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_queues.py index effac5e2fc8c..a0e8db371fe8 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_queues.py +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_queues.py @@ -28,7 +28,8 @@ MgmtQueueListRuntimeInfoTestHelper, run_test_mgmt_list_with_parameters, run_test_mgmt_list_with_negative_parameters, - clear_queues + clear_queues, + clear_topics ) _logger = get_logger(logging.DEBUG) @@ -223,7 +224,6 @@ def test_mgmt_queue_create_with_invalid_name(self, servicebus_namespace_connecti with pytest.raises(msrest.exceptions.ValidationError): mgmt_service.create_queue('') - @CachedResourceGroupPreparer(name_prefix='servicebustest') @CachedServiceBusNamespacePreparer(name_prefix='servicebustest') def test_mgmt_queue_create_with_queue_description(self, servicebus_namespace_connection_string, **kwargs): @@ -231,6 +231,7 @@ def test_mgmt_queue_create_with_queue_description(self, servicebus_namespace_con clear_queues(mgmt_service) queue_name = "iweidk" queue_name_2 = "vladsk" + queue_name_3 = "famviq" topic_name = "aghadh" #TODO: Why don't we have an input model (queueOptions? as superclass of QueueProperties?) and output model to not show these params? @@ -271,6 +272,12 @@ def test_mgmt_queue_create_with_queue_description(self, servicebus_namespace_con requires_session=True ) + with pytest.raises(HttpResponseError): + mgmt_service.create_queue( + queue_name_3, + max_message_size_in_kilobytes=1024 # basic/standard ties does not support + ) + try: queue = mgmt_service.get_queue(queue_name) assert queue.name == queue_name @@ -314,6 +321,104 @@ def test_mgmt_queue_create_with_queue_description(self, servicebus_namespace_con mgmt_service.delete_topic(topic_name) mgmt_service.close() + @CachedResourceGroupPreparer(name_prefix='servicebustest') + @CachedServiceBusNamespacePreparer(name_prefix='servicebustest', sku='Premium') + def test_mgmt_queue_premium_create_with_queue_description(self, servicebus_namespace_connection_string, **kwargs): + mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string) + clear_queues(mgmt_service) + queue_name = "iweidk" + queue_name_2 = "cpqmva" + queue_name_3 = "rekocd" + + mgmt_service.create_queue( + queue_name, + auto_delete_on_idle=datetime.timedelta(minutes=10), + dead_lettering_on_message_expiration=True, + default_message_time_to_live=datetime.timedelta(minutes=11), + duplicate_detection_history_time_window=datetime.timedelta(minutes=12), + enable_batched_operations=True, + #enable_express=True, # not enabled on premium + #enable_partitioning=True, # not enabled on premium + lock_duration=datetime.timedelta(seconds=13), + max_delivery_count=14, + max_size_in_megabytes=3072, + #requires_duplicate_detection=True, # not enabled on premium + requires_session=True, + max_message_size_in_kilobytes=12345 + ) + + mgmt_service.create_queue( + queue_name_2, + auto_delete_on_idle="PT10M1S", + dead_lettering_on_message_expiration=True, + default_message_time_to_live="PT11M2S", + duplicate_detection_history_time_window="PT12M3S", + enable_batched_operations=True, + lock_duration="PT13S", + max_delivery_count=14, + max_size_in_megabytes=3072, + requires_session=True + ) # default max_message_size_in_kilobytes is 1024 + + with pytest.raises(HttpResponseError): + mgmt_service.create_queue( + queue_name_3, + max_message_size_in_kilobytes=1023 # min allowed is 1024 + ) + + with pytest.raises(HttpResponseError): + mgmt_service.create_queue( + queue_name_3, + max_message_size_in_kilobytes=102401 # max allowed is 102400 + ) + + try: + queue = mgmt_service.get_queue(queue_name) + assert queue.name == queue_name + assert queue.auto_delete_on_idle == datetime.timedelta(minutes=10) + assert queue.dead_lettering_on_message_expiration == True + assert queue.default_message_time_to_live == datetime.timedelta(minutes=11) + assert queue.duplicate_detection_history_time_window == datetime.timedelta(minutes=12) + assert queue.enable_batched_operations == True + # enable_express is not supported for the premium sku, see doc + # https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-premium-messaging#express-entities + # assert queue.enable_express == True + # partitioning is not available for the the premium sku, see doc + # https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-partitioning + # assert queue.enable_partitioning == True + assert queue.lock_duration == datetime.timedelta(seconds=13) + assert queue.max_delivery_count == 14 + assert queue.max_size_in_megabytes % 3072 == 0 # TODO: In my local test, I don't see a multiple of the input number. To confirm + # This is disabled due to the following error: + # azure.core.exceptions.HttpResponseError: SubCode=40000. Both DelayedPersistence property and RequiresDuplicateDetection property cannot be enabled together. + # To know more visit https://aka.ms/sbResourceMgrExceptions. + #assert queue.requires_duplicate_detection == True + assert queue.requires_session == True + assert queue.max_message_size_in_kilobytes == 12345 + + queue_2 = mgmt_service.get_queue(queue_name_2) + assert queue_2.name == queue_name_2 + assert queue_2.auto_delete_on_idle == datetime.timedelta(minutes=10, seconds=1) + assert queue_2.dead_lettering_on_message_expiration == True + assert queue_2.default_message_time_to_live == datetime.timedelta(minutes=11, seconds=2) + assert queue_2.duplicate_detection_history_time_window == datetime.timedelta(minutes=12, seconds=3) + assert queue_2.enable_batched_operations == True + assert queue_2.lock_duration == datetime.timedelta(seconds=13) + assert queue_2.max_delivery_count == 14 + assert queue_2.max_size_in_megabytes % 3072 == 0 + assert queue_2.requires_session == True + assert queue_2.max_message_size_in_kilobytes == 1024 + + queue_2.max_message_size_in_kilobytes = 54321 + mgmt_service.update_queue(queue_2) + queue_2_new = mgmt_service.get_queue(queue_name_2) + assert queue_2_new.max_message_size_in_kilobytes == 54321 + + finally: + mgmt_service.delete_queue(queue_name) + mgmt_service.delete_queue(queue_name_2) + mgmt_service.close() + @CachedResourceGroupPreparer(name_prefix='servicebustest') @CachedServiceBusNamespacePreparer(name_prefix='servicebustest') def test_mgmt_queue_create_duplicate(self, servicebus_namespace_connection_string, **kwargs): diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_topics.py b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_topics.py index bf5eca8c1981..21752e60210f 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_topics.py +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_topics.py @@ -47,6 +47,8 @@ def test_mgmt_topic_create_with_topic_description(self, servicebus_namespace_con clear_topics(mgmt_service) topic_name = "iweidk" topic_name_2 = "djsadq" + topic_name_3 = "famviq" + try: mgmt_service.create_topic( topic_name=topic_name, @@ -88,6 +90,85 @@ def test_mgmt_topic_create_with_topic_description(self, servicebus_namespace_con assert topic_2.enable_partitioning assert topic_2.max_size_in_megabytes % 3072 == 0 + with pytest.raises(HttpResponseError): + mgmt_service.create_topic( + topic_name_3, + max_message_size_in_kilobytes=1024 # basic/standard ties does not support + ) + + finally: + mgmt_service.delete_topic(topic_name) + mgmt_service.delete_topic(topic_name_2) + + @CachedResourceGroupPreparer(name_prefix='servicebustest') + @CachedServiceBusNamespacePreparer(name_prefix='servicebustest', sku='Premium') + def test_mgmt_topic_premium_create_with_topic_description(self, servicebus_namespace_connection_string, **kwargs): + mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string) + clear_topics(mgmt_service) + topic_name = "iweidk" + topic_name_2 = "cdasmc" + topic_name_3 = "rekocd" + try: + mgmt_service.create_topic( + topic_name=topic_name, + auto_delete_on_idle=datetime.timedelta(minutes=10), + default_message_time_to_live=datetime.timedelta(minutes=11), + duplicate_detection_history_time_window=datetime.timedelta(minutes=12), + enable_batched_operations=True, + #enable_express=True, + #enable_partitioning=True, + max_size_in_megabytes=3072, + max_message_size_in_kilobytes=12345 + ) + topic = mgmt_service.get_topic(topic_name) + assert topic.name == topic_name + assert topic.auto_delete_on_idle == datetime.timedelta(minutes=10) + assert topic.default_message_time_to_live == datetime.timedelta(minutes=11) + assert topic.duplicate_detection_history_time_window == datetime.timedelta(minutes=12) + assert topic.enable_batched_operations + # enable_express is not supported for the premium sku, see doc + # https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-premium-messaging#express-entities + # assert topic.enable_express + # partitioning is not available for the the premium sku, see doc + # https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-partitioning + # assert topic.enable_partitioning + assert topic.max_size_in_megabytes % 3072 == 0 + assert topic.max_message_size_in_kilobytes == 12345 + + mgmt_service.create_topic( + topic_name=topic_name_2, + auto_delete_on_idle="PT10M", + default_message_time_to_live="PT11M", + duplicate_detection_history_time_window="PT12M", + enable_batched_operations=True, + max_size_in_megabytes=3072 + ) + topic_2 = mgmt_service.get_topic(topic_name_2) + assert topic_2.name == topic_name_2 + assert topic_2.auto_delete_on_idle == datetime.timedelta(minutes=10) + assert topic_2.default_message_time_to_live == datetime.timedelta(minutes=11) + assert topic_2.duplicate_detection_history_time_window == datetime.timedelta(minutes=12) + assert topic_2.enable_batched_operations + assert topic_2.max_size_in_megabytes % 3072 == 0 + assert topic_2.max_message_size_in_kilobytes == 1024 + + topic_2.max_message_size_in_kilobytes = 54321 + mgmt_service.update_topic(topic_2) + topic_2_new = mgmt_service.get_topic(topic_name_2) + assert topic_2_new.max_message_size_in_kilobytes == 54321 + + with pytest.raises(HttpResponseError): + mgmt_service.create_topic( + topic_name=topic_name_3, + max_message_size_in_kilobytes=1023 + ) + + with pytest.raises(HttpResponseError): + mgmt_service.create_topic( + topic_name=topic_name_3, + max_message_size_in_kilobytes=102401 + ) + finally: mgmt_service.delete_topic(topic_name) mgmt_service.delete_topic(topic_name_2)