From 4fad0de8259fa9e2a590dfa8b977ebcbb7aee598 Mon Sep 17 00:00:00 2001 From: Kieran Brantner-Magee Date: Tue, 8 Sep 2020 10:46:32 -0700 Subject: [PATCH 1/5] Initial conversion to make mgmt operations be name-parameterized-only (instead of objects) --- .../management/_management_client_async.py | 152 ++++----------- .../management/_management_client.py | 183 +++++------------- 2 files changed, 81 insertions(+), 254 deletions(-) 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 33aba6288654..bd90a38b9e04 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 @@ -306,17 +306,13 @@ async def update_queue(self, queue: QueueProperties, **kwargs) -> None: **kwargs ) - async def delete_queue(self, queue: Union[str, QueueProperties], **kwargs) -> None: + async def delete_queue(self, queue_name: str, **kwargs) -> None: """Delete a queue. - :param Union[str, azure.servicebus.management.QueueProperties] queue: The name of the queue or + :param str queue_name: The name of the queue or a `QueueProperties` with name. :rtype: None """ - try: - queue_name = queue.name # type: ignore - except AttributeError: - queue_name = queue if not queue_name: raise ValueError("queue_name must not be None or empty") with _handle_response_error(): @@ -510,16 +506,12 @@ async def update_topic(self, topic: TopicProperties, **kwargs) -> None: **kwargs ) - async def delete_topic(self, topic: Union[str, TopicProperties], **kwargs) -> None: + async def delete_topic(self, topic_name: str, **kwargs) -> None: """Delete a topic. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic to be deleted. + :param str topic_name: The topic to be deleted. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic await self._impl.entity.delete(topic_name, api_version=constants.API_VERSION, **kwargs) def list_topics(self, **kwargs: Any) -> AsyncItemPaged[TopicProperties]: @@ -561,18 +553,14 @@ def entry_to_topic(entry): get_next, extract_data) async def get_subscription( - self, topic: Union[str, TopicProperties], subscription_name: str, **kwargs + self, topic_name: str, subscription_name: str, **kwargs ) -> SubscriptionProperties: """Get the properties of a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :param str subscription_name: name of the subscription. :rtype: ~azure.servicebus.management.SubscriptionProperties """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic entry_ele = await self._get_subscription_element(topic_name, subscription_name, **kwargs) entry = SubscriptionDescriptionEntry.deserialize(entry_ele) if not entry.content: @@ -583,18 +571,14 @@ async def get_subscription( return subscription async def get_subscription_runtime_info( - self, topic: Union[str, TopicProperties], subscription_name: str, **kwargs + self, topic_name: str, subscription_name: str, **kwargs ) -> SubscriptionRuntimeProperties: """Get a topic subscription runtime info. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :param str subscription_name: name of the subscription. :rtype: ~azure.servicebus.management.SubscriptionRuntimeProperties """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic entry_ele = await self._get_subscription_element(topic_name, subscription_name, **kwargs) entry = SubscriptionDescriptionEntry.deserialize(entry_ele) if not entry.content: @@ -605,11 +589,11 @@ async def get_subscription_runtime_info( return subscription async def create_subscription( - self, topic: Union[str, TopicProperties], name: str, **kwargs + self, topic_name: str, name: str, **kwargs ) -> SubscriptionProperties: """Create a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that will own the + :param str topic_name: The topic that will own the to-be-created subscription. :param name: Name of the subscription. :type name: str @@ -650,10 +634,6 @@ async def create_subscription( :type auto_delete_on_idle: ~datetime.timedelta :rtype: ~azure.servicebus.management.SubscriptionProperties """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic subscription = SubscriptionProperties( name, lock_duration=kwargs.pop("lock_duration", None), @@ -701,16 +681,11 @@ async def update_subscription( Before calling this method, you should use `get_subscription`, `update_subscription` or `list_subscription` to get a `SubscriptionProperties` instance, then update the properties. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :param ~azure.servicebus.management.SubscriptionProperties subscription: The subscription that is returned from `get_subscription`, `update_subscription` or `list_subscription` and has the updated properties. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - to_update = subscription._to_internal_entity() to_update.default_message_time_to_live = avoid_timedelta_overflow(to_update.default_message_time_to_live) @@ -733,38 +708,25 @@ async def update_subscription( ) async def delete_subscription( - self, topic: Union[str, TopicProperties], subscription: Union[str, SubscriptionProperties], **kwargs + self, topic_name: str, subscription_name: str, **kwargs ) -> None: """Delete a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription to be deleted. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription await self._impl.subscription.delete(topic_name, subscription_name, api_version=constants.API_VERSION, **kwargs) def list_subscriptions( - self, topic: Union[str, TopicProperties], **kwargs: Any) -> AsyncItemPaged[SubscriptionProperties]: + self, topic_name: str, **kwargs: Any) -> AsyncItemPaged[SubscriptionProperties]: """List the subscriptions of a ServiceBus Topic. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :returns: An iterable (auto-paging) response of SubscriptionProperties. :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.servicebus.management.SubscriptionProperties] """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - def entry_to_subscription(entry): subscription = SubscriptionProperties._from_internal_entity( entry.title, entry.content.subscription_description) @@ -780,18 +742,13 @@ def entry_to_subscription(entry): get_next, extract_data) def list_subscriptions_runtime_info( - self, topic: Union[str, TopicProperties], **kwargs: Any) -> AsyncItemPaged[SubscriptionRuntimeProperties]: + self, topic_name: str, **kwargs: Any) -> AsyncItemPaged[SubscriptionRuntimeProperties]: """List the subscriptions runtime information of a ServiceBus. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :returns: An iterable (auto-paging) response of SubscriptionRuntimeProperties. :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.servicebus.management.SubscriptionRuntimeProperties] """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - def entry_to_subscription(entry): subscription = SubscriptionRuntimeProperties._from_internal_entity( entry.title, entry.content.subscription_description) @@ -807,24 +764,16 @@ def entry_to_subscription(entry): get_next, extract_data) async def get_rule( - self, topic: Union[str, TopicProperties], subscription: Union[str, SubscriptionProperties], + self, topic_name: str, subscription_name: str, rule_name: str, **kwargs) -> RuleProperties: """Get the properties of a topic subscription rule. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription that owns the rule. :param str rule_name: Name of the rule. :rtype: ~azure.servicebus.management.RuleProperties """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription entry_ele = await self._get_rule_element(topic_name, subscription_name, rule_name, **kwargs) entry = RuleDescriptionEntry.deserialize(entry_ele) if not entry.content: @@ -836,13 +785,13 @@ async def get_rule( return rule_description async def create_rule( - self, topic: Union[str, TopicProperties], subscription: Union[str, SubscriptionProperties], + self, topic_name: str, subscription_name: str, name: str, **kwargs) -> RuleProperties: """Create a rule for a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that will own the + :param str topic_name: The topic that will own the to-be-created subscription rule. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str subscription_name: The subscription that will own the to-be-created rule. :param name: Name of the rule. :type name: str @@ -854,14 +803,6 @@ async def create_rule( :rtype: ~azure.servicebus.management.RuleProperties """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription rule = RuleProperties( name, filter=kwargs.pop("filter", None), @@ -889,30 +830,21 @@ async def create_rule( return result async def update_rule( - self, topic: Union[str, TopicProperties], subscription: Union[str, SubscriptionProperties], + self, topic_name: str, subscription_name: str, rule: RuleProperties, **kwargs) -> None: """Update a rule. Before calling this method, you should use `get_rule`, `create_rule` or `list_rules` to get a `RuleProperties` instance, then update the properties. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription that owns this rule. :param ~azure.servicebus.management.RuleProperties rule: The rule that is returned from `get_rule`, `create_rule`, or `list_rules` and has the updated properties. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription - to_update = rule._to_internal_entity() create_entity_body = CreateRuleBody( @@ -934,24 +866,16 @@ async def update_rule( ) async def delete_rule( - self, topic: Union[str, TopicProperties], subscription: Union[str, SubscriptionProperties], + self, topic_name: str, subscription_name: str, rule: Union[str, RuleProperties], **kwargs) -> None: """Delete a topic subscription rule. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription that owns the topic. :param Union[str, ~azure.servicebus.management.RuleProperties] rule: The to-be-deleted rule. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription try: rule_name = rule.name # type: ignore except AttributeError: @@ -961,26 +885,18 @@ async def delete_rule( def list_rules( self, - topic: Union[str, TopicProperties], - subscription: Union[str, SubscriptionProperties], + topic_name: str, + subscription_name: str, **kwargs: Any ) -> AsyncItemPaged[RuleProperties]: """List the rules of a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription that owns the rules. :returns: An iterable (auto-paging) response of RuleProperties. :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.servicebus.management.RuleProperties] """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription def entry_to_rule(ele, entry): """ 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 9c326af09dd6..c0090ef38209 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py @@ -302,18 +302,14 @@ def update_queue(self, queue, **kwargs): **kwargs ) - def delete_queue(self, queue, **kwargs): - # type: (Union[str, QueueProperties], Any) -> None + def delete_queue(self, queue_name, **kwargs): + # type: (str, Any) -> None """Delete a queue. - :param Union[str, azure.servicebus.management.QueueProperties] queue: The name of the queue or + :param str queue: The name of the queue or a `QueueProperties` with name. :rtype: None """ - try: - queue_name = queue.name # type: ignore - except AttributeError: - queue_name = queue if not queue_name: raise ValueError("queue_name must not be None or empty") with _handle_response_error(): @@ -519,17 +515,13 @@ def update_topic(self, topic, **kwargs): **kwargs ) - def delete_topic(self, topic, **kwargs): - # type: (Union[str, TopicProperties], Any) -> None + def delete_topic(self, topic_name, **kwargs): + # type: (str, Any) -> None """Delete a topic. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic to be deleted. + :param str topic_name: The topic to be deleted. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic self._impl.entity.delete(topic_name, api_version=constants.API_VERSION, **kwargs) def list_topics(self, **kwargs): @@ -572,18 +564,14 @@ def entry_to_topic(entry): return ItemPaged( get_next, extract_data) - def get_subscription(self, topic, subscription_name, **kwargs): - # type: (Union[str, TopicProperties], str, Any) -> SubscriptionProperties + def get_subscription(self, topic_name, subscription_name, **kwargs): + # type: (str, str, Any) -> SubscriptionProperties """Get the properties of a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :param str subscription_name: name of the subscription. :rtype: ~azure.servicebus.management.SubscriptionProperties """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic entry_ele = self._get_subscription_element(topic_name, subscription_name, **kwargs) entry = SubscriptionDescriptionEntry.deserialize(entry_ele) if not entry.content: @@ -593,18 +581,14 @@ def get_subscription(self, topic, subscription_name, **kwargs): entry.title, entry.content.subscription_description) return subscription - def get_subscription_runtime_info(self, topic, subscription_name, **kwargs): - # type: (Union[str, TopicProperties], str, Any) -> SubscriptionRuntimeProperties + def get_subscription_runtime_info(self, topic_name, subscription_name, **kwargs): + # type: (str, str, Any) -> SubscriptionRuntimeProperties """Get a topic subscription runtime info. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :param str subscription_name: name of the subscription. :rtype: ~azure.servicebus.management.SubscriptionRuntimeProperties """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic entry_ele = self._get_subscription_element(topic_name, subscription_name, **kwargs) entry = SubscriptionDescriptionEntry.deserialize(entry_ele) if not entry.content: @@ -614,11 +598,11 @@ def get_subscription_runtime_info(self, topic, subscription_name, **kwargs): entry.title, entry.content.subscription_description) return subscription - def create_subscription(self, topic, name, **kwargs): - # type: (Union[str, TopicProperties], str, Any) -> SubscriptionProperties + def create_subscription(self, topic_name, name, **kwargs): + # type: (str, str, Any) -> SubscriptionProperties """Create a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that will own the + :param str topic_name: The topic that will own the to-be-created subscription. :param name: Name of the subscription. :type name: str @@ -659,10 +643,6 @@ def create_subscription(self, topic, name, **kwargs): :type auto_delete_on_idle: ~datetime.timedelta :rtype: ~azure.servicebus.management.SubscriptionProperties """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic subscription = SubscriptionProperties( name, lock_duration=kwargs.pop("lock_duration", None), @@ -702,22 +682,18 @@ def create_subscription(self, topic, name, **kwargs): name, entry.content.subscription_description) return result - def update_subscription(self, topic, subscription, **kwargs): - # type: (Union[str, TopicProperties], SubscriptionProperties, Any) -> None + def update_subscription(self, topic_name, subscription, **kwargs): + # type: (str, SubscriptionProperties, Any) -> None """Update a subscription. Before calling this method, you should use `get_subscription`, `update_subscription` or `list_subscription` to get a `SubscriptionProperties` instance, then update the properties. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :param ~azure.servicebus.management.SubscriptionProperties subscription: The subscription that is returned from `get_subscription`, `update_subscription` or `list_subscription` and has the updated properties. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic to_update = subscription._to_internal_entity() @@ -740,38 +716,25 @@ def update_subscription(self, topic, subscription, **kwargs): **kwargs ) - def delete_subscription(self, topic, subscription, **kwargs): - # type: (Union[str, TopicProperties], Union[str, SubscriptionProperties], Any) -> None + def delete_subscription(self, topic_name, subscription_name, **kwargs): + # type: (str, str, Any) -> None """Delete a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription to + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription to be deleted. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription self._impl.subscription.delete(topic_name, subscription_name, api_version=constants.API_VERSION, **kwargs) - def list_subscriptions(self, topic, **kwargs): - # type: (Union[str, TopicProperties], Any) -> ItemPaged[SubscriptionProperties] + def list_subscriptions(self, topic_name, **kwargs): + # type: (str, Any) -> ItemPaged[SubscriptionProperties] """List the subscriptions of a ServiceBus Topic. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :returns: An iterable (auto-paging) response of SubscriptionProperties. :rtype: ~azure.core.paging.ItemPaged[~azure.servicebus.management.SubscriptionProperties] """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - def entry_to_subscription(entry): subscription = SubscriptionProperties._from_internal_entity( entry.title, entry.content.subscription_description) @@ -786,19 +749,14 @@ def entry_to_subscription(entry): return ItemPaged( get_next, extract_data) - def list_subscriptions_runtime_info(self, topic, **kwargs): + def list_subscriptions_runtime_info(self, topic_name, **kwargs): # type: (Union[str, TopicProperties], Any) -> ItemPaged[SubscriptionRuntimeProperties] """List the subscriptions runtime information of a ServiceBus Topic. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. + :param str topic_name: The topic that owns the subscription. :returns: An iterable (auto-paging) response of SubscriptionRuntimeProperties. :rtype: ~azure.core.paging.ItemPaged[~azure.servicebus.management.SubscriptionRuntimeProperties] """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - def entry_to_subscription(entry): subscription = SubscriptionRuntimeProperties._from_internal_entity( entry.title, entry.content.subscription_description) @@ -813,24 +771,16 @@ def entry_to_subscription(entry): return ItemPaged( get_next, extract_data) - def get_rule(self, topic, subscription, rule_name, **kwargs): + def get_rule(self, topic_name, subscription_name, rule_name, **kwargs): # type: (Union[str, TopicProperties], Union[str, SubscriptionProperties], str, Any) -> RuleProperties """Get the properties of a topic subscription rule. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription that owns the rule. :param str rule_name: Name of the rule. :rtype: ~azure.servicebus.management.RuleProperties """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription entry_ele = self._get_rule_element(topic_name, subscription_name, rule_name, **kwargs) entry = RuleDescriptionEntry.deserialize(entry_ele) if not entry.content: @@ -841,13 +791,13 @@ def get_rule(self, topic, subscription, rule_name, **kwargs): deserialize_rule_key_values(entry_ele, rule_description) # to remove after #3535 is released. return rule_description - def create_rule(self, topic, subscription, name, **kwargs): - # type: (Union[str, TopicProperties], Union[str, SubscriptionProperties], str, Any) -> RuleProperties + def create_rule(self, topic_name, subscription_name, name, **kwargs): + # type: (str, str, str, Any) -> RuleProperties """Create a rule for a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that will own the + :param str topic_name: The topic that will own the to-be-created subscription rule. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str subscription_name: The subscription that will own the to-be-created rule. :param name: Name of the rule. :type name: str @@ -859,15 +809,6 @@ def create_rule(self, topic, subscription, name, **kwargs): :rtype: ~azure.servicebus.management.RuleProperties """ - - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription rule = RuleProperties( name, filter=kwargs.pop("filter", None), @@ -894,30 +835,21 @@ def create_rule(self, topic, subscription, name, **kwargs): deserialize_rule_key_values(entry_ele, result) # to remove after #3535 is released. return result - def update_rule(self, topic, subscription, rule, **kwargs): - # type: (Union[str, TopicProperties], Union[str, SubscriptionProperties], RuleProperties, Any) -> None + def update_rule(self, topic_name, subscription_name, rule, **kwargs): + # type: (str, str, RuleProperties, Any) -> None """Update a rule. Before calling this method, you should use `get_rule`, `create_rule` or `list_rules` to get a `RuleProperties` instance, then update the properties. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription that owns this rule. :param ~azure.servicebus.management.RuleProperties rule: The rule that is returned from `get_rule`, `create_rule`, or `list_rules` and has the updated properties. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription - to_update = rule._to_internal_entity() create_entity_body = CreateRuleBody( @@ -938,49 +870,28 @@ def update_rule(self, topic, subscription, rule, **kwargs): **kwargs ) - def delete_rule(self, topic, subscription, rule, **kwargs): - # type: (Union[str,TopicProperties], Union[str,SubscriptionProperties], Union[str,RuleProperties], Any) -> None + def delete_rule(self, topic_name, subscription_name, rule_name, **kwargs): + # type: (str, str, str, Any) -> None """Delete a topic subscription rule. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription that owns the topic. - :param Union[str, ~azure.servicebus.management.RuleProperties] rule: The to-be-deleted rule. + :param str rule_name: The to-be-deleted rule. :rtype: None """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription - try: - rule_name = rule.name # type: ignore - except AttributeError: - rule_name = rule self._impl.rule.delete(topic_name, subscription_name, rule_name, api_version=constants.API_VERSION, **kwargs) - def list_rules(self, topic, subscription, **kwargs): - # type: (Union[str, TopicProperties], Union[str, SubscriptionProperties], Any) -> ItemPaged[RuleProperties] + def list_rules(self, topic_name, subscription_name, **kwargs): + # type: (str, str, Any) -> ItemPaged[RuleProperties] """List the rules of a topic subscription. - :param Union[str, ~azure.servicebus.management.TopicProperties] topic: The topic that owns the subscription. - :param Union[str, ~azure.servicebus.management.SubscriptionProperties] subscription: The subscription that + :param str topic_name: The topic that owns the subscription. + :param str subscription_name: The subscription that owns the rules. :returns: An iterable (auto-paging) response of RuleProperties. :rtype: ~azure.core.paging.ItemPaged[~azure.servicebus.management.RuleProperties] """ - try: - topic_name = topic.name # type: ignore - except AttributeError: - topic_name = topic - try: - subscription_name = subscription.name # type: ignore - except AttributeError: - subscription_name = subscription - def entry_to_rule(ele, entry): """ `ele` will be removed after https://github.com/Azure/autorest/issues/3535 is released. From bfb958c27ba424b5fa58032d973996ffc6677a69 Mon Sep 17 00:00:00 2001 From: Kieran Brantner-Magee Date: Tue, 29 Sep 2020 10:06:01 -0700 Subject: [PATCH 2/5] Make administration client operations take only entity names, not full entity objects, for non-update functions. --- sdk/servicebus/azure-servicebus/CHANGELOG.md | 1 + .../management/_management_client_async.py | 47 ++- .../management/_management_client.py | 38 ++- .../mgmt_tests/mgmt_test_utilities_async.py | 4 +- ....test_async_mgmt_queue_create_by_name.yaml | 48 +-- ...est_async_mgmt_queue_create_duplicate.yaml | 44 +-- ...t_queue_create_with_queue_description.yaml | 48 +-- ...nc.test_async_mgmt_queue_delete_basic.yaml | 118 +++---- ....test_async_mgmt_queue_delete_negtive.yaml | 78 ++--- ...eue_delete_one_and_check_not_existing.yaml | 304 +++++++++--------- ...ync_mgmt_queue_get_runtime_info_basic.yaml | 48 +-- ..._mgmt_queue_get_runtime_info_negative.yaml | 8 +- ...sync.test_async_mgmt_queue_list_basic.yaml | 126 ++++---- ...nc_mgmt_queue_list_runtime_info_basic.yaml | 94 +++--- ...t_queue_list_with_negative_credential.yaml | 20 +- ...nc_mgmt_queue_list_with_special_chars.yaml | 68 ++-- ....test_async_mgmt_queue_update_invalid.yaml | 72 ++--- ....test_async_mgmt_queue_update_success.yaml | 100 +++--- ...les_async.test_async_mgmt_rule_create.yaml | 200 ++++++------ ...test_async_mgmt_rule_create_duplicate.yaml | 102 +++--- ....test_async_mgmt_rule_list_and_delete.yaml | 258 +++++++-------- ...c.test_async_mgmt_rule_update_invalid.yaml | 122 +++---- ...c.test_async_mgmt_rule_update_success.yaml | 140 ++++---- ...sync_mgmt_subscription_create_by_name.yaml | 72 ++--- ...nc_mgmt_subscription_create_duplicate.yaml | 68 ++-- ..._create_with_subscription_description.yaml | 72 ++--- ...c.test_async_mgmt_subscription_delete.yaml | 168 +++++----- ...t_subscription_get_runtime_info_basic.yaml | 72 ++--- ...ync.test_async_mgmt_subscription_list.yaml | 128 ++++---- ...c_mgmt_subscription_list_runtime_info.yaml | 128 ++++---- ...sync_mgmt_subscription_update_invalid.yaml | 88 ++--- ...sync_mgmt_subscription_update_success.yaml | 126 ++++---- ....test_async_mgmt_topic_create_by_name.yaml | 48 +-- ...est_async_mgmt_topic_create_duplicate.yaml | 44 +-- ...t_topic_create_with_topic_description.yaml | 48 +-- ...cs_async.test_async_mgmt_topic_delete.yaml | 150 ++++----- ...ync_mgmt_topic_get_runtime_info_basic.yaml | 48 +-- ...pics_async.test_async_mgmt_topic_list.yaml | 96 +++--- ...st_async_mgmt_topic_list_runtime_info.yaml | 94 +++--- ....test_async_mgmt_topic_update_invalid.yaml | 58 ++-- ....test_async_mgmt_topic_update_success.yaml | 100 +++--- .../mgmt_tests/test_mgmt_queues_async.py | 6 +- .../mgmt_tests/test_mgmt_rules_async.py | 8 +- .../test_mgmt_subscriptions_async.py | 10 +- .../mgmt_tests/test_mgmt_topics_async.py | 4 +- .../tests/mgmt_tests/mgmt_test_utilities.py | 4 +- ...queues.test_mgmt_queue_create_by_name.yaml | 40 +-- ...eues.test_mgmt_queue_create_duplicate.yaml | 36 +-- ...t_queue_create_with_queue_description.yaml | 40 +-- ...t_queues.test_mgmt_queue_delete_basic.yaml | 100 +++--- ...queues.test_mgmt_queue_delete_negtive.yaml | 64 ++-- ...eue_delete_one_and_check_not_existing.yaml | 258 +++++++-------- ...est_mgmt_queue_get_runtime_info_basic.yaml | 40 +-- ..._mgmt_queue_get_runtime_info_negative.yaml | 6 +- ...gmt_queues.test_mgmt_queue_list_basic.yaml | 104 +++--- ...st_mgmt_queue_list_runtime_info_basic.yaml | 78 ++--- ...t_queue_list_with_negative_credential.yaml | 16 +- ...st_mgmt_queue_list_with_special_chars.yaml | 56 ++-- ...queues.test_mgmt_queue_update_invalid.yaml | 60 ++-- ...queues.test_mgmt_queue_update_success.yaml | 86 ++--- ...test_mgmt_rules.test_mgmt_rule_create.yaml | 172 +++++----- ...rules.test_mgmt_rule_create_duplicate.yaml | 86 ++--- ..._rules.test_mgmt_rule_list_and_delete.yaml | 228 ++++++------- ...t_rules.test_mgmt_rule_update_invalid.yaml | 104 +++--- ...t_rules.test_mgmt_rule_update_success.yaml | 120 +++---- ...test_mgmt_subscription_create_by_name.yaml | 60 ++-- ...st_mgmt_subscription_create_duplicate.yaml | 56 ++-- ..._create_with_subscription_description.yaml | 60 ++-- ...iptions.test_mgmt_subscription_delete.yaml | 144 ++++----- ...t_subscription_get_runtime_info_basic.yaml | 60 ++-- ...criptions.test_mgmt_subscription_list.yaml | 108 +++---- ...t_mgmt_subscription_list_runtime_info.yaml | 108 +++---- ...test_mgmt_subscription_update_invalid.yaml | 70 ++-- ...test_mgmt_subscription_update_success.yaml | 106 +++--- ...topics.test_mgmt_topic_create_by_name.yaml | 40 +-- ...pics.test_mgmt_topic_create_duplicate.yaml | 36 +-- ...t_topic_create_with_topic_description.yaml | 40 +-- ...st_mgmt_topics.test_mgmt_topic_delete.yaml | 128 ++++---- ...est_mgmt_topic_get_runtime_info_basic.yaml | 40 +-- ...test_mgmt_topics.test_mgmt_topic_list.yaml | 80 ++--- ...ics.test_mgmt_topic_list_runtime_info.yaml | 78 ++--- ...topics.test_mgmt_topic_update_invalid.yaml | 48 +-- ...topics.test_mgmt_topic_update_success.yaml | 86 ++--- .../tests/mgmt_tests/test_mgmt_queues.py | 6 +- .../tests/mgmt_tests/test_mgmt_rules.py | 8 +- .../mgmt_tests/test_mgmt_subscriptions.py | 10 +- .../tests/mgmt_tests/test_mgmt_topics.py | 4 +- 87 files changed, 3434 insertions(+), 3364 deletions(-) diff --git a/sdk/servicebus/azure-servicebus/CHANGELOG.md b/sdk/servicebus/azure-servicebus/CHANGELOG.md index f1b832deb546..f765920c6c68 100644 --- a/sdk/servicebus/azure-servicebus/CHANGELOG.md +++ b/sdk/servicebus/azure-servicebus/CHANGELOG.md @@ -11,6 +11,7 @@ * Sending a message twice will no longer result in a MessageAlreadySettled exception. * `ServiceBusClient.close()` now closes spawned senders and receivers. * Attempting to initialize a sender or receiver with a different connection string entity and specified entity (e.g. `queue_name`) will result in an AuthenticationError +* Administration Client calls now take only entity names, not `EntityDescriptions` as well to reduce ambiguity in which entity was being acted on. TypeError will now be thrown on improper parameter types (non-string.) ## 7.0.0b5 (2020-08-10) 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 bd90a38b9e04..70496c4caa6c 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 @@ -97,8 +97,13 @@ def _build_pipeline(self, **kwargs): # pylint: disable=no-self-use transport = AioHttpTransport(**kwargs) return AsyncPipeline(transport, policies) + def _validate_entity_name_type(self, entity_name, display_name='entity name'): + if not isinstance(entity_name, str): + raise TypeError("{} must be a string, not {}".format(display_name, type(entity_name))) + async def _get_entity_element(self, entity_name, enrich=False, **kwargs): # type: (str, bool, Any) -> ElementTree + self._validate_entity_name_type(entity_name) with _handle_response_error(): element = cast( @@ -107,8 +112,14 @@ async def _get_entity_element(self, entity_name, enrich=False, **kwargs): ) return element + def _validate_topic_and_subscription_types(self, topic_name, subscription_name): + if not isinstance(topic_name, str) or not isinstance(subscription_name, str): + raise TypeError("topic name and subscription name must be strings, not {} and {}".format( + type(topic_name), type(subscription_name))) + async def _get_subscription_element(self, topic_name, subscription_name, enrich=False, **kwargs): # type: (str, str, bool, Any) -> ElementTree + self._validate_topic_and_subscription_types(topic_name, subscription_name) with _handle_response_error(): element = cast( @@ -118,8 +129,14 @@ async def _get_subscription_element(self, topic_name, subscription_name, enrich= ) return element + def _validate_topic_subscription_and_rule_types(self, topic_name, subscription_name, rule_name): + if not isinstance(topic_name, str) or not isinstance(subscription_name, str) or not isinstance(rule_name, str): + raise TypeError("topic name, subscription name and rule name must be strings, not {} {} and {}".format( + type(topic_name), type(subscription_name), type(rule_name))) + async def _get_rule_element(self, topic_name, subscription_name, rule_name, **kwargs): # type: (str, str, str, Any) -> ElementTree + self._validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) with _handle_response_error(): element = cast( @@ -313,6 +330,8 @@ async def delete_queue(self, queue_name: str, **kwargs) -> None: a `QueueProperties` with name. :rtype: None """ + self._validate_entity_name_type(queue_name) + if not queue_name: raise ValueError("queue_name must not be None or empty") with _handle_response_error(): @@ -512,6 +531,8 @@ async def delete_topic(self, topic_name: str, **kwargs) -> None: :param str topic_name: The topic to be deleted. :rtype: None """ + self._validate_entity_name_type(topic_name) + await self._impl.entity.delete(topic_name, api_version=constants.API_VERSION, **kwargs) def list_topics(self, **kwargs: Any) -> AsyncItemPaged[TopicProperties]: @@ -634,6 +655,8 @@ async def create_subscription( :type auto_delete_on_idle: ~datetime.timedelta :rtype: ~azure.servicebus.management.SubscriptionProperties """ + self._validate_entity_name_type(topic_name, display_name='topic_name') + subscription = SubscriptionProperties( name, lock_duration=kwargs.pop("lock_duration", None), @@ -674,7 +697,7 @@ async def create_subscription( return result async def update_subscription( - self, topic: Union[str, TopicProperties], subscription: SubscriptionProperties, **kwargs + self, topic_name: str, subscription: SubscriptionProperties, **kwargs ) -> None: """Update a subscription. @@ -686,6 +709,8 @@ async def update_subscription( from `get_subscription`, `update_subscription` or `list_subscription` and has the updated properties. :rtype: None """ + self._validate_entity_name_type(topic_name, display_name='topic_name') + to_update = subscription._to_internal_entity() to_update.default_message_time_to_live = avoid_timedelta_overflow(to_update.default_message_time_to_live) @@ -717,6 +742,8 @@ async def delete_subscription( to be deleted. :rtype: None """ + self._validate_topic_and_subscription_types(topic_name, subscription_name) + await self._impl.subscription.delete(topic_name, subscription_name, api_version=constants.API_VERSION, **kwargs) def list_subscriptions( @@ -727,6 +754,8 @@ def list_subscriptions( :returns: An iterable (auto-paging) response of SubscriptionProperties. :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.servicebus.management.SubscriptionProperties] """ + self._validate_entity_name_type(topic_name) + def entry_to_subscription(entry): subscription = SubscriptionProperties._from_internal_entity( entry.title, entry.content.subscription_description) @@ -749,6 +778,8 @@ def list_subscriptions_runtime_info( :returns: An iterable (auto-paging) response of SubscriptionRuntimeProperties. :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.servicebus.management.SubscriptionRuntimeProperties] """ + self._validate_entity_name_type(topic_name) + def entry_to_subscription(entry): subscription = SubscriptionRuntimeProperties._from_internal_entity( entry.title, entry.content.subscription_description) @@ -803,6 +834,8 @@ async def create_rule( :rtype: ~azure.servicebus.management.RuleProperties """ + self._validate_topic_and_subscription_types(topic_name, subscription_name) + rule = RuleProperties( name, filter=kwargs.pop("filter", None), @@ -844,6 +877,7 @@ async def update_rule( `create_rule`, or `list_rules` and has the updated properties. :rtype: None """ + self._validate_topic_and_subscription_types(topic_name, subscription_name) to_update = rule._to_internal_entity() @@ -867,19 +901,17 @@ async def update_rule( async def delete_rule( self, topic_name: str, subscription_name: str, - rule: Union[str, RuleProperties], **kwargs) -> None: + rule_name: str, **kwargs) -> None: """Delete a topic subscription rule. :param str topic_name: The topic that owns the subscription. :param str subscription_name: The subscription that owns the topic. - :param Union[str, ~azure.servicebus.management.RuleProperties] rule: The to-be-deleted rule. + :param str rule: The to-be-deleted rule. :rtype: None """ - try: - rule_name = rule.name # type: ignore - except AttributeError: - rule_name = rule + self._validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) + await self._impl.rule.delete( topic_name, subscription_name, rule_name, api_version=constants.API_VERSION, **kwargs) @@ -897,6 +929,7 @@ def list_rules( :returns: An iterable (auto-paging) response of RuleProperties. :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.servicebus.management.RuleProperties] """ + self._validate_topic_and_subscription_types(topic_name, subscription_name) def entry_to_rule(ele, entry): """ 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 c0090ef38209..b11ab72a04f8 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py @@ -90,8 +90,13 @@ def _build_pipeline(self, **kwargs): # pylint: disable=no-self-use transport = RequestsTransport(**kwargs) return Pipeline(transport, policies) + def _validate_entity_name_type(self, entity_name, display_name='entity name'): + if not isinstance(entity_name, str): + raise TypeError("{} must be a string, not {}".format(display_name, type(entity_name))) + def _get_entity_element(self, entity_name, enrich=False, **kwargs): # type: (str, bool, Any) -> ElementTree + self._validate_entity_name_type(entity_name) with _handle_response_error(): element = cast( @@ -100,9 +105,14 @@ def _get_entity_element(self, entity_name, enrich=False, **kwargs): ) return element + def _validate_topic_and_subscription_types(self, topic_name, subscription_name): + if not isinstance(topic_name, str) or not isinstance(subscription_name, str): + raise TypeError("topic name and subscription name must be strings, not {} and {}".format( + type(topic_name), type(subscription_name))) + def _get_subscription_element(self, topic_name, subscription_name, enrich=False, **kwargs): # type: (str, str, bool, Any) -> ElementTree - + self._validate_topic_and_subscription_types(topic_name, subscription_name) with _handle_response_error(): element = cast( ElementTree, @@ -111,8 +121,14 @@ def _get_subscription_element(self, topic_name, subscription_name, enrich=False, ) return element + def _validate_topic_subscription_and_rule_types(self, topic_name, subscription_name, rule_name): + if not isinstance(topic_name, str) or not isinstance(subscription_name, str) or not isinstance(rule_name, str): + raise TypeError("topic name, subscription name and rule name must be strings, not {} {} and {}".format( + type(topic_name), type(subscription_name), type(rule_name))) + def _get_rule_element(self, topic_name, subscription_name, rule_name, **kwargs): # type: (str, str, str, Any) -> ElementTree + self._validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) with _handle_response_error(): element = cast( @@ -310,6 +326,8 @@ def delete_queue(self, queue_name, **kwargs): a `QueueProperties` with name. :rtype: None """ + self._validate_entity_name_type(queue_name) + if not queue_name: raise ValueError("queue_name must not be None or empty") with _handle_response_error(): @@ -522,6 +540,8 @@ def delete_topic(self, topic_name, **kwargs): :param str topic_name: The topic to be deleted. :rtype: None """ + self._validate_entity_name_type(topic_name) + self._impl.entity.delete(topic_name, api_version=constants.API_VERSION, **kwargs) def list_topics(self, **kwargs): @@ -643,6 +663,8 @@ def create_subscription(self, topic_name, name, **kwargs): :type auto_delete_on_idle: ~datetime.timedelta :rtype: ~azure.servicebus.management.SubscriptionProperties """ + self._validate_entity_name_type(topic_name, display_name='topic_name') + subscription = SubscriptionProperties( name, lock_duration=kwargs.pop("lock_duration", None), @@ -694,6 +716,7 @@ def update_subscription(self, topic_name, subscription, **kwargs): from `get_subscription`, `update_subscription` or `list_subscription` and has the updated properties. :rtype: None """ + self._validate_entity_name_type(topic_name, display_name='topic_name') to_update = subscription._to_internal_entity() @@ -725,6 +748,8 @@ def delete_subscription(self, topic_name, subscription_name, **kwargs): be deleted. :rtype: None """ + self._validate_topic_and_subscription_types(topic_name, subscription_name) + self._impl.subscription.delete(topic_name, subscription_name, api_version=constants.API_VERSION, **kwargs) def list_subscriptions(self, topic_name, **kwargs): @@ -735,6 +760,8 @@ def list_subscriptions(self, topic_name, **kwargs): :returns: An iterable (auto-paging) response of SubscriptionProperties. :rtype: ~azure.core.paging.ItemPaged[~azure.servicebus.management.SubscriptionProperties] """ + self._validate_entity_name_type(topic_name) + def entry_to_subscription(entry): subscription = SubscriptionProperties._from_internal_entity( entry.title, entry.content.subscription_description) @@ -757,6 +784,8 @@ def list_subscriptions_runtime_info(self, topic_name, **kwargs): :returns: An iterable (auto-paging) response of SubscriptionRuntimeProperties. :rtype: ~azure.core.paging.ItemPaged[~azure.servicebus.management.SubscriptionRuntimeProperties] """ + self._validate_entity_name_type(topic_name) + def entry_to_subscription(entry): subscription = SubscriptionRuntimeProperties._from_internal_entity( entry.title, entry.content.subscription_description) @@ -809,6 +838,8 @@ def create_rule(self, topic_name, subscription_name, name, **kwargs): :rtype: ~azure.servicebus.management.RuleProperties """ + self._validate_topic_and_subscription_types(topic_name, subscription_name) + rule = RuleProperties( name, filter=kwargs.pop("filter", None), @@ -849,6 +880,7 @@ def update_rule(self, topic_name, subscription_name, rule, **kwargs): `create_rule`, or `list_rules` and has the updated properties. :rtype: None """ + self._validate_topic_and_subscription_types(topic_name, subscription_name) to_update = rule._to_internal_entity() @@ -880,6 +912,8 @@ def delete_rule(self, topic_name, subscription_name, rule_name, **kwargs): :param str rule_name: The to-be-deleted rule. :rtype: None """ + self._validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) + self._impl.rule.delete(topic_name, subscription_name, rule_name, api_version=constants.API_VERSION, **kwargs) def list_rules(self, topic_name, subscription_name, **kwargs): @@ -892,6 +926,8 @@ def list_rules(self, topic_name, subscription_name, **kwargs): :returns: An iterable (auto-paging) response of RuleProperties. :rtype: ~azure.core.paging.ItemPaged[~azure.servicebus.management.RuleProperties] """ + self._validate_topic_and_subscription_types(topic_name, subscription_name) + def entry_to_rule(ele, entry): """ `ele` will be removed after https://github.com/Azure/autorest/issues/3535 is released. diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/mgmt_test_utilities_async.py b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/mgmt_test_utilities_async.py index 51b8dcbe5fd7..526cd089ee90 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/mgmt_test_utilities_async.py +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/mgmt_test_utilities_async.py @@ -134,7 +134,7 @@ async def clear_queues(servicebus_management_client): queues = await async_pageable_to_list(servicebus_management_client.list_queues()) for queue in queues: try: - await servicebus_management_client.delete_queue(queue) + await servicebus_management_client.delete_queue(queue.name) except: pass @@ -143,6 +143,6 @@ async def clear_topics(servicebus_management_client): topics = await async_pageable_to_list(servicebus_management_client.list_topics()) for topic in topics: try: - await servicebus_management_client.delete_topic(topic) + await servicebus_management_client.delete_topic(topic.name) except: pass 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 cb60c37f3645..6b4eb5677309 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:06Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:21Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:06 GMT + date: Tue, 29 Sep 2020 08:32:20 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,61 +34,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/eidk?api-version=2017-04eidk2020-07-02T06:04:06Z2020-07-02T06:04:06Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04eidk2020-09-29T08:32:21Z2020-09-29T08:32:21Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:06.657Z2020-07-02T06:04:06.763ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:21.71Z2020-09-29T08:32:21.78ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:07 GMT + date: Tue, 29 Sep 2020 08:32:21 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/eidk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/eidk?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/eidk?enrich=false&api-version=2017-04eidk2020-07-02T06:04:06Z2020-07-02T06:04:06Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?enrich=false&api-version=2017-04eidk2020-09-29T08:32:21Z2020-09-29T08:32:21Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:06.657Z2020-07-02T06:04:06.763Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:21.71Z2020-09-29T08:32:21.78Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:07 GMT - etag: '637292666467630000' + date: Tue, 29 Sep 2020 08:32:21 GMT + etag: '637369651417800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/eidk?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2017-04 response: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:07 GMT - etag: '637292666467630000' + date: Tue, 29 Sep 2020 08:32:22 GMT + etag: '637369651417800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/eidk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04 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 1b0f098243a5..ce1dff5913df 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:08Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:23Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:07 GMT + date: Tue, 29 Sep 2020 08:32:22 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/eriodk?api-version=2017-04eriodk2020-07-02T06:04:08Z2020-07-02T06:04:08Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04eriodk2020-09-29T08:32:24Z2020-09-29T08:32:24Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:08.8Z2020-07-02T06:04:08.833ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:24.047Z2020-09-29T08:32:24.077ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:08 GMT + date: Tue, 29 Sep 2020 08:32:23 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/eriodk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04 - request: body: ' @@ -67,33 +67,33 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04 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:55eddc8a-0c9c-4242-88fc-41a623f6586d_G4, - SystemTracker:servicebustestsbname.servicebus.windows.net:eriodk, Timestamp:2020-07-02T06:04:09 + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:08c6afea-e944-4a70-bfb3-b3d1a611082b_G13, + SystemTracker:servicebustestsbname.servicebus.windows.net:eriodk, Timestamp:2020-09-29T08:32:24 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:04:08 GMT - etag: '637292666488330000' + date: Tue, 29 Sep 2020 08:32:24 GMT + etag: '637369651440770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 409 message: Conflict - url: https://servicebustest5levlyksxm.servicebus.windows.net/eriodk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04 response: @@ -101,12 +101,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:09 GMT - etag: '637292666488330000' + date: Tue, 29 Sep 2020 08:32:24 GMT + etag: '637369651440770000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/eriodk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04 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 125d28a8265e..ef83f3c80c47 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:10Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:26Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:10 GMT + date: Tue, 29 Sep 2020 08:32:26 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,61 +34,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dkldf?api-version=2017-04dkldf2020-07-02T06:04:11Z2020-07-02T06:04:11Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkldf?api-version=2017-04dkldf2020-09-29T08:32:27Z2020-09-29T08:32:27Zservicebustestrm7a5oi5hkPT13S49152falsetruePT11MtruePT12M14true00trueActive2020-07-02T06:04:11.077Z2020-07-02T06:04:11.273ZtruePT10MtrueAvailabletrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00trueActive2020-09-29T08:32:27.11Z2020-09-29T08:32:27.28ZtruePT10MtrueAvailabletrue headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:11 GMT + date: Tue, 29 Sep 2020 08:32:27 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkldf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkldf?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04dkldf2020-07-02T06:04:11Z2020-07-02T06:04:11Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04dkldf2020-09-29T08:32:27Z2020-09-29T08:32:27Zservicebustestrm7a5oi5hkPT13S49152falsetruePT11MtruePT12M14true00trueActive2020-07-02T06:04:11.077Z2020-07-02T06:04:11.273Z0001-01-01T00:00:00ZtruePT13S49152falsetruePT11MtruePT12M14true00trueActive2020-09-29T08:32:27.11Z2020-09-29T08:32:27.28Z0001-01-01T00:00:00Ztrue00000PT10MtrueAvailabletrue headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:11 GMT - etag: '637292666512730000' + date: Tue, 29 Sep 2020 08:32:27 GMT + etag: '637369651472800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2017-04 response: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:12 GMT - etag: '637292666512730000' + date: Tue, 29 Sep 2020 08:32:28 GMT + etag: '637369651472800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkldf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkldf?api-version=2017-04 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 f18883f1527b..810106f4049c 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:13Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:29Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:13 GMT + date: Tue, 29 Sep 2020 08:32:28 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,54 +34,54 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:13Z2020-07-02T06:04:13Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:29Z2020-09-29T08:32:29Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:13.54Z2020-07-02T06:04:13.623ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:14 GMT + date: Tue, 29 Sep 2020 08:32:29 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:14Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:13Z2020-07-02T06:04:13Zservicebustest5levlyksxmQueueshttps://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:29Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:13.54Z2020-07-02T06:04:13.623Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:14 GMT + date: Tue, 29 Sep 2020 08:32:29 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -95,67 +95,67 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T06:04:14Z2020-07-02T06:04:14Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:14.87Z2020-07-02T06:04:14.9ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:31.363Z2020-09-29T08:32:31.41ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:15 GMT + date: Tue, 29 Sep 2020 08:32:30 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:15Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:13Z2020-07-02T06:04:13Zservicebustest5levlyksxmQueueshttps://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:29Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:13.54Z2020-07-02T06:04:13.623Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T06:04:14Z2020-07-02T06:04:14Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:14.87Z2020-07-02T06:04:14.9Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:31.363Z2020-09-29T08:32:31.41Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:15 GMT + date: Tue, 29 Sep 2020 08:32:31 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -163,49 +163,49 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:16 GMT - etag: '637292666536230000' + date: Tue, 29 Sep 2020 08:32:32 GMT + etag: '637369651497530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:16Zhttps://servicebustest5levlyksxm.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T06:04:14Z2020-07-02T06:04:14Zservicebustest5levlyksxmQueueshttps://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:31Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:14.87Z2020-07-02T06:04:14.9Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:31.363Z2020-09-29T08:32:31.41Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:16 GMT + date: Tue, 29 Sep 2020 08:32:32 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: @@ -213,34 +213,34 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:17 GMT - etag: '637292666549000000' + date: Tue, 29 Sep 2020 08:32:33 GMT + etag: '637369651514100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:17Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:34Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:17 GMT + date: Tue, 29 Sep 2020 08:32:33 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 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 4de2c8bec0eb..baf647215210 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:18Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:35Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:17 GMT + date: Tue, 29 Sep 2020 08:32:34 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,61 +34,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:18Z2020-07-02T06:04:18Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:35Z2020-09-29T08:32:35Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:18.83Z2020-07-02T06:04:18.89ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:35.837Z2020-09-29T08:32:35.867ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:18 GMT + date: Tue, 29 Sep 2020 08:32:35 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:19Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:18Z2020-07-02T06:04:18Zservicebustest5levlyksxmQueueshttps://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:35Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:18.83Z2020-07-02T06:04:18.89Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:35.837Z2020-09-29T08:32:35.867Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:19 GMT + date: Tue, 29 Sep 2020 08:32:36 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -96,82 +96,82 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:19 GMT - etag: '637292666588900000' + date: Tue, 29 Sep 2020 08:32:36 GMT + etag: '637369651558670000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:20Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:38Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:20 GMT + date: Tue, 29 Sep 2020 08:32:37 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: string: 404No service is hosted at the specified - address. TrackingId:b7677f1e-0eb4-430b-bb95-f565b8cd4de4_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, - Timestamp:2020-07-02T06:04:21 + address. TrackingId:274f5eea-9b59-42c9-969f-d5c670dd776d_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, + Timestamp:2020-09-29T08:32:38 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:04:20 GMT + date: Tue, 29 Sep 2020 08:32:37 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2017-04 response: body: string: 404No service is hosted at the specified - address. TrackingId:3e9eaea5-07b9-4e8c-9512-f2a5bd5fea3f_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, - Timestamp:2020-07-02T06:04:21 + address. TrackingId:30371188-eeff-4660-9047-2cdb1e571a50_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, + Timestamp:2020-09-29T08:32:39 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:04:21 GMT + date: Tue, 29 Sep 2020 08:32:38 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustest5levlyksxm.servicebus.windows.net/non_existing_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/non_existing_queue?api-version=2017-04 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 d848ada1c118..de6db8711b87 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:22Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:40Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:21 GMT + date: Tue, 29 Sep 2020 08:32:39 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue0?api-version=2017-04queue02020-07-02T06:04:22Z2020-07-02T06:04:22Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04queue02020-09-29T08:32:40Z2020-09-29T08:32:40Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:22.717Z2020-07-02T06:04:22.757ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:40.46Z2020-09-29T08:32:40.487ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:22 GMT + date: Tue, 29 Sep 2020 08:32:40 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue0?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04 - request: body: ' @@ -67,26 +67,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue1?api-version=2017-04queue12020-07-02T06:04:23Z2020-07-02T06:04:23Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:32:41Z2020-09-29T08:32:41Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:23.603Z2020-07-02T06:04:23.637ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:41.367Z2020-09-29T08:32:41.4ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:23 GMT + date: Tue, 29 Sep 2020 08:32:41 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04 - request: body: ' @@ -100,26 +100,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue2?api-version=2017-04queue22020-07-02T06:04:24Z2020-07-02T06:04:24Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:32:42Z2020-09-29T08:32:42Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:24.45Z2020-07-02T06:04:24.49ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:42.31Z2020-09-29T08:32:42.387ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:24 GMT + date: Tue, 29 Sep 2020 08:32:42 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04 - request: body: ' @@ -133,26 +133,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue3?api-version=2017-04queue32020-07-02T06:04:25Z2020-07-02T06:04:25Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:32:43Z2020-09-29T08:32:43Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:25.443Z2020-07-02T06:04:25.48ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:43.293Z2020-09-29T08:32:43.323ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:25 GMT + date: Tue, 29 Sep 2020 08:32:43 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue3?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04 - request: body: ' @@ -166,26 +166,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue4?api-version=2017-04queue42020-07-02T06:04:26Z2020-07-02T06:04:26Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:32:44Z2020-09-29T08:32:44Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:26.393Z2020-07-02T06:04:26.483ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:44.133Z2020-09-29T08:32:44.163ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:26 GMT + date: Tue, 29 Sep 2020 08:32:44 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue4?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04 - request: body: ' @@ -199,26 +199,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue5?api-version=2017-04queue52020-07-02T06:04:27Z2020-07-02T06:04:27Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:27.327Z2020-07-02T06:04:27.36ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.087Z2020-09-29T08:32:45.12ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:27 GMT + date: Tue, 29 Sep 2020 08:32:45 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue5?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04 - request: body: ' @@ -232,26 +232,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue6?api-version=2017-04queue62020-07-02T06:04:28Z2020-07-02T06:04:28Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:28.32Z2020-07-02T06:04:28.377ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.957Z2020-09-29T08:32:45.987ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:28 GMT + date: Tue, 29 Sep 2020 08:32:46 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue6?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04 - request: body: ' @@ -265,26 +265,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue7?api-version=2017-04queue72020-07-02T06:04:29Z2020-07-02T06:04:29Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:32:47Z2020-09-29T08:32:47Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:29.18Z2020-07-02T06:04:29.22ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:47.053Z2020-09-29T08:32:47.123ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:28 GMT + date: Tue, 29 Sep 2020 08:32:47 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue7?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04 - request: body: ' @@ -298,26 +298,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue8?api-version=2017-04queue82020-07-02T06:04:30Z2020-07-02T06:04:30Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:32:48Z2020-09-29T08:32:48Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:30.113Z2020-07-02T06:04:30.173ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:48.303Z2020-09-29T08:32:48.397ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:29 GMT + date: Tue, 29 Sep 2020 08:32:48 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue8?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04 - request: body: ' @@ -331,33 +331,33 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/queue9?api-version=2017-04queue92020-07-02T06:04:31Z2020-07-02T06:04:31Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:32:49Z2020-09-29T08:32:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:31.037Z2020-07-02T06:04:31.1ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:49.18Z2020-09-29T08:32:49.233ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:30 GMT + date: Tue, 29 Sep 2020 08:32:49 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue9?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 response: @@ -365,97 +365,97 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:31 GMT - etag: '637292666627570000' + date: Tue, 29 Sep 2020 08:32:50 GMT + etag: '637369651604870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue0?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:32Zhttps://servicebustest5levlyksxm.servicebus.windows.net/queue1?api-version=2017-04queue12020-07-02T06:04:23Z2020-07-02T06:04:23Zservicebustest5levlyksxmQueueshttps://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:41Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:23.603Z2020-07-02T06:04:23.637Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:41.367Z2020-09-29T08:32:41.4Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/queue2?api-version=2017-04queue22020-07-02T06:04:24Z2020-07-02T06:04:24Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:32:42Z2020-09-29T08:32:42Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:24.45Z2020-07-02T06:04:24.49Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:42.31Z2020-09-29T08:32:42.387Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/queue3?api-version=2017-04queue32020-07-02T06:04:25Z2020-07-02T06:04:25Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:32:43Z2020-09-29T08:32:43Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:25.443Z2020-07-02T06:04:25.48Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:43.2970843Z2020-09-29T08:32:43.2970843Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/queue4?api-version=2017-04queue42020-07-02T06:04:26Z2020-07-02T06:04:26Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:32:44Z2020-09-29T08:32:44Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:26.393Z2020-07-02T06:04:26.483Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:44.1411433Z2020-09-29T08:32:44.1411433Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/queue5?api-version=2017-04queue52020-07-02T06:04:27Z2020-07-02T06:04:27Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:27.327Z2020-07-02T06:04:27.36Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.087Z2020-09-29T08:32:45.12Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/queue6?api-version=2017-04queue62020-07-02T06:04:28Z2020-07-02T06:04:28Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:28.32Z2020-07-02T06:04:28.377Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.957Z2020-09-29T08:32:45.987Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/queue7?api-version=2017-04queue72020-07-02T06:04:29Z2020-07-02T06:04:29Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:32:47Z2020-09-29T08:32:47Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:29.18Z2020-07-02T06:04:29.22Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:47.053Z2020-09-29T08:32:47.123Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/queue8?api-version=2017-04queue82020-07-02T06:04:30Z2020-07-02T06:04:30Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:32:48Z2020-09-29T08:32:48Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:30.113Z2020-07-02T06:04:30.173Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:48.303Z2020-09-29T08:32:48.397Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/queue9?api-version=2017-04queue92020-07-02T06:04:31Z2020-07-02T06:04:31Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:32:49Z2020-09-29T08:32:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:31.037Z2020-07-02T06:04:31.1Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:49.18Z2020-09-29T08:32:49.233Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:31 GMT + date: Tue, 29 Sep 2020 08:32:50 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 response: @@ -463,21 +463,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:32 GMT - etag: '637292666636370000' + date: Tue, 29 Sep 2020 08:32:51 GMT + etag: '637369651614000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 response: @@ -485,21 +485,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:32 GMT - etag: '637292666644900000' + date: Tue, 29 Sep 2020 08:32:51 GMT + etag: '637369651623870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 response: @@ -507,21 +507,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:33 GMT - etag: '637292666654800000' + date: Tue, 29 Sep 2020 08:32:52 GMT + etag: '637369651633230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue3?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 response: @@ -529,21 +529,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:33 GMT - etag: '637292666664830000' + date: Tue, 29 Sep 2020 08:32:53 GMT + etag: '637369651641630000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue4?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 response: @@ -551,21 +551,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:34 GMT - etag: '637292666673600000' + date: Tue, 29 Sep 2020 08:32:53 GMT + etag: '637369651651200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue5?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 response: @@ -573,21 +573,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:34 GMT - etag: '637292666683770000' + date: Tue, 29 Sep 2020 08:32:54 GMT + etag: '637369651659870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue6?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 response: @@ -595,21 +595,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:35 GMT - etag: '637292666692200000' + date: Tue, 29 Sep 2020 08:32:54 GMT + etag: '637369651671230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue7?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 response: @@ -617,21 +617,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:35 GMT - etag: '637292666701730000' + date: Tue, 29 Sep 2020 08:32:55 GMT + etag: '637369651683970000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue8?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 response: @@ -639,34 +639,34 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:37 GMT - etag: '637292666711000000' + date: Tue, 29 Sep 2020 08:32:56 GMT + etag: '637369651692330000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/queue9?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:37Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:56Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:37 GMT + date: Tue, 29 Sep 2020 08:32:56 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 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_info_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_info_basic.yaml index 3be893102f59..0ac546617b58 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_info_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_info_basic.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:37Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:57Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:37 GMT + date: Tue, 29 Sep 2020 08:32:57 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,61 +34,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:38Z2020-07-02T06:04:38Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:58Z2020-09-29T08:32:58Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:38.473Z2020-07-02T06:04:38.507ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:58.417Z2020-09-29T08:32:58.5ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:38 GMT + date: Tue, 29 Sep 2020 08:32:58 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2020-07-02T06:04:38Z2020-07-02T06:04:38Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2020-09-29T08:32:58Z2020-09-29T08:32:58Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:38.473Z2020-07-02T06:04:38.507Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:58.417Z2020-09-29T08:32:58.5Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:38 GMT - etag: '637292666785070000' + date: Tue, 29 Sep 2020 08:32:58 GMT + etag: '637369651785000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:39 GMT - etag: '637292666785070000' + date: Tue, 29 Sep 2020 08:32:59 GMT + etag: '637369651785000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 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_info_negative.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_info_negative.yaml index 69980c6d9b95..1a68fcafdec8 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_info_negative.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_info_negative.yaml @@ -5,23 +5,23 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04 response: body: string: Publicly Listed ServicesThis is the list of publicly-listed - services currently available.uuid:816193bd-7a13-4f57-abef-c6ed3b39d216;id=470422020-07-02T06:04:40ZService + services currently available.uuid:e5d65387-b81e-42e1-8cda-1967db5463ea;id=300952020-09-29T08:33:00ZService Bus 1.1 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:40 GMT + date: Tue, 29 Sep 2020 08:32:59 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04 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 3292c96ab6aa..175c98ab2025 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:08:24Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:01Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:08:23 GMT + date: Tue, 29 Sep 2020 08:33:01 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:08:24Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:02Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:08:24 GMT + date: Tue, 29 Sep 2020 08:33:02 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -56,61 +56,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustestrp7fuwfdj2.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:08:25Z2020-07-02T06:08:25Zservicebustestrp7fuwfdj2https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:02Z2020-09-29T08:33:02Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:08:25.31Z2020-07-02T06:08:25.337ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:02.85Z2020-09-29T08:33:02.88ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:08:25 GMT + date: Tue, 29 Sep 2020 08:33:03 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:08:26Zhttps://servicebustestrp7fuwfdj2.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:08:25Z2020-07-02T06:08:25Zservicebustestrp7fuwfdj2Queueshttps://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:02Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:08:25.31Z2020-07-02T06:08:25.337Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:02.85Z2020-09-29T08:33:02.88Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:08:25 GMT + date: Tue, 29 Sep 2020 08:33:03 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -118,58 +118,58 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:08:26 GMT - etag: '637292669053370000' + date: Tue, 29 Sep 2020 08:33:04 GMT + etag: '637369651828800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:08:27Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:04Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:08:26 GMT + date: Tue, 29 Sep 2020 08:33:04 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:08:27Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:05Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:08:27 GMT + date: Tue, 29 Sep 2020 08:33:04 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -183,61 +183,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustestrp7fuwfdj2.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:08:28Z2020-07-02T06:08:28Zservicebustestrp7fuwfdj2https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:05Z2020-09-29T08:33:05Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:08:28.147Z2020-07-02T06:08:28.173ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:05.77Z2020-09-29T08:33:05.8ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:08:28 GMT + date: Tue, 29 Sep 2020 08:33:05 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:08:29Zhttps://servicebustestrp7fuwfdj2.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:08:28Z2020-07-02T06:08:28Zservicebustestrp7fuwfdj2Queueshttps://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:05Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:08:28.147Z2020-07-02T06:08:28.173Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:05.77Z2020-09-29T08:33:05.8Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:08:28 GMT + date: Tue, 29 Sep 2020 08:33:05 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -245,34 +245,34 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:08:29 GMT - etag: '637292669081730000' + date: Tue, 29 Sep 2020 08:33:06 GMT + etag: '637369651858000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:08:30Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:07Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:08:29 GMT + date: Tue, 29 Sep 2020 08:33:07 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestrp7fuwfdj2.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 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_info_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_info_basic.yaml index 43f1bc1fcdd4..b907e2c1b805 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_info_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_info_basic.yaml @@ -5,66 +5,66 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:48Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:08Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:47 GMT + date: Tue, 29 Sep 2020 08:33:08 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:48Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:09Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:48 GMT + date: Tue, 29 Sep 2020 08:33:08 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:49Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:09Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:48 GMT + date: Tue, 29 Sep 2020 08:33:09 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -78,89 +78,89 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:49Z2020-07-02T06:04:49Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:10Z2020-09-29T08:33:10Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:49.547Z2020-07-02T06:04:49.57ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:10.16Z2020-09-29T08:33:10.267ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:49 GMT + date: Tue, 29 Sep 2020 08:33:10 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:50Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:49Z2020-07-02T06:04:49Zservicebustest5levlyksxmQueueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:11Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:10Z2020-09-29T08:33:10Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:49.547Z2020-07-02T06:04:49.57Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:10.16Z2020-09-29T08:33:10.267Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:50 GMT + date: Tue, 29 Sep 2020 08:33:10 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:50Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:49Z2020-07-02T06:04:49Zservicebustest5levlyksxmQueueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:11Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:10Z2020-09-29T08:33:10Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:49.547Z2020-07-02T06:04:49.57Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:10.16Z2020-09-29T08:33:10.267Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:50 GMT + date: Tue, 29 Sep 2020 08:33:11 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -168,34 +168,34 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:50 GMT - etag: '637292666895700000' + date: Tue, 29 Sep 2020 08:33:11 GMT + etag: '637369651902670000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_queue?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:51Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:12Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:51 GMT + date: Tue, 29 Sep 2020 08:33:12 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 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 f037c724f47b..408ef8577f83 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: 401claim is empty. TrackingId:6ea4d709-8d63-4810-b92e-b0f4647c6118_G7, + string: 401claim is empty or token is invalid. TrackingId:bf0e040b-8d63-4468-9cc8-421273cd3c59_G4, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-07-02T06:04:52 + Timestamp:2020-09-29T08:33:13 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:04:52 GMT + date: Tue, 29 Sep 2020 08:33:12 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 401 message: Unauthorized - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: 401claim is empty. TrackingId:f748baba-e251-4863-b082-2aadfe6d9dfe_G1, + string: 401claim is empty or token is invalid. TrackingId:ce4339ff-254a-4730-b12a-af0a240533c3_G1, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-07-02T06:04:52 + Timestamp:2020-09-29T08:33:13 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:04:51 GMT + date: Tue, 29 Sep 2020 08:33:13 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 401 message: Unauthorized - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 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 2fe7d19ce4c1..c1f11bc641ea 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:52Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:14Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:51 GMT + date: Tue, 29 Sep 2020 08:33:14 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:53Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:15Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:52 GMT + date: Tue, 29 Sep 2020 08:33:14 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -56,61 +56,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T06:04:53Z2020-07-02T06:04:53Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:33:15Z2020-09-29T08:33:15Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:53.713Z2020-07-02T06:04:53.79ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:15.657Z2020-09-29T08:33:15.693ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:53 GMT + date: Tue, 29 Sep 2020 08:33:15 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:54Zhttps://servicebustest5levlyksxm.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T06:04:53Z2020-07-02T06:04:53Zservicebustest5levlyksxmQueueshttps://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:15Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:53.713Z2020-07-02T06:04:53.79Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:15.657Z2020-09-29T08:33:15.693Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:53 GMT + date: Tue, 29 Sep 2020 08:33:16 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: @@ -118,34 +118,34 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:55 GMT - etag: '637292666937900000' + date: Tue, 29 Sep 2020 08:33:17 GMT + etag: '637369651956930000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:55Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:17Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:55 GMT + date: Tue, 29 Sep 2020 08:33:17 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 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 66ea5737f19d..05b8eea0024c 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:56Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:18Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:55 GMT + date: Tue, 29 Sep 2020 08:33:18 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,32 +34,32 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/vbmfm?api-version=2017-04vbmfm2020-07-02T06:04:56Z2020-07-02T06:04:56Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04vbmfm2020-09-29T08:33:19Z2020-09-29T08:33:19Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:56.54Z2020-07-02T06:04:56.6ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:56 GMT + date: Tue, 29 Sep 2020 08:33:19 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 - request: body: ' PT1M1024falsetrueP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T06:04:56.540Z2020-07-02T06:04:56.600ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -70,32 +70,32 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04 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:6e78df5b-7ea1-4c5b-ad9a-b7bbbbb7be0e_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, - Timestamp:2020-07-02T06:04:57 + . TrackingId:75d6d8e8-691c-4947-a92a-9fd571da1825_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, + Timestamp:2020-09-29T08:33:19 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:04:56 GMT - etag: '637292666966000000' + date: Tue, 29 Sep 2020 08:33:19 GMT + etag: '637369651991870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 400 message: Bad Request - url: https://servicebustest5levlyksxm.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 - request: body: ' PT1M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T06:04:56.540Z2020-07-02T06:04:56.600ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -106,31 +106,31 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dkfrgx?api-version=2017-04 response: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:5ce751c4-5590-4fa6-a513-e833c3328a2f_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:dkfrgx, - Timestamp:2020-07-02T06:04:57 + . TrackingId:217e54d3-cce5-43a5-8551-93d74a12423d_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:dkfrgx, + Timestamp:2020-09-29T08:33:20 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:04:57 GMT + date: Tue, 29 Sep 2020 08:33:20 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkfrgx?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkfrgx?api-version=2017-04 - request: body: ' P25D1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T06:04:56.540Z2020-07-02T06:04:56.600ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -141,7 +141,7 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04 response: @@ -152,26 +152,26 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:14dfc377-879d-4a0b-b1d7-b7ac2d6489cc_G5, - SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, Timestamp:2020-07-02T06:04:57' + 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' headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:04:57 GMT - etag: '637292666966000000' + date: Tue, 29 Sep 2020 08:33:20 GMT + etag: '637369651991870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 400 message: Bad Request - url: https://servicebustest5levlyksxm.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04 response: @@ -179,12 +179,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:04:57 GMT - etag: '637292666966000000' + date: Tue, 29 Sep 2020 08:33:21 GMT + etag: '637369651991870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 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 d3a11852f52c..b471e7e0cf70 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:59Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:22Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:04:59 GMT + date: Tue, 29 Sep 2020 08:33:21 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,32 +34,32 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-07-02T06:04:59Z2020-07-02T06:04:59Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-09-29T08:33:22Z2020-09-29T08:33:22Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:59.7Z2020-07-02T06:04:59.777ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:22.613Z2020-09-29T08:33:22.687ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:00 GMT + date: Tue, 29 Sep 2020 08:33:22 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04 - request: body: ' PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T06:04:59.700Z2020-07-02T06:04:59.777ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:33:22.613Z2020-09-29T08:33:22.687ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -70,62 +70,62 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-07-02T06:05:00Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-09-29T08:33:23Zservicebustestrm7a5oi5hkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T06:04:59.7Z2020-07-02T06:04:59.777ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:33:22.613Z2020-09-29T08:33:22.687ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:00 GMT - etag: '637292666997770000' + date: Tue, 29 Sep 2020 08:33:22 GMT + etag: '637369652026870000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2020-07-02T06:04:59Z2020-07-02T06:05:00Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2020-09-29T08:33:22Z2020-09-29T08:33:23Zservicebustestrm7a5oi5hkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T06:04:59.7Z2020-07-02T06:05:00.313Z0001-01-01T00:00:00ZtruePT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:33:22.613Z2020-09-29T08:33:23.217Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:00 GMT - etag: '637292667003130000' + date: Tue, 29 Sep 2020 08:33:23 GMT + etag: '637369652032170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 - request: body: ' PT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-07-02T06:04:59.700Z2020-07-02T06:05:00.313Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletrue' + />Active2020-09-29T08:33:22.613Z2020-09-29T08:33:23.217Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletrue' headers: Accept: - application/xml @@ -136,63 +136,63 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-07-02T06:05:00Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-09-29T08:33:23Zservicebustestrm7a5oi5hkPT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-07-02T06:04:59.7Z2020-07-02T06:05:00.313Z0001-01-01T00:00:00ZtruePT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-09-29T08:33:22.613Z2020-09-29T08:33:23.217Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletrue headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:00 GMT - etag: '637292667003130000' + date: Tue, 29 Sep 2020 08:33:23 GMT + etag: '637369652032170000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2020-07-02T06:04:59Z2020-07-02T06:05:00Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2020-09-29T08:33:22Z2020-09-29T08:33:23Zservicebustestrm7a5oi5hkPT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-07-02T06:04:59.7Z2020-07-02T06:05:00.46Z0001-01-01T00:00:00ZtruePT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-09-29T08:33:22.613Z2020-09-29T08:33:23.78Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletrue headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:00 GMT - etag: '637292667004600000' + date: Tue, 29 Sep 2020 08:33:23 GMT + etag: '637369652037800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 response: @@ -200,12 +200,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:01 GMT - etag: '637292667004600000' + date: Tue, 29 Sep 2020 08:33:24 GMT + etag: '637369652037800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04 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 340889052687..6215a42a33bd 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.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestviy6yieihi.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-17T02:29:56Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:25Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Fri, 17 Jul 2020 02:29:56 GMT + date: Tue, 29 Sep 2020 08:33:25 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestviy6yieihi.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-07-17T02:29:56Z2020-07-17T02:29:57Zservicebustestviy6yieihihttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:33:25Z2020-09-29T08:33:25Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-17T02:29:56.967Z2020-07-17T02:29:57.04ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:25.717Z2020-09-29T08:33:25.75ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 17 Jul 2020 02:29:56 GMT + date: Tue, 29 Sep 2020 08:33:26 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 - 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.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-07-17T02:29:57Z2020-07-17T02:29:57Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:33:26Z2020-09-29T08:33:26ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-17T02:29:57.5311135Z2020-07-17T02:29:57.5311135Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:26.5726348Z2020-09-29T08:33:26.5726348Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 17 Jul 2020 02:29:57 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:26 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 - request: body: ' testcidkey_stringstr1key_int2key_long2147483650key_boolfalsekey_datetime2020-07-05T11:12:13key_durationP1DT2H3Mstr1key_int2key_long2147483650key_boolfalsekey_datetime2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13test_rule_1' + xsi:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13truetest_rule_1' headers: Accept: - application/xml Content-Length: - - '1765' + - '1816' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: body: - string: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-07-17T02:29:57Z2020-07-17T02:29:57Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-09-29T08:33:26Z2020-09-29T08:33:26Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:132020-07-17T02:29:57.7811732Ztest_rule_1 + i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2020-09-29T08:33:26.8695449Ztest_rule_1 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 17 Jul 2020 02:29:57 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:26 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12020-07-17T02:29:57Z2020-07-17T02:29:57Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12020-09-29T08:33:26Z2020-09-29T08:33:26Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:132020-07-17T02:29:57.7591895Ztest_rule_1 + i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2020-09-29T08:33:26.8703109Ztest_rule_1 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 17 Jul 2020 02:29:57 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:26 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04 - request: body: ' Priority = @param120@param1str1str1truetest_rule_2' headers: Accept: - application/xml Content-Length: - - '690' + - '741' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: body: - string: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-07-17T02:29:57Z2020-07-17T02:29:57Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-09-29T08:33:26Z2020-09-29T08:33:26ZPriority = @param120@param1str12020-07-17T02:29:57.9998237Ztest_rule_2 + i:type="d6p1:string" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">str1true2020-09-29T08:33:26.9945532Ztest_rule_2 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 17 Jul 2020 02:29:57 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:26 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22020-07-17T02:29:57Z2020-07-17T02:29:57Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22020-09-29T08:33:26Z2020-09-29T08:33:26ZPriority = @param120@param1str12020-07-17T02:29:57.9779356Ztest_rule_2 + i:type="d6p1:string" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">str1true2020-09-29T08:33:26.9953178Ztest_rule_2 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 17 Jul 2020 02:29:57 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:26 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04 - request: body: ' @@ -259,63 +259,63 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: body: - string: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-07-17T02:29:58Z2020-07-17T02:29:58Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-09-29T08:33:27Z2020-09-29T08:33:27Z1=1202020-07-17T02:29:58.2189657Ztest_rule_3 + i:type="EmptyRuleAction"/>2020-09-29T08:33:27.1195107Ztest_rule_3 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 17 Jul 2020 02:29:57 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:27 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32020-07-17T02:29:58Z2020-07-17T02:29:58Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32020-09-29T08:33:27Z2020-09-29T08:33:27Z1=1202020-07-17T02:29:58.2138767Ztest_rule_3 + i:type="EmptyRuleAction"/>2020-09-29T08:33:27.1203102Ztest_rule_3 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Fri, 17 Jul 2020 02:29:57 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:27 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: @@ -323,21 +323,21 @@ interactions: string: '' headers: content-length: '0' - date: Fri, 17 Jul 2020 02:29:58 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:27 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: @@ -345,21 +345,21 @@ interactions: string: '' headers: content-length: '0' - date: Fri, 17 Jul 2020 02:29:58 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:27 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: @@ -367,21 +367,21 @@ interactions: string: '' headers: content-length: '0' - date: Fri, 17 Jul 2020 02:29:58 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:27 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: @@ -389,21 +389,21 @@ interactions: string: '' headers: content-length: '0' - date: Fri, 17 Jul 2020 02:29:58 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:28 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: @@ -411,12 +411,12 @@ interactions: string: '' headers: content-length: '0' - date: Fri, 17 Jul 2020 02:29:58 GMT - etag: '637305497970400000' + date: Tue, 29 Sep 2020 08:33:28 GMT + etag: '637369652057500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustestviy6yieihi.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 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 346613b03c38..74fd060321cf 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:04Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:29Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:04 GMT + date: Tue, 29 Sep 2020 08:33:29 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-07-02T06:05:05Z2020-07-02T06:05:05Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:33:29Z2020-09-29T08:33:29Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:05.173Z2020-07-02T06:05:05.21ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:29.62Z2020-09-29T08:33:29.653ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:05 GMT + date: Tue, 29 Sep 2020 08:33:29 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 - request: body: ' @@ -67,106 +67,106 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-07-02T06:05:05Z2020-07-02T06:05:05Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:33:30Z2020-09-29T08:33:30ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:05.6834019Z2020-07-02T06:05:05.6834019Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:30.2674994Z2020-09-29T08:33:30.2674994Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:05 GMT - etag: '637292667052100000' + date: Tue, 29 Sep 2020 08:33:30 GMT + etag: '637369652096530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 - request: body: ' Priority = ''low''Priority = ''low''20truerule' headers: Accept: - application/xml Content-Length: - - '456' + - '550' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-07-02T06:05:05Z2020-07-02T06:05:05Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-09-29T08:33:30Z2020-09-29T08:33:30ZPriority - = 'low'202020-07-02T06:05:05.9958288Zrule + = 'low'20true2020-09-29T08:33:30.6425026Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:05 GMT - etag: '637292667052100000' + date: Tue, 29 Sep 2020 08:33:30 GMT + etag: '637369652096530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 - request: body: ' Priority = ''low''Priority = ''low''20truerule' headers: Accept: - application/xml Content-Length: - - '456' + - '550' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo|rule' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:f9f7a3a8-6c42-4729-aa97-a7986ded6f38_B9, - SystemTracker:NoSystemTracker, Timestamp:2020-07-02T06:05:06 + already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:8c5dc38a-1595-45de-8f3b-87bf3cebb8fc_B2, + SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:33:30 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:05:06 GMT - etag: '637292667052100000' + date: Tue, 29 Sep 2020 08:33:31 GMT + etag: '637369652096530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 409 message: Conflict - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 response: @@ -174,21 +174,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:06 GMT - etag: '637292667052100000' + date: Tue, 29 Sep 2020 08:33:32 GMT + etag: '637369652096530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: @@ -196,21 +196,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:06 GMT - etag: '637292667052100000' + date: Tue, 29 Sep 2020 08:33:32 GMT + etag: '637369652096530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: @@ -218,12 +218,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:07 GMT - etag: '637292667052100000' + date: Tue, 29 Sep 2020 08:33:32 GMT + etag: '637369652096530000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 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 8da523145b8c..4db3c06d9a3c 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:08Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:33Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:07 GMT + date: Tue, 29 Sep 2020 08:33:32 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-07-02T06:05:09Z2020-07-02T06:05:09Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:33:34Z2020-09-29T08:33:34Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:09.037Z2020-07-02T06:05:09.11ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:34.04Z2020-09-29T08:33:34.083ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:08 GMT + date: Tue, 29 Sep 2020 08:33:33 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 - request: body: ' @@ -67,229 +67,229 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-07-02T06:05:09Z2020-07-02T06:05:09Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:33:34Z2020-09-29T08:33:34ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:09.6338697Z2020-07-02T06:05:09.6338697Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:34.5840955Z2020-09-29T08:33:34.5840955Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:08 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:34 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:09Zhttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-07-02T06:05:09Z2020-07-02T06:05:09ZRuleshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:34Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-09-29T08:33:34Z2020-09-29T08:33:34Z1=1202020-07-02T06:05:09.6380691Z$Default + i:type="EmptyRuleAction"/>2020-09-29T08:33:34.586152Z$Default headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:08 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:34 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 - request: body: ' Priority = ''low''Priority = ''low''20truetest_rule_1' headers: Accept: - application/xml Content-Length: - - '463' + - '557' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-07-02T06:05:09Z2020-07-02T06:05:09Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-09-29T08:33:34Z2020-09-29T08:33:34ZPriority - = 'low'202020-07-02T06:05:09.9775989Ztest_rule_1 + = 'low'20true2020-09-29T08:33:34.9121111Ztest_rule_1 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:34 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 - request: body: ' Priority = ''middle''Priority = ''middle''20truetest_rule_2' headers: Accept: - application/xml Content-Length: - - '466' + - '560' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-07-02T06:05:10Z2020-07-02T06:05:10Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-09-29T08:33:35Z2020-09-29T08:33:35ZPriority - = 'middle'202020-07-02T06:05:10.0557241Ztest_rule_2 + = 'middle'20true2020-09-29T08:33:35.1621489Ztest_rule_2 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:34 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 - request: body: ' Priority = ''high''Priority = ''high''20truetest_rule_3' headers: Accept: - application/xml Content-Length: - - '464' + - '558' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-07-02T06:05:10Z2020-07-02T06:05:10Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-09-29T08:33:35Z2020-09-29T08:33:35ZPriority - = 'high'202020-07-02T06:05:10.2119905Ztest_rule_3 + = 'high'20true2020-09-29T08:33:35.4902498Ztest_rule_3 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:34 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:10Zhttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-07-02T06:05:09Z2020-07-02T06:05:09ZRuleshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:35Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-09-29T08:33:34Z2020-09-29T08:33:34Z1=1202020-07-02T06:05:09.6380691Z$Defaulthttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-07-02T06:05:09Z2020-07-02T06:05:09Z2020-09-29T08:33:34.586152Z$Defaulthttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-09-29T08:33:34Z2020-09-29T08:33:34ZPriority - = 'low'202020-07-02T06:05:09.9661758Ztest_rule_1https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-07-02T06:05:10Z2020-07-02T06:05:10Z20true2020-09-29T08:33:34.9148373Ztest_rule_1https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-09-29T08:33:35Z2020-09-29T08:33:35ZPriority - = 'middle'202020-07-02T06:05:10.0599015Ztest_rule_2https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-07-02T06:05:10Z2020-07-02T06:05:10Z20true2020-09-29T08:33:35.1653596Ztest_rule_2https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-09-29T08:33:35Z2020-09-29T08:33:35ZPriority - = 'high'202020-07-02T06:05:10.2161502Ztest_rule_3 + = 'high'20true2020-09-29T08:33:35.493445Ztest_rule_3 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:34 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: @@ -297,65 +297,65 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:35 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:10Zhttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-07-02T06:05:09Z2020-07-02T06:05:09ZRuleshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:35Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-09-29T08:33:34Z2020-09-29T08:33:34Z1=1202020-07-02T06:05:09.6380691Z$Defaulthttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-07-02T06:05:09Z2020-07-02T06:05:09Z2020-09-29T08:33:34.586152Z$Defaulthttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-09-29T08:33:34Z2020-09-29T08:33:34ZPriority - = 'low'202020-07-02T06:05:09.9661758Ztest_rule_1https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-07-02T06:05:10Z2020-07-02T06:05:10Z20true2020-09-29T08:33:34.9148373Ztest_rule_1https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-09-29T08:33:35Z2020-09-29T08:33:35ZPriority - = 'high'202020-07-02T06:05:10.2161502Ztest_rule_3 + = 'high'20true2020-09-29T08:33:35.493445Ztest_rule_3 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:35 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: @@ -363,21 +363,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:35 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: @@ -385,51 +385,51 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:35 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:10Zhttps://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-07-02T06:05:09Z2020-07-02T06:05:09ZRuleshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:36Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-09-29T08:33:34Z2020-09-29T08:33:34Z1=1202020-07-02T06:05:09.6380691Z$Default + i:type="EmptyRuleAction"/>2020-09-29T08:33:34.586152Z$Default headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:35 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: @@ -437,21 +437,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:09 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:35 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: @@ -459,12 +459,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:10 GMT - etag: '637292667091100000' + date: Tue, 29 Sep 2020 08:33:36 GMT + etag: '637369652140830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 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 0c7b3cdf15d1..2d52ac8c95f6 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:11Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:37Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:10 GMT + date: Tue, 29 Sep 2020 08:33:37 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T06:05:12Z2020-07-02T06:05:12Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:33:38Z2020-09-29T08:33:38Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:12.223Z2020-07-02T06:05:12.32ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:38.29Z2020-09-29T08:33:38.32ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:11 GMT + date: Tue, 29 Sep 2020 08:33:38 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: ' @@ -67,137 +67,137 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T06:05:12Z2020-07-02T06:05:12Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:33:38Z2020-09-29T08:33:38ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:12.7588531Z2020-07-02T06:05:12.7588531Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:38.883263Z2020-09-29T08:33:38.883263Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:12 GMT - etag: '637292667123200000' + date: Tue, 29 Sep 2020 08:33:38 GMT + etag: '637369652183200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 - request: body: ' Priority = ''low''Priority = ''low''20truerule' headers: Accept: - application/xml Content-Length: - - '456' + - '550' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-07-02T06:05:13Z2020-07-02T06:05:13Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:33:39Z2020-09-29T08:33:39ZPriority - = 'low'202020-07-02T06:05:13.0869586Zrule + = 'low'20true2020-09-29T08:33:39.1644675Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:12 GMT - etag: '637292667123200000' + date: Tue, 29 Sep 2020 08:33:39 GMT + etag: '637369652183200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-07-02T06:05:13Z2020-07-02T06:05:13Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-09-29T08:33:39Z2020-09-29T08:33:39ZPriority - = 'low'202020-07-02T06:05:13.089767Zrule + = 'low'20true2020-09-29T08:33:39.1612159Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:12 GMT - etag: '637292667123200000' + date: Tue, 29 Sep 2020 08:33:39 GMT + etag: '637369652183200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 - request: body: ' Priority = ''low''2020-07-02T06:05:13.089767Ziewdm' + xsi:type="SqlFilter">Priority = ''low''20true2020-09-29T08:33:39.161215Ziewdm' headers: Accept: - application/xml Content-Length: - - '507' + - '601' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04 response: body: string: 404Entity 'servicebustestsbname:Topic:fjrui|eqkovc|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:68ba35f0-0933-4bb8-8abc-d0eb496212cd_B7, - SystemTracker:NoSystemTracker, Timestamp:2020-07-02T06:05:13 + was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:d56acd19-5d44-4a92-ae44-a8f53b3b72b9_B4, + SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:33:39 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:05:14 GMT - etag: '637292667123200000' + date: Tue, 29 Sep 2020 08:33:40 GMT + etag: '637369652183200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: @@ -205,21 +205,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:14 GMT - etag: '637292667123200000' + date: Tue, 29 Sep 2020 08:33:40 GMT + etag: '637369652183200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: @@ -227,21 +227,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:14 GMT - etag: '637292667123200000' + date: Tue, 29 Sep 2020 08:33:40 GMT + etag: '637369652183200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: @@ -249,12 +249,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:14 GMT - etag: '637292667123200000' + date: Tue, 29 Sep 2020 08:33:41 GMT + etag: '637369652183200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 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 4aae782d9d78..403045f10c66 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:15Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:42Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:15 GMT + date: Tue, 29 Sep 2020 08:33:42 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T06:05:15Z2020-07-02T06:05:16Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:33:42Z2020-09-29T08:33:42Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:15.947Z2020-07-02T06:05:16.003ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:42.817Z2020-09-29T08:33:42.85ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:16 GMT + date: Tue, 29 Sep 2020 08:33:43 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: ' @@ -67,168 +67,168 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T06:05:16Z2020-07-02T06:05:16Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:33:43Z2020-09-29T08:33:43ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:16.5474086Z2020-07-02T06:05:16.5474086Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:43.4735252Z2020-09-29T08:33:43.4735252Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:16 GMT - etag: '637292667160030000' + date: Tue, 29 Sep 2020 08:33:43 GMT + etag: '637369652228500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 - request: body: ' Priority = ''low''Priority = ''low''20truerule' headers: Accept: - application/xml Content-Length: - - '456' + - '550' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-07-02T06:05:16Z2020-07-02T06:05:16Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:33:43Z2020-09-29T08:33:43ZPriority - = 'low'202020-07-02T06:05:16.7974449Zrule + = 'low'20true2020-09-29T08:33:43.7547759Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:16 GMT - etag: '637292667160030000' + date: Tue, 29 Sep 2020 08:33:43 GMT + etag: '637369652228500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-07-02T06:05:16Z2020-07-02T06:05:16Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-09-29T08:33:43Z2020-09-29T08:33:43ZPriority - = 'low'202020-07-02T06:05:16.8002336Zrule + = 'low'20true2020-09-29T08:33:43.7549721Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:16 GMT - etag: '637292667160030000' + date: Tue, 29 Sep 2020 08:33:44 GMT + etag: '637369652228500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 - request: body: ' testcidSET Priority = ''low''2020-07-02T06:05:16.800233Zrule' + xsi:type="SqlRuleAction">SET Priority = ''low''20true2020-09-29T08:33:43.754972Zrule' headers: Accept: - application/xml Content-Length: - - '561' + - '655' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-07-02T06:05:16Z2020-07-02T06:05:16Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:33:44Z2020-09-29T08:33:44ZtestcidSET Priority = 'low'202020-07-02T06:05:16.9072254Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2020-09-29T08:33:44.1297755Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:16 GMT - etag: '637292667160030000' + date: Tue, 29 Sep 2020 08:33:44 GMT + etag: '637369652228500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-07-02T06:05:16Z2020-07-02T06:05:16Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-09-29T08:33:43Z2020-09-29T08:33:43ZtestcidSET Priority = 'low'202020-07-02T06:05:16.8002336Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2020-09-29T08:33:43.7549721Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:16 GMT - etag: '637292667160030000' + date: Tue, 29 Sep 2020 08:33:44 GMT + etag: '637369652228500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: @@ -236,21 +236,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:16 GMT - etag: '637292667160030000' + date: Tue, 29 Sep 2020 08:33:44 GMT + etag: '637369652228500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: @@ -258,21 +258,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:16 GMT - etag: '637292667160030000' + date: Tue, 29 Sep 2020 08:33:44 GMT + etag: '637369652228500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: @@ -280,12 +280,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:17 GMT - etag: '637292667160030000' + date: Tue, 29 Sep 2020 08:33:45 GMT + etag: '637369652228500000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 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 3a8dfef8b261..b588440670af 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:18Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:45Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:17 GMT + date: Tue, 29 Sep 2020 08:33:45 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-07-02T06:05:18Z2020-07-02T06:05:18Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:33:46Z2020-09-29T08:33:46Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:18.587Z2020-07-02T06:05:18.647ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:46.497Z2020-09-29T08:33:46.537ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:18 GMT + date: Tue, 29 Sep 2020 08:33:46 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 - request: body: ' @@ -67,62 +67,62 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-07-02T06:05:19Z2020-07-02T06:05:19Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:33:47Z2020-09-29T08:33:47ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:19.108854Z2020-07-02T06:05:19.108854Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:47.1916711Z2020-09-29T08:33:47.1916711Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:18 GMT - etag: '637292667186470000' + date: Tue, 29 Sep 2020 08:33:46 GMT + etag: '637369652265370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-07-02T06:05:19Z2020-07-02T06:05:19Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-09-29T08:33:47Z2020-09-29T08:33:47ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:19.1114288Z2020-07-02T06:05:19.1114288Z2020-07-02T06:05:19.1114288ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:47.1938309Z2020-09-29T08:33:47.1938309Z2020-09-29T08:33:47.1938309Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:18 GMT - etag: '637292667186470000' + date: Tue, 29 Sep 2020 08:33:46 GMT + etag: '637369652265370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: @@ -130,21 +130,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:18 GMT - etag: '637292667186470000' + date: Tue, 29 Sep 2020 08:33:47 GMT + etag: '637369652265370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: @@ -152,12 +152,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:19 GMT - etag: '637292667186470000' + date: Tue, 29 Sep 2020 08:33:47 GMT + etag: '637369652265370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 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 9c3892dc2b7c..58dff8841e87 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:20Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:48Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:19 GMT + date: Tue, 29 Sep 2020 08:33:47 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-07-02T06:05:21Z2020-07-02T06:05:21Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:33:49Z2020-09-29T08:33:49Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:21.103Z2020-07-02T06:05:21.22ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:49.483Z2020-09-29T08:33:49.523ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:21 GMT + date: Tue, 29 Sep 2020 08:33:49 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-07-02T06:05:21Z2020-07-02T06:05:21Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:33:50Z2020-09-29T08:33:50ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:21.72853Z2020-07-02T06:05:21.72853Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:50.0143397Z2020-09-29T08:33:50.0143397Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:21 GMT - etag: '637292667212200000' + date: Tue, 29 Sep 2020 08:33:50 GMT + etag: '637369652295230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 - request: body: ' @@ -101,32 +101,32 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:a00a14e0-9a3e-44e3-916d-69b7da98a154_B0, - SystemTracker:NoSystemTracker, Timestamp:2020-07-02T06:05:21 + 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 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:05:22 GMT - etag: '637292667212200000' + date: Tue, 29 Sep 2020 08:33:51 GMT + etag: '637369652295230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 409 message: Conflict - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: @@ -134,21 +134,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:22 GMT - etag: '637292667212200000' + date: Tue, 29 Sep 2020 08:33:51 GMT + etag: '637369652295230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: @@ -156,12 +156,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:23 GMT - etag: '637292667212200000' + date: Tue, 29 Sep 2020 08:33:52 GMT + etag: '637369652295230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 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 8d2d0585cc25..86120ba8fa6b 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:24Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:53Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:23 GMT + date: Tue, 29 Sep 2020 08:33:52 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-07-02T06:05:24Z2020-07-02T06:05:24Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:33:53Z2020-09-29T08:33:53Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:24.56Z2020-07-02T06:05:24.627ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:53.573Z2020-09-29T08:33:53.607ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:24 GMT + date: Tue, 29 Sep 2020 08:33:53 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04 - request: body: ' @@ -67,62 +67,62 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2020-07-02T06:05:25Z2020-07-02T06:05:25Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2020-09-29T08:33:54Z2020-09-29T08:33:54ZPT13StruePT11Mtruetrue014trueActive2020-07-02T06:05:25.0794503Z2020-07-02T06:05:25.0794503Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2020-09-29T08:33:54.2234305Z2020-09-29T08:33:54.2234305Z0001-01-01T00:00:00PT10MAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:24 GMT - etag: '637292667246270000' + date: Tue, 29 Sep 2020 08:33:54 GMT + etag: '637369652336070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest5levlyksxm.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2020-07-02T06:05:25Z2020-07-02T06:05:25Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2020-09-29T08:33:54Z2020-09-29T08:33:54ZPT13StruePT11Mtruetrue014trueActive2020-07-02T06:05:25.0871174Z2020-07-02T06:05:25.0871174Z2020-07-02T06:05:25.0871174ZPT13StruePT11Mtruetrue014trueActive2020-09-29T08:33:54.2120622Z2020-09-29T08:33:54.2120622Z2020-09-29T08:33:54.213Z00000PT10MAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:25 GMT - etag: '637292667246270000' + date: Tue, 29 Sep 2020 08:33:54 GMT + etag: '637369652336070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 response: @@ -130,21 +130,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:25 GMT - etag: '637292667246270000' + date: Tue, 29 Sep 2020 08:33:54 GMT + etag: '637369652336070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: @@ -152,12 +152,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:25 GMT - etag: '637292667246270000' + date: Tue, 29 Sep 2020 08:33:54 GMT + etag: '637369652336070000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04 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 4accab6f1ff2..b06e4a6d15ce 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:26Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:55Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:26 GMT + date: Tue, 29 Sep 2020 08:33:55 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-07-02T06:05:26Z2020-07-02T06:05:27Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-09-29T08:33:56Z2020-09-29T08:33:56Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:26.967Z2020-07-02T06:05:27.037ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:56.41Z2020-09-29T08:33:56.483ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:27 GMT + date: Tue, 29 Sep 2020 08:33:56 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-07-02T06:05:27Z2020-07-02T06:05:27Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:27.4897912Z2020-07-02T06:05:27.4897912Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0633257Z2020-09-29T08:33:57.0633257Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:27 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:56 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:27Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-07-02T06:05:27Z2020-07-02T06:05:27ZSubscriptionshttps://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:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:27.4959109Z2020-07-02T06:05:27.4959109Z2020-07-02T06:05:27.497ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:27 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:56 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -131,98 +131,98 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-07-02T06:05:27Z2020-07-02T06:05:27Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:27.7865921Z2020-07-02T06:05:27.7865921Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.34461Z2020-09-29T08:33:57.34461Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:27 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:56 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:27Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-07-02T06:05:27Z2020-07-02T06:05:27ZSubscriptionshttps://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:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:27.4959109Z2020-07-02T06:05:27.4959109Z2020-07-02T06:05:27.497ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-07-02T06:05:27Z2020-07-02T06:05:27Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:27.7771713Z2020-07-02T06:05:27.7771713Z2020-07-02T06:05:27.7771713ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:27 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:56 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-07-02T06:05:27Z2020-07-02T06:05:27Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:27.4959109Z2020-07-02T06:05:27.4959109Z2020-07-02T06:05:27.497ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:27 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:56 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 response: @@ -230,51 +230,51 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:27 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:57 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:27Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-07-02T06:05:27Z2020-07-02T06:05:27ZSubscriptionshttps://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:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:27.7771713Z2020-07-02T06:05:27.7771713Z2020-07-02T06:05:27.7771713ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:27 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:57 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 response: @@ -282,45 +282,45 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:27 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:57 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:28Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:58Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:28 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:57 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 response: @@ -328,12 +328,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:28 GMT - etag: '637292667270370000' + date: Tue, 29 Sep 2020 08:33:58 GMT + etag: '637369652364830000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topicgda?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04 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_info_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_info_basic.yaml index 9f1e12a1c014..de5393bbded6 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_info_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_info_basic.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:29Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:59Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:28 GMT + date: Tue, 29 Sep 2020 08:33:58 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dcvxqa?api-version=2017-04dcvxqa2020-07-02T06:05:29Z2020-07-02T06:05:29Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa?api-version=2017-04dcvxqa2020-09-29T08:34:00Z2020-09-29T08:34:00Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:29.477Z2020-07-02T06:05:29.54ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:00.08Z2020-09-29T08:34:00.123ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:29 GMT + date: Tue, 29 Sep 2020 08:33:59 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dcvxqa?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa?api-version=2017-04 - request: body: ' @@ -67,62 +67,62 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04xvazzag2020-07-02T06:05:30Z2020-07-02T06:05:30Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04xvazzag2020-09-29T08:34:00Z2020-09-29T08:34:00ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:30.0706282Z2020-07-02T06:05:30.0706282Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:00.6637292Z2020-09-29T08:34:00.6637292Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:30 GMT - etag: '637292667295400000' + date: Tue, 29 Sep 2020 08:34:00 GMT + etag: '637369652401230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest5levlyksxm.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04xvazzag2020-07-02T06:05:30Z2020-07-02T06:05:30Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04xvazzag2020-09-29T08:34:00Z2020-09-29T08:34:00ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:30.0764416Z2020-07-02T06:05:30.0764416Z2020-07-02T06:05:30.077ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:00.664438Z2020-09-29T08:34:00.664438Z2020-09-29T08:34:00.664438Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:30 GMT - etag: '637292667295400000' + date: Tue, 29 Sep 2020 08:34:00 GMT + etag: '637369652401230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 response: @@ -130,21 +130,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:30 GMT - etag: '637292667295400000' + date: Tue, 29 Sep 2020 08:34:00 GMT + etag: '637369652401230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04 response: @@ -152,12 +152,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:30 GMT - etag: '637292667295400000' + date: Tue, 29 Sep 2020 08:34:00 GMT + etag: '637369652401230000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dcvxqa?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa?api-version=2017-04 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 4ffbd326d711..123b5edc960f 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:31Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:02Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:31 GMT + date: Tue, 29 Sep 2020 08:34:01 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,50 +34,50 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-07-02T06:05:31Z2020-07-02T06:05:32Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-09-29T08:34:02Z2020-09-29T08:34:02Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:31.99Z2020-07-02T06:05:32.03ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:02.5Z2020-09-29T08:34:02.537ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:32 GMT + date: Tue, 29 Sep 2020 08:34:02 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:32Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:03Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:32 GMT - etag: '637292667320300000' + date: Tue, 29 Sep 2020 08:34:02 GMT + etag: '637369652425370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -91,27 +91,27 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-07-02T06:05:32Z2020-07-02T06:05:32Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:34:03Z2020-09-29T08:34:03ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:32.5871316Z2020-07-02T06:05:32.5871316Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.1785346Z2020-09-29T08:34:03.1785346Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:32 GMT - etag: '637292667320300000' + date: Tue, 29 Sep 2020 08:34:02 GMT + etag: '637369652425370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 - request: body: ' @@ -125,70 +125,70 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-07-02T06:05:32Z2020-07-02T06:05:32Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:34:03Z2020-09-29T08:34:03ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:32.8684518Z2020-07-02T06:05:32.8684518Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.5379366Z2020-09-29T08:34:03.5379366Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:32 GMT - etag: '637292667320300000' + date: Tue, 29 Sep 2020 08:34:02 GMT + etag: '637369652425370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:33Zhttps://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-07-02T06:05:32Z2020-07-02T06:05:32ZSubscriptionshttps://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:03ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:32.5987936Z2020-07-02T06:05:32.5987936Z2020-07-02T06:05:32.6ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.1831337Z2020-09-29T08:34:03.1831337Z2020-09-29T08:34:03.1831337Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-07-02T06:05:32Z2020-07-02T06:05:32Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:34:03Z2020-09-29T08:34:03ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:32.8800426Z2020-07-02T06:05:32.8800426Z2020-07-02T06:05:32.8800426ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.5268498Z2020-09-29T08:34:03.5268498Z2020-09-29T08:34:03.5268498Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:32 GMT - etag: '637292667320300000' + date: Tue, 29 Sep 2020 08:34:03 GMT + etag: '637369652425370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 response: @@ -196,21 +196,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:32 GMT - etag: '637292667320300000' + date: Tue, 29 Sep 2020 08:34:03 GMT + etag: '637369652425370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 response: @@ -218,45 +218,45 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:32 GMT - etag: '637292667320300000' + date: Tue, 29 Sep 2020 08:34:03 GMT + etag: '637369652425370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:33Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:03Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:32 GMT - etag: '637292667320300000' + date: Tue, 29 Sep 2020 08:34:03 GMT + etag: '637369652425370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 response: @@ -264,12 +264,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:33 GMT - etag: '637292667320300000' + date: Tue, 29 Sep 2020 08:34:03 GMT + etag: '637369652425370000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/lkoqxc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04 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_info.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_info.yaml index 2ffcacfa3160..b0373b46b2a5 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_info.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_info.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:34Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:04Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:33 GMT + date: Tue, 29 Sep 2020 08:34:04 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,74 +34,74 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv?api-version=2017-04dkoamv2020-07-02T06:05:34Z2020-07-02T06:05:34Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv?api-version=2017-04dkoamv2020-09-29T08:34:05Z2020-09-29T08:34:05Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:34.66Z2020-07-02T06:05:34.75ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:05.42Z2020-09-29T08:34:05.447ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:34 GMT + date: Tue, 29 Sep 2020 08:34:05 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:35Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:05Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:34 GMT - etag: '637292667347500000' + date: Tue, 29 Sep 2020 08:34:05 GMT + etag: '637369652454470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:35Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:06Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:34 GMT - etag: '637292667347500000' + date: Tue, 29 Sep 2020 08:34:05 GMT + etag: '637369652454470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -115,94 +115,94 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-07-02T06:05:35Z2020-07-02T06:05:35Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-09-29T08:34:06Z2020-09-29T08:34:06ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:35.2698041Z2020-07-02T06:05:35.2698041Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:06.0555711Z2020-09-29T08:34:06.0555711Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:34 GMT - etag: '637292667347500000' + date: Tue, 29 Sep 2020 08:34:05 GMT + etag: '637369652454470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:35Zhttps://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-07-02T06:05:35Z2020-07-02T06:05:35ZSubscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:06Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-09-29T08:34:06Z2020-09-29T08:34:06ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:35.2685775Z2020-07-02T06:05:35.2685775Z2020-07-02T06:05:35.27ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:06.065089Z2020-09-29T08:34:06.065089Z2020-09-29T08:34:06.067Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:34 GMT - etag: '637292667347500000' + date: Tue, 29 Sep 2020 08:34:05 GMT + etag: '637369652454470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:35Zhttps://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-07-02T06:05:35Z2020-07-02T06:05:35ZSubscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:06Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-09-29T08:34:06Z2020-09-29T08:34:06ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:35.2685775Z2020-07-02T06:05:35.2685775Z2020-07-02T06:05:35.27ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:06.065089Z2020-09-29T08:34:06.065089Z2020-09-29T08:34:06.067Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:35 GMT - etag: '637292667347500000' + date: Tue, 29 Sep 2020 08:34:05 GMT + etag: '637369652454470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 response: @@ -210,45 +210,45 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:35 GMT - etag: '637292667347500000' + date: Tue, 29 Sep 2020 08:34:05 GMT + etag: '637369652454470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:35Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:06Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:35 GMT - etag: '637292667347500000' + date: Tue, 29 Sep 2020 08:34:05 GMT + etag: '637369652454470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04 response: @@ -256,12 +256,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:35 GMT - etag: '637292667347500000' + date: Tue, 29 Sep 2020 08:34:06 GMT + etag: '637369652454470000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dkoamv?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv?api-version=2017-04 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 fbcad63469e6..e6a949a8d13c 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:36Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:08Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:36 GMT + date: Tue, 29 Sep 2020 08:34:08 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-07-02T06:05:37Z2020-07-02T06:05:37Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:34:09Z2020-09-29T08:34:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:37.25Z2020-07-02T06:05:37.29ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:09.067Z2020-09-29T08:34:09.1ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:37 GMT + date: Tue, 29 Sep 2020 08:34:09 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 - request: body: ' @@ -67,77 +67,77 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-07-02T06:05:37Z2020-07-02T06:05:37Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-09-29T08:34:09Z2020-09-29T08:34:09ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:37.7874307Z2020-07-02T06:05:37.7874307Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:09.6006723Z2020-09-29T08:34:09.6006723Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:37 GMT - etag: '637292667372900000' + date: Tue, 29 Sep 2020 08:34:09 GMT + etag: '637369652491000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 - request: body: ' PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T06:05:37.78743Z2020-07-02T06:05:37.78743Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:34:09.600672Z2020-09-29T08:34:09.600672Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml Content-Length: - - '1013' + - '1015' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04 response: body: string: 404Entity 'servicebustestsbname:Topic:dfjfj|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:5ba1053f-829d-45d5-b4ba-f1368c0c8495_B2, - SystemTracker:NoSystemTracker, Timestamp:2020-07-02T06:05:37 + 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 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:05:38 GMT - etag: '637292667372900000' + date: Tue, 29 Sep 2020 08:34:10 GMT + etag: '637369652491000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04 - request: body: ' P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T06:05:37.78743Z2020-07-02T06:05:37.78743Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:34:09.600672Z2020-09-29T08:34:09.600672Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml Content-Length: - - '1013' + - '1015' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04 response: @@ -148,26 +148,26 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:604322aa-3599-4d32-ac97-f1803911621f_G5, - SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-07-02T06:05:38' + Actual value was 25.00:00:00. TrackingId:86ead89e-47ae-4859-94b0-47ae0fc151d6_G13, + SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-09-29T08:34:10' headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:05:39 GMT - etag: '637292667372900000' + date: Tue, 29 Sep 2020 08:34:11 GMT + etag: '637369652491000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 400 message: Bad Request - url: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 response: @@ -175,21 +175,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:39 GMT - etag: '637292667372900000' + date: Tue, 29 Sep 2020 08:34:11 GMT + etag: '637369652491000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: @@ -197,12 +197,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:40 GMT - etag: '637292667372900000' + date: Tue, 29 Sep 2020 08:34:12 GMT + etag: '637369652491000000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 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 883c81d896a7..6b0876d79c06 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:41Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:13Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:40 GMT + date: Tue, 29 Sep 2020 08:34:12 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T06:05:41Z2020-07-02T06:05:41Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:34:13Z2020-09-29T08:34:13Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:41.593Z2020-07-02T06:05:41.64ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:13.59Z2020-09-29T08:34:13.62ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:41 GMT + date: Tue, 29 Sep 2020 08:34:13 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: ' @@ -67,32 +67,32 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T06:05:42Z2020-07-02T06:05:42Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T06:05:42.134715Z2020-07-02T06:05:42.134715Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:14.1769184Z2020-09-29T08:34:14.1769184Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:42 GMT - etag: '637292667416400000' + date: Tue, 29 Sep 2020 08:34:13 GMT + etag: '637369652536200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 - request: body: ' PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T06:05:42.134715Z2020-07-02T06:05:42.134715Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:34:14.176918Z2020-09-29T08:34:14.176918Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -103,127 +103,127 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T06:05:42Z2020-07-02T06:05:42Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T06:05:42.901395Z2020-07-02T06:05:42.901395Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:34:14.4893756Z2020-09-29T08:34:14.4893756Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:42 GMT - etag: '637292667416400000' + date: Tue, 29 Sep 2020 08:34:14 GMT + etag: '637369652536200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-07-02T06:05:42Z2020-07-02T06:05:42Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T06:05:42.1327182Z2020-07-02T06:05:42.9139612Z2020-07-02T06:05:42.133ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:34:14.1780195Z2020-09-29T08:34:14.5061261Z2020-09-29T08:34:14.1780195Z00000P10675199DT2H48M5.477539SAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:42 GMT - etag: '637292667416400000' + date: Tue, 29 Sep 2020 08:34:14 GMT + etag: '637369652536200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 - request: body: ' PT12SfalsePT11Mtruetrue014trueActive2020-07-02T06:05:42.132718Z2020-07-02T06:05:42.913961Z2020-07-02T06:05:42.133Z00000PT10MAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2020-09-29T08:34:14.178019Z2020-09-29T08:34:14.506126Z2020-09-29T08:34:14.178019Z00000PT10MAvailable' headers: Accept: - application/xml Content-Length: - - '1379' + - '1382' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T06:05:43Z2020-07-02T06:05:43Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT12SfalsePT11Mtruetrue014trueActive2020-07-02T06:05:43.0107454Z2020-07-02T06:05:43.0107454Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2020-09-29T08:34:14.6143601Z2020-09-29T08:34:14.6143601Z0001-01-01T00:00:00PT10MAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:42 GMT - etag: '637292667416400000' + date: Tue, 29 Sep 2020 08:34:14 GMT + etag: '637369652536200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-07-02T06:05:42Z2020-07-02T06:05:43Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT12SfalsePT11Mtruetrue014trueActive2020-07-02T06:05:42.1327182Z2020-07-02T06:05:43.0077112Z2020-07-02T06:05:42.133ZPT12SfalsePT11Mtruetrue014trueActive2020-09-29T08:34:14.1780195Z2020-09-29T08:34:14.6310938Z2020-09-29T08:34:14.1780195Z00000PT10MAvailable headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:42 GMT - etag: '637292667416400000' + date: Tue, 29 Sep 2020 08:34:14 GMT + etag: '637369652536200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: @@ -231,21 +231,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:42 GMT - etag: '637292667416400000' + date: Tue, 29 Sep 2020 08:34:14 GMT + etag: '637369652536200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: @@ -253,12 +253,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:43 GMT - etag: '637292667416400000' + date: Tue, 29 Sep 2020 08:34:14 GMT + etag: '637369652536200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 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 335e3d2e1656..fde1c3a26598 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:44Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:16Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:43 GMT + date: Tue, 29 Sep 2020 08:34:15 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,61 +34,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-07-02T06:05:44Z2020-07-02T06:05:44Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:34:16Z2020-09-29T08:34:16Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:44.767Z2020-07-02T06:05:44.803ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:16.837Z2020-09-29T08:34:16.867ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:44 GMT + date: Tue, 29 Sep 2020 08:34:17 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-07-02T06:05:44Z2020-07-02T06:05:44Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-09-29T08:34:16Z2020-09-29T08:34:16Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:44.767Z2020-07-02T06:05:44.803Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:16.837Z2020-09-29T08:34:16.867Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:44 GMT - etag: '637292667448030000' + date: Tue, 29 Sep 2020 08:34:17 GMT + etag: '637369652568670000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:45 GMT - etag: '637292667448030000' + date: Tue, 29 Sep 2020 08:34:17 GMT + etag: '637369652568670000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 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 b136956ff61b..a22b77f6778e 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:46Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:18Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:46 GMT + date: Tue, 29 Sep 2020 08:34:18 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-07-02T06:05:47Z2020-07-02T06:05:47Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:34:19Z2020-09-29T08:34:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:47.083Z2020-07-02T06:05:47.14ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:19.127Z2020-09-29T08:34:19.16ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:47 GMT + date: Tue, 29 Sep 2020 08:34:19 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 - request: body: ' @@ -67,33 +67,33 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 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:f25a2e69-120b-4b10-9d71-dc31c1f40c4d_G11, - SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-07-02T06:05:47 + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:17fbd43a-fc98-4ef3-887e-8b55303a1ffd_G5, + SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-09-29T08:34:19 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:05:47 GMT - etag: '637292667471400000' + date: Tue, 29 Sep 2020 08:34:19 GMT + etag: '637369652591600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 409 message: Conflict - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: @@ -101,12 +101,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:47 GMT - etag: '637292667471400000' + date: Tue, 29 Sep 2020 08:34:19 GMT + etag: '637369652591600000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 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 0615775da0bf..4c93ab4f916c 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:48Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:21Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:47 GMT + date: Tue, 29 Sep 2020 08:34:20 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,61 +34,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-07-02T06:05:49Z2020-07-02T06:05:49Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:34:22Z2020-09-29T08:34:22Zservicebustestrm7a5oi5hkPT11M356352falsePT12Mtrue0falsetrueActive2020-07-02T06:05:49.287Z2020-07-02T06:05:49.46ZfalsePT10MtrueAvailabletruetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M356352falsePT12Mtrue0falsetrueActive2020-09-29T08:34:22.27Z2020-09-29T08:34:22.48ZfalsePT10MtrueAvailabletruetrue headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:48 GMT + date: Tue, 29 Sep 2020 08:34:21 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-07-02T06:05:49Z2020-07-02T06:05:49Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-09-29T08:34:22Z2020-09-29T08:34:22Zservicebustestrm7a5oi5hkPT11M356352falsePT12Mtrue0falsetrueActive2020-07-02T06:05:49.287Z2020-07-02T06:05:49.46Z0001-01-01T00:00:00ZfalsePT11M356352falsePT12Mtrue0falsetrueActive2020-09-29T08:34:22.27Z2020-09-29T08:34:22.48Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailabletruetrue headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:48 GMT - etag: '637292667494600000' + date: Tue, 29 Sep 2020 08:34:22 GMT + etag: '637369652624800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:50 GMT - etag: '637292667494600000' + date: Tue, 29 Sep 2020 08:34:22 GMT + etag: '637369652624800000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04 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 9801890968b1..a2a8dc28b5f3 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:51Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:24Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:50 GMT + date: Tue, 29 Sep 2020 08:34:23 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,54 +34,54 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T06:05:51Z2020-07-02T06:05:51Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:51.637Z2020-07-02T06:05:51.663ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:51 GMT + date: Tue, 29 Sep 2020 08:34:24 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:52Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T06:05:51Z2020-07-02T06:05:51Zservicebustest5levlyksxmTopicshttps://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:24Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:51.637Z2020-07-02T06:05:51.663Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:52 GMT + date: Tue, 29 Sep 2020 08:34:24 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -95,95 +95,95 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T06:05:53Z2020-07-02T06:05:53Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:53.107Z2020-07-02T06:05:53.153ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:53 GMT + date: Tue, 29 Sep 2020 08:34:25 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:54Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T06:05:51Z2020-07-02T06:05:51Zservicebustest5levlyksxmTopicshttps://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:24Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:51.6573806Z2020-07-02T06:05:51.6573806Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T06:05:53Z2020-07-02T06:05:53Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:53.107Z2020-07-02T06:05:53.153Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:53 GMT + date: Tue, 29 Sep 2020 08:34:26 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-07-02T06:05:51Z2020-07-02T06:05:51Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:51.6573806Z2020-07-02T06:05:51.6573806Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:53 GMT - etag: '637292667516630000' + date: Tue, 29 Sep 2020 08:34:26 GMT + etag: '637369652646970000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: @@ -191,77 +191,77 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:54 GMT - etag: '637292667516630000' + date: Tue, 29 Sep 2020 08:34:26 GMT + etag: '637369652646970000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:55Zhttps://servicebustest5levlyksxm.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T06:05:53Z2020-07-02T06:05:53Zservicebustest5levlyksxmTopicshttps://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:26Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:53.107Z2020-07-02T06:05:53.153Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:54 GMT + date: Tue, 29 Sep 2020 08:34:27 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-07-02T06:05:53Z2020-07-02T06:05:53Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:53.107Z2020-07-02T06:05:53.153Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:54 GMT - etag: '637292667531530000' + date: Tue, 29 Sep 2020 08:34:27 GMT + etag: '637369652661900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: @@ -269,34 +269,34 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:05:55 GMT - etag: '637292667531530000' + date: Tue, 29 Sep 2020 08:34:27 GMT + etag: '637369652661900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:56Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:29Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:55 GMT + date: Tue, 29 Sep 2020 08:34:28 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 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_info_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_info_basic.yaml index 8e46e84c3b9c..2288cd12dcf1 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_info_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_info_basic.yaml @@ -5,22 +5,22 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:05:56Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:30Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:05:56 GMT + date: Tue, 29 Sep 2020 08:34:29 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,61 +34,61 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T06:05:57Z2020-07-02T06:06:11Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:30Z2020-09-29T08:34:30Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:05:57.19Z2020-07-02T06:06:11.473ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:30.683Z2020-09-29T08:34:30.72ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:11 GMT + date: Tue, 29 Sep 2020 08:34:30 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-07-02T06:05:57Z2020-07-02T06:06:11Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:34:30Z2020-09-29T08:34:30Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:11.4396473Z2020-07-02T06:06:11.4396473Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:30.683Z2020-09-29T08:34:30.72Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:11 GMT - etag: '637292667714730000' + date: Tue, 29 Sep 2020 08:34:30 GMT + etag: '637369652707200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:06:11 GMT - etag: '637292667714730000' + date: Tue, 29 Sep 2020 08:34:31 GMT + etag: '637369652707200000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04 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 9d47b3e4a609..d373bc43a138 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:13Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:32Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:13 GMT + date: Tue, 29 Sep 2020 08:34:32 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:13Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:33Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:13 GMT + date: Tue, 29 Sep 2020 08:34:32 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -56,26 +56,26 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-07-02T06:06:14Z2020-07-02T06:06:14Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:34:33Z2020-09-29T08:34:33Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:14.3Z2020-07-02T06:06:14.347ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:33.473Z2020-09-29T08:34:33.503ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:14 GMT + date: Tue, 29 Sep 2020 08:34:33 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic_1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04 - request: body: ' @@ -89,67 +89,67 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-07-02T06:06:15Z2020-07-02T06:06:15Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:34:34Z2020-09-29T08:34:34Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:15.177Z2020-07-02T06:06:15.273ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:34.413Z2020-09-29T08:34:34.51ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:15 GMT + date: Tue, 29 Sep 2020 08:34:34 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic_2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:16Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-07-02T06:06:14Z2020-07-02T06:06:14Zservicebustest5levlyksxmTopicshttps://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:33Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:14.3Z2020-07-02T06:06:14.347Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:33.473Z2020-09-29T08:34:33.503Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustest5levlyksxm.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-07-02T06:06:15Z2020-07-02T06:06:15Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:34:34Z2020-09-29T08:34:34Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:15.177Z2020-07-02T06:06:15.273Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:34.413Z2020-09-29T08:34:34.51Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:15 GMT + date: Tue, 29 Sep 2020 08:34:35 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 response: @@ -157,21 +157,21 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:06:16 GMT - etag: '637292667743470000' + date: Tue, 29 Sep 2020 08:34:36 GMT + etag: '637369652735030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic_1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 response: @@ -179,34 +179,34 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:06:17 GMT - etag: '637292667752730000' + date: Tue, 29 Sep 2020 08:34:36 GMT + etag: '637369652745100000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic_2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:17Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:37Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:17 GMT + date: Tue, 29 Sep 2020 08:34:37 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 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_info.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_info.yaml index c9e3ed1ce17e..143c43fb176e 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_info.yaml +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_info.yaml @@ -5,66 +5,66 @@ interactions: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:18Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:38Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:17 GMT + date: Tue, 29 Sep 2020 08:34:37 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:18Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:38Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:18 GMT + date: Tue, 29 Sep 2020 08:34:38 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:19Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:39Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:18 GMT + date: Tue, 29 Sep 2020 08:34:39 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -78,89 +78,89 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T06:06:19Z2020-07-02T06:06:19Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:39Z2020-09-29T08:34:39Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:19.513Z2020-07-02T06:06:19.547ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:39.66Z2020-09-29T08:34:39.69ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:19 GMT + date: Tue, 29 Sep 2020 08:34:40 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:20Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T06:06:19Z2020-07-02T06:06:19Zservicebustest5levlyksxmTopicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:40Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:39Z2020-09-29T08:34:39Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:19.513Z2020-07-02T06:06:19.547Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:39.66Z2020-09-29T08:34:39.69Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:20 GMT + date: Tue, 29 Sep 2020 08:34:40 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:20Zhttps://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T06:06:19Z2020-07-02T06:06:19Zservicebustest5levlyksxmTopicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:41Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:39Z2020-09-29T08:34:39Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:19.513Z2020-07-02T06:06:19.547Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:39.66Z2020-09-29T08:34:39.69Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:20 GMT + date: Tue, 29 Sep 2020 08:34:41 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: @@ -168,34 +168,34 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:06:21 GMT - etag: '637292667795470000' + date: Tue, 29 Sep 2020 08:34:41 GMT + etag: '637369652796900000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/test_topic?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:21Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:42Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:21 GMT + date: Tue, 29 Sep 2020 08:34:42 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 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 4e63bcb7e608..47bda95bb21b 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:22Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:42Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:22 GMT + date: Tue, 29 Sep 2020 08:34:42 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,32 +34,32 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-07-02T06:06:22Z2020-07-02T06:06:22Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:34:43Z2020-09-29T08:34:43Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:22.823Z2020-07-02T06:06:22.887ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:43.41Z2020-09-29T08:34:43.44ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:23 GMT + date: Tue, 29 Sep 2020 08:34:43 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 - request: body: ' P10675199DT2H48M5.477539S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:22.823Z2020-07-02T06:06:22.887ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:34:43.410Z2020-09-29T08:34:43.440ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -70,31 +70,31 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2017-04 response: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:055e7339-e16c-4ab5-9079-6cbe37016f42_G2, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, - Timestamp:2020-07-02T06:06:24 + . TrackingId:b1210d9b-78e3-4e12-9088-d9b6c35f4915_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, + Timestamp:2020-09-29T08:34:44 headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:06:23 GMT + date: Tue, 29 Sep 2020 08:34:44 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 404 message: Not Found - url: https://servicebustest5levlyksxm.servicebus.windows.net/iewdm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iewdm?api-version=2017-04 - request: body: ' P10675199DT2H48M5.477539S1024falseP25Dtrue0falsefalseActive2020-07-02T06:06:22.823Z2020-07-02T06:06:22.887ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:34:43.410Z2020-09-29T08:34:43.440ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -105,7 +105,7 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: @@ -115,26 +115,26 @@ interactions: Parameter name: DuplicateDetectionHistoryTimeWindow - Actual value was 25.00:00:00. TrackingId:354abdee-4ed5-4bdd-83f5-61e9a7cd2e7d_G2, - SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-07-02T06:06:24' + 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' headers: content-type: application/xml; charset=utf-8 - date: Thu, 02 Jul 2020 06:06:23 GMT - etag: '637292667828870000' + date: Tue, 29 Sep 2020 08:34:44 GMT + etag: '637369652834400000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 400 message: Bad Request - url: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: @@ -142,12 +142,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:06:24 GMT - etag: '637292667828870000' + date: Tue, 29 Sep 2020 08:34:45 GMT + etag: '637369652834400000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 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 c7d11449056d..f4b2cb22ec95 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T06:06:25Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:46Z headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:25 GMT + date: Tue, 29 Sep 2020 08:34:45 GMT server: Microsoft-HTTPAPI/2.0 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 - request: body: ' @@ -34,32 +34,32 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T06:06:25Z2020-07-02T06:06:25Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:34:46Z2020-09-29T08:34:46Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:25.82Z2020-07-02T06:06:25.86ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:46.44Z2020-09-29T08:34:46.473ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:26 GMT + date: Tue, 29 Sep 2020 08:34:46 GMT server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 201 message: Created - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: ' PT2M1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:25.820Z2020-07-02T06:06:25.860ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:34:46.440Z2020-09-29T08:34:46.473ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -70,62 +70,62 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T06:06:26Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:34:47Zservicebustestrm7a5oi5hkPT2M1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:25.82Z2020-07-02T06:06:25.86ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:46.44Z2020-09-29T08:34:46.473ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:26 GMT - etag: '637292667858600000' + date: Tue, 29 Sep 2020 08:34:46 GMT + etag: '637369652864730000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-07-02T06:06:25Z2020-07-02T06:06:26Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:34:46Z2020-09-29T08:34:47Zservicebustestrm7a5oi5hkPT2M1024falsePT10Mtrue0falsefalseActive2020-07-02T06:06:25.82Z2020-07-02T06:06:26.313Z0001-01-01T00:00:00ZtruePT2M1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:46.44Z2020-09-29T08:34:47.04Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:26 GMT - etag: '637292667863130000' + date: Tue, 29 Sep 2020 08:34:46 GMT + etag: '637369652870400000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 - request: body: ' PT11M3072falsePT12Mtrue0falsetrueActive2020-07-02T06:06:25.820Z2020-07-02T06:06:26.313Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue' + />Active2020-09-29T08:34:46.440Z2020-09-29T08:34:47.040Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue' headers: Accept: - application/xml @@ -136,63 +136,63 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T06:06:26Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:34:47Zservicebustestrm7a5oi5hkPT11M3072falsePT12Mtrue0falsetrueActive2020-07-02T06:06:25.82Z2020-07-02T06:06:26.313Z0001-01-01T00:00:00ZtruePT11M3072falsePT12Mtrue0falsetrueActive2020-09-29T08:34:46.44Z2020-09-29T08:34:47.04Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:26 GMT - etag: '637292667863130000' + date: Tue, 29 Sep 2020 08:34:46 GMT + etag: '637369652870400000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-07-02T06:06:25Z2020-07-02T06:06:26Zservicebustest5levlyksxmhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:34:46Z2020-09-29T08:34:47Zservicebustestrm7a5oi5hkPT11M3072falsePT12Mtrue0falsetrueActive2020-07-02T06:06:25.82Z2020-07-02T06:06:26.55Z0001-01-01T00:00:00ZtruePT11M3072falsePT12Mtrue0falsetrueActive2020-09-29T08:34:46.44Z2020-09-29T08:34:47.403Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Thu, 02 Jul 2020 06:06:26 GMT - etag: '637292667865500000' + date: Tue, 29 Sep 2020 08:34:46 GMT + etag: '637369652874030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 transfer-encoding: chunked status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: @@ -200,12 +200,12 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 02 Jul 2020 06:06:27 GMT - etag: '637292667865500000' + date: Tue, 29 Sep 2020 08:34:47 GMT + etag: '637369652874030000' server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000 status: code: 200 message: OK - url: https://servicebustest5levlyksxm.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 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 c5cff6fa891d..3dc7eb293c3b 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 @@ -185,8 +185,8 @@ async def test_async_mgmt_queue_delete_negtive(self, servicebus_namespace_connec with pytest.raises(ValueError): await mgmt_service.delete_queue("") - with pytest.raises(ValueError): - await mgmt_service.delete_queue(queue=None) + with pytest.raises(TypeError): + await mgmt_service.delete_queue(queue_name=None) @CachedResourceGroupPreparer(name_prefix='servicebustest') @CachedServiceBusNamespacePreparer(name_prefix='servicebustest') @@ -441,7 +441,7 @@ async def test_async_mgmt_queue_get_runtime_info_basic(self, servicebus_namespac @CachedServiceBusNamespacePreparer(name_prefix='servicebustest') async def test_async_mgmt_queue_get_runtime_info_negative(self, servicebus_namespace_connection_string): mgmt_service = ServiceBusManagementClient.from_connection_string(servicebus_namespace_connection_string) - with pytest.raises(msrest.exceptions.ValidationError): + with pytest.raises(TypeError): await mgmt_service.get_queue_runtime_info(None) with pytest.raises(msrest.exceptions.ValidationError): diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_rules_async.py b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_rules_async.py index dc91b2ce9cf3..bbffc4a6c909 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_rules_async.py +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_rules_async.py @@ -122,7 +122,7 @@ async def test_async_mgmt_rule_update_success(self, servicebus_namespace_connect try: topic_description = await mgmt_service.create_topic(topic_name) - subscription_description = await mgmt_service.create_subscription(topic_description, subscription_name) + subscription_description = await mgmt_service.create_subscription(topic_description.name, subscription_name) await mgmt_service.create_rule(topic_name, subscription_name, rule_name, filter=sql_filter) rule_desc = await mgmt_service.get_rule(topic_name, subscription_name, rule_name) @@ -135,7 +135,7 @@ async def test_async_mgmt_rule_update_success(self, servicebus_namespace_connect rule_desc.filter = correlation_fitler rule_desc.action = sql_rule_action - await mgmt_service.update_rule(topic_description, subscription_description, rule_desc) + await mgmt_service.update_rule(topic_description.name, subscription_description.name, rule_desc) rule_desc = await mgmt_service.get_rule(topic_name, subscription_name, rule_name) assert type(rule_desc.filter) == CorrelationRuleFilter @@ -175,13 +175,13 @@ async def test_async_mgmt_rule_update_invalid(self, servicebus_namespace_connect # change the name to a topic that doesn't exist; should fail. rule_desc.name = "iewdm" with pytest.raises(HttpResponseError): - await mgmt_service.update_rule(topic_name, subscription_description, rule_desc) + await mgmt_service.update_rule(topic_name, subscription_description.name, rule_desc) rule_desc.name = rule_name # change the name to a topic with an invalid name exist; should fail. rule_desc.name = '' with pytest.raises(msrest.exceptions.ValidationError): - await mgmt_service.update_rule(topic_name, subscription_description, rule_desc) + await mgmt_service.update_rule(topic_name, subscription_description.name, rule_desc) rule_desc.name = rule_name finally: diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_subscriptions_async.py b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_subscriptions_async.py index 50425f6b6048..f945c8441324 100644 --- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_subscriptions_async.py +++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_subscriptions_async.py @@ -103,11 +103,11 @@ async def test_async_mgmt_subscription_update_success(self, servicebus_namespace try: topic_description = await mgmt_service.create_topic(topic_name) - subscription_description = await mgmt_service.create_subscription(topic_description, subscription_name) + subscription_description = await mgmt_service.create_subscription(topic_description.name, subscription_name) # Try updating one setting. subscription_description.lock_duration = datetime.timedelta(minutes=2) - await mgmt_service.update_subscription(topic_description, subscription_description) + await mgmt_service.update_subscription(topic_description.name, subscription_description) subscription_description = await mgmt_service.get_subscription(topic_name, subscription_name) assert subscription_description.lock_duration == datetime.timedelta(minutes=2) @@ -120,8 +120,8 @@ async def test_async_mgmt_subscription_update_success(self, servicebus_namespace # topic_description.enable_partitioning = True # Cannot be changed after creation # topic_description.requires_session = True # Cannot be changed after creation - await mgmt_service.update_subscription(topic_description, subscription_description) - subscription_description = await mgmt_service.get_subscription(topic_description, subscription_name) + await mgmt_service.update_subscription(topic_description.name, subscription_description) + subscription_description = await mgmt_service.get_subscription(topic_description.name, subscription_name) assert subscription_description.auto_delete_on_idle == datetime.timedelta(minutes=10) assert subscription_description.dead_lettering_on_message_expiration == True @@ -193,7 +193,7 @@ async def test_async_mgmt_subscription_delete(self, servicebus_namespace_connect assert len(subscriptions) == 2 description = await mgmt_service.get_subscription(topic_name, subscription_name_1) - await mgmt_service.delete_subscription(topic_name, description) + await mgmt_service.delete_subscription(topic_name, description.name) subscriptions = await async_pageable_to_list(mgmt_service.list_subscriptions(topic_name)) assert len(subscriptions) == 1 and subscriptions[0].name == subscription_name_2 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 868c7c50ec27..cf3dd63ee0f8 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 @@ -183,13 +183,13 @@ async def test_async_mgmt_topic_delete(self, servicebus_namespace_connection_str assert len(topics) == 2 description = await mgmt_service.get_topic('test_topic') - await mgmt_service.delete_topic(description) + await mgmt_service.delete_topic(description.name) topics = await async_pageable_to_list(mgmt_service.list_topics()) assert len(topics) == 1 and topics[0].name == 'txt/.-_123' description = await mgmt_service.get_topic('txt/.-_123') - await mgmt_service.delete_topic(description) + await mgmt_service.delete_topic(description.name) topics = await async_pageable_to_list(mgmt_service.list_topics()) assert len(topics) == 0 diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/mgmt_test_utilities.py b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/mgmt_test_utilities.py index d527a2e20b0f..fa179f41fcb9 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/mgmt_test_utilities.py +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/mgmt_test_utilities.py @@ -127,7 +127,7 @@ def clear_queues(servicebus_management_client): queues = list(servicebus_management_client.list_queues()) for queue in queues: try: - servicebus_management_client.delete_queue(queue) + servicebus_management_client.delete_queue(queue.name) except: pass @@ -136,6 +136,6 @@ def clear_topics(servicebus_management_client): topics = list(servicebus_management_client.list_topics()) for topic in topics: try: - servicebus_management_client.delete_topic(topic) + servicebus_management_client.delete_topic(topic.name) except: pass 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 7040e8a0fec3..f21aa440ab2e 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:40Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:49Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:40 GMT + - Tue, 29 Sep 2020 08:34:49 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue_testaddf?api-version=2017-04queue_testaddf2020-07-02T05:57:41Z2020-07-02T05:57:41Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue_testaddf?api-version=2017-04queue_testaddf2020-09-29T08:34:49Z2020-09-29T08:34:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:41.147Z2020-07-02T05:57:41.233ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:49.817Z2020-09-29T08:34:49.847ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:41 GMT + - Tue, 29 Sep 2020 08:34:50 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04queue_testaddf2020-07-02T05:57:41Z2020-07-02T05:57:41Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04queue_testaddf2020-09-29T08:34:49Z2020-09-29T08:34:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:41.147Z2020-07-02T05:57:41.233Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:49.817Z2020-09-29T08:34:49.847Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:41 GMT + - Tue, 29 Sep 2020 08:34:50 GMT etag: - - '637292662612330000' + - '637369652898470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,7 +118,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2017-04 response: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:57:42 GMT + - Tue, 29 Sep 2020 08:34:50 GMT etag: - - '637292662612330000' + - '637369652898470000' 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 65517633eb97..5fea2cab19a9 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:43Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:51Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:43 GMT + - Tue, 29 Sep 2020 08:34: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/rtofdk?api-version=2017-04rtofdk2020-07-02T05:57:43Z2020-07-02T05:57:43Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/rtofdk?api-version=2017-04rtofdk2020-09-29T08:34:52Z2020-09-29T08:34:52Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:43.537Z2020-07-02T05:57:43.603ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:52.117Z2020-09-29T08:34:52.143ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:44 GMT + - Tue, 29 Sep 2020 08:34:52 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04 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:7abd6c2b-18ae-4758-b165-9f85d7a75f11_G11, - SystemTracker:servicebustestsbname.servicebus.windows.net:rtofdk, Timestamp:2020-07-02T05:57:44 + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:f27c6e66-d554-49aa-aa9f-c34dd5e25851_G14, + SystemTracker:servicebustestsbname.servicebus.windows.net:rtofdk, Timestamp:2020-09-29T08:34:52 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:44 GMT + - Tue, 29 Sep 2020 08:34:52 GMT etag: - - '637292662636030000' + - '637369652921430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -123,7 +123,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04 response: @@ -133,9 +133,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:57:44 GMT + - Tue, 29 Sep 2020 08:34:53 GMT etag: - - '637292662636030000' + - '637369652921430000' 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 ea26f51188ed..1a689d6b5c1f 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:45Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:54Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:45 GMT + - Tue, 29 Sep 2020 08:34: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-07-02T05:57:45Z2020-07-02T05:57:45Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:34:55Z2020-09-29T08:34:55Zservicebustestrm7a5oi5hkPT13S49152falsetruePT11MtruePT12M14true00trueActive2020-07-02T05:57:45.863Z2020-07-02T05:57:45.97ZtruePT10MtrueAvailabletrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00trueActive2020-09-29T08:34:55.363Z2020-09-29T08:34:55.81ZtruePT10MtrueAvailabletrue headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:46 GMT + - Tue, 29 Sep 2020 08:34:56 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-07-02T05:57:45Z2020-07-02T05:57:45Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-09-29T08:34:55Z2020-09-29T08:34:55Zservicebustestrm7a5oi5hkPT13S49152falsetruePT11MtruePT12M14true00trueActive2020-07-02T05:57:45.863Z2020-07-02T05:57:45.97Z0001-01-01T00:00:00ZtruePT13S49152falsetruePT11MtruePT12M14true00trueActive2020-09-29T08:34:55.363Z2020-09-29T08:34:55.81Z0001-01-01T00:00:00Ztrue00000PT10MtrueAvailabletrue headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:46 GMT + - Tue, 29 Sep 2020 08:34:56 GMT etag: - - '637292662659700000' + - '637369652958100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,7 +118,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:57:46 GMT + - Tue, 29 Sep 2020 08:34:57 GMT etag: - - '637292662659700000' + - '637369652958100000' 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 6c8b24b0b1ee..164710cde1bc 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:47Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:57Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:47 GMT + - Tue, 29 Sep 2020 08:34: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T05:57:48Z2020-07-02T05:57:48Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:34:58Z2020-09-29T08:34:58Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:48.017Z2020-07-02T05:57:48.057ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:48 GMT + - Tue, 29 Sep 2020 08:34:58 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:49Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T05:57:48Z2020-07-02T05:57:48Zservicebustestshi5frbompQueueshttps://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:58Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:48.0251009Z2020-07-02T05:57:48.0251009Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:48 GMT + - Tue, 29 Sep 2020 08:34:59 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T05:57:49Z2020-07-02T05:57:49Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:49.487Z2020-07-02T05:57:49.52ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:00.29Z2020-09-29T08:35:00.363ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:49 GMT + - Tue, 29 Sep 2020 08:35:00 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:50Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T05:57:48Z2020-07-02T05:57:48Zservicebustestshi5frbompQueueshttps://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:58Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:48.0251009Z2020-07-02T05:57:48.0251009Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T05:57:49Z2020-07-02T05:57:49Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:49.487Z2020-07-02T05:57:49.52Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:00.29Z2020-09-29T08:35:00.363Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:49 GMT + - Tue, 29 Sep 2020 08:35:01 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -198,7 +198,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -208,9 +208,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:57:50 GMT + - Tue, 29 Sep 2020 08:35:01 GMT etag: - - '637292662680570000' + - '637369652984900000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:51Zhttps://servicebustestshi5frbomp.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T05:57:49Z2020-07-02T05:57:49Zservicebustestshi5frbompQueueshttps://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:00Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:49.487Z2020-07-02T05:57:49.52Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:00.2897971Z2020-09-29T08:35:00.2897971Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:50 GMT + - Tue, 29 Sep 2020 08:35:02 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -265,7 +265,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: @@ -275,9 +275,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:57:51 GMT + - Tue, 29 Sep 2020 08:35:02 GMT etag: - - '637292662695200000' + - '637369653003630000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:52Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:03Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:51 GMT + - Tue, 29 Sep 2020 08:35:03 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 594721baad0c..55d672cb1643 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:53Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:04Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:53 GMT + - Tue, 29 Sep 2020 08:35: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T05:57:53Z2020-07-02T05:57:53Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:04Z2020-09-29T08:35:05Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:53.647Z2020-07-02T05:57:53.75ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:04.957Z2020-09-29T08:35:05.017ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:54 GMT + - Tue, 29 Sep 2020 08:35:04 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:54Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T05:57:53Z2020-07-02T05:57:53Zservicebustestshi5frbompQueueshttps://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:05Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:53.647Z2020-07-02T05:57:53.75Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:04.957Z2020-09-29T08:35:05.017Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:54 GMT + - Tue, 29 Sep 2020 08:35:05 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -116,7 +116,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -126,9 +126,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:57:55 GMT + - Tue, 29 Sep 2020 08:35:06 GMT etag: - - '637292662737500000' + - '637369653050170000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:55Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:07Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:55 GMT + - Tue, 29 Sep 2020 08:35:06 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: string: 404No service is hosted at the specified - address. TrackingId:045fd796-ee18-4fdc-a1c9-7937af49619c_G1, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, - Timestamp:2020-07-02T05:57:56 + address. TrackingId:f688a238-20bd-4784-b2c6-66ca3a0e2791_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, + Timestamp:2020-09-29T08:35:07 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:55 GMT + - Tue, 29 Sep 2020 08:35:07 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2017-04 response: body: string: 404No service is hosted at the specified - address. TrackingId:26e3a90e-a650-45d2-a2de-36c7d2be2a44_G1, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, - Timestamp:2020-07-02T05:57:56 + address. TrackingId:75a1cca2-5ba4-4c53-9077-3c38dde289c7_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, + Timestamp:2020-09-29T08:35:08 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:56 GMT + - Tue, 29 Sep 2020 08:35:07 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 344fc005f1c8..f1feb00ee173 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:57:57Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:08Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:56 GMT + - Tue, 29 Sep 2020 08:35:08 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue0?api-version=2017-04queue02020-07-02T05:57:57Z2020-07-02T05:57:57Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04queue02020-09-29T08:35:09Z2020-09-29T08:35:09Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:57.61Z2020-07-02T05:57:57.647ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:09.58Z2020-09-29T08:35:09.63ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:57 GMT + - Tue, 29 Sep 2020 08:35:09 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue1?api-version=2017-04queue12020-07-02T05:57:58Z2020-07-02T05:57:58Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:35:10Z2020-09-29T08:35:10Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:58.54Z2020-07-02T05:57:58.567ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:10.693Z2020-09-29T08:35:10.777ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:58 GMT + - Tue, 29 Sep 2020 08:35:10 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue2?api-version=2017-04queue22020-07-02T05:57:59Z2020-07-02T05:57:59Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:35:11Z2020-09-29T08:35:11Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:59.427Z2020-07-02T05:57:59.46ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:11.58Z2020-09-29T08:35:11.78ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:57:59 GMT + - Tue, 29 Sep 2020 08:35:11 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue3?api-version=2017-04queue32020-07-02T05:58:00Z2020-07-02T05:58:00Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:35:12Z2020-09-29T08:35:13Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:00.377Z2020-07-02T05:58:00.407ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:12.94Z2020-09-29T08:35:13.023ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:00 GMT + - Tue, 29 Sep 2020 08:35:13 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue4?api-version=2017-04queue42020-07-02T05:58:01Z2020-07-02T05:58:01Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:35:14Z2020-09-29T08:35:14Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:01.247Z2020-07-02T05:58:01.273ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:14.3Z2020-09-29T08:35:14.327ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:01 GMT + - Tue, 29 Sep 2020 08:35:14 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue5?api-version=2017-04queue52020-07-02T05:58:02Z2020-07-02T05:58:02Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:35:15Z2020-09-29T08:35:15Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:02.23Z2020-07-02T05:58:02.27ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:15.423Z2020-09-29T08:35:15.453ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:02 GMT + - Tue, 29 Sep 2020 08:35:15 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue6?api-version=2017-04queue62020-07-02T05:58:03Z2020-07-02T05:58:03Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:35:16Z2020-09-29T08:35:16Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:03.087Z2020-07-02T05:58:03.11ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:16.343Z2020-09-29T08:35:16.52ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:03 GMT + - Tue, 29 Sep 2020 08:35:16 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue7?api-version=2017-04queue72020-07-02T05:58:04Z2020-07-02T05:58:04Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:35:17Z2020-09-29T08:35:17Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:04.023Z2020-07-02T05:58:04.093ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:17.41Z2020-09-29T08:35:17.44ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:04 GMT + - Tue, 29 Sep 2020 08:35:17 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue8?api-version=2017-04queue82020-07-02T05:58:04Z2020-07-02T05:58:05Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:35:18Z2020-09-29T08:35:18Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:04.99Z2020-07-02T05:58:05.023ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:18.51Z2020-09-29T08:35:18.54ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:05 GMT + - Tue, 29 Sep 2020 08:35:18 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/queue9?api-version=2017-04queue92020-07-02T05:58:05Z2020-07-02T05:58:06Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:35:19Z2020-09-29T08:35:19Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:05.973Z2020-07-02T05:58:06.007ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:19.417Z2020-09-29T08:35:19.497ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:06 GMT + - Tue, 29 Sep 2020 08:35:19 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -450,7 +450,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 response: @@ -460,9 +460,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:06 GMT + - Tue, 29 Sep 2020 08:35:20 GMT etag: - - '637292662776470000' + - '637369653096300000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:07Zhttps://servicebustestshi5frbomp.servicebus.windows.net/queue1?api-version=2017-04queue12020-07-02T05:57:58Z2020-07-02T05:57:58Zservicebustestshi5frbompQueueshttps://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:10Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:58.54Z2020-07-02T05:57:58.567Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:10.693Z2020-09-29T08:35:10.777Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/queue2?api-version=2017-04queue22020-07-02T05:57:59Z2020-07-02T05:57:59Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:35:11Z2020-09-29T08:35:11Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:57:59.4432753Z2020-07-02T05:57:59.4432753Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:11.58Z2020-09-29T08:35:11.78Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/queue3?api-version=2017-04queue32020-07-02T05:58:00Z2020-07-02T05:58:00Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:35:12Z2020-09-29T08:35:13Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:00.377Z2020-07-02T05:58:00.407Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:12.94Z2020-09-29T08:35:13.023Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/queue4?api-version=2017-04queue42020-07-02T05:58:01Z2020-07-02T05:58:01Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:35:14Z2020-09-29T08:35:14Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:01.247Z2020-07-02T05:58:01.273Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:14.3Z2020-09-29T08:35:14.327Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/queue5?api-version=2017-04queue52020-07-02T05:58:02Z2020-07-02T05:58:02Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:35:15Z2020-09-29T08:35:15Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:02.23Z2020-07-02T05:58:02.27Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:15.423Z2020-09-29T08:35:15.453Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/queue6?api-version=2017-04queue62020-07-02T05:58:03Z2020-07-02T05:58:03Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:35:16Z2020-09-29T08:35:16Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:03.087Z2020-07-02T05:58:03.11Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:16.343Z2020-09-29T08:35:16.52Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/queue7?api-version=2017-04queue72020-07-02T05:58:04Z2020-07-02T05:58:04Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:35:17Z2020-09-29T08:35:17Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:04.023Z2020-07-02T05:58:04.093Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:17.41Z2020-09-29T08:35:17.44Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/queue8?api-version=2017-04queue82020-07-02T05:58:04Z2020-07-02T05:58:05Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:35:18Z2020-09-29T08:35:18Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:04.99Z2020-07-02T05:58:05.023Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:18.51Z2020-09-29T08:35:18.54Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/queue9?api-version=2017-04queue92020-07-02T05:58:05Z2020-07-02T05:58:06Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:35:19Z2020-09-29T08:35:19Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:05.973Z2020-07-02T05:58:06.007Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:19.417Z2020-09-29T08:35:19.497Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:06 GMT + - Tue, 29 Sep 2020 08:35:21 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -565,7 +565,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 response: @@ -575,9 +575,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:07 GMT + - Tue, 29 Sep 2020 08:35:21 GMT etag: - - '637292662785670000' + - '637369653107770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -597,7 +597,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 response: @@ -607,9 +607,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:07 GMT + - Tue, 29 Sep 2020 08:35:22 GMT etag: - - '637292662794600000' + - '637369653117800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -629,7 +629,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 response: @@ -639,9 +639,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:08 GMT + - Tue, 29 Sep 2020 08:35:23 GMT etag: - - '637292662804070000' + - '637369653130230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -661,7 +661,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 response: @@ -671,9 +671,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:08 GMT + - Tue, 29 Sep 2020 08:35:24 GMT etag: - - '637292662812730000' + - '637369653143270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -693,7 +693,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 response: @@ -703,9 +703,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:09 GMT + - Tue, 29 Sep 2020 08:35:24 GMT etag: - - '637292662822700000' + - '637369653154530000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -725,7 +725,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 response: @@ -735,9 +735,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:09 GMT + - Tue, 29 Sep 2020 08:35:25 GMT etag: - - '637292662831100000' + - '637369653165200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -757,7 +757,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 response: @@ -767,9 +767,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:10 GMT + - Tue, 29 Sep 2020 08:35:25 GMT etag: - - '637292662840930000' + - '637369653174400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -789,7 +789,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 response: @@ -799,9 +799,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:10 GMT + - Tue, 29 Sep 2020 08:35:26 GMT etag: - - '637292662850230000' + - '637369653185400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -821,7 +821,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 response: @@ -831,9 +831,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:11 GMT + - Tue, 29 Sep 2020 08:35:30 GMT etag: - - '637292662860070000' + - '637369653194970000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:12Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:30Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:11 GMT + - Tue, 29 Sep 2020 08:35:30 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_info_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_info_basic.yaml index 1100af6cbcd7..65ddbe100721 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_info_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_info_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:12Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:31Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:12 GMT + - Tue, 29 Sep 2020 08:35:31 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T05:58:13Z2020-07-02T05:58:13Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:32Z2020-09-29T08:35:32Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:13.253Z2020-07-02T05:58:13.323ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:32.357Z2020-09-29T08:35:32.393ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:13 GMT + - Tue, 29 Sep 2020 08:35:32 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2020-07-02T05:58:13Z2020-07-02T05:58:13Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2020-09-29T08:35:32Z2020-09-29T08:35:32Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:13.253Z2020-07-02T05:58:13.323Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:32.357Z2020-09-29T08:35:32.393Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:13 GMT + - Tue, 29 Sep 2020 08:35:33 GMT etag: - - '637292662933230000' + - '637369653323930000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,7 +118,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:13 GMT + - Tue, 29 Sep 2020 08:35:33 GMT etag: - - '637292662933230000' + - '637369653323930000' 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_info_negative.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_info_negative.yaml index 8d7a5af773c4..f11e93a72439 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_info_negative.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_info_negative.yaml @@ -9,20 +9,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04 response: body: string: Publicly Listed ServicesThis is the list of publicly-listed - services currently available.uuid:d95288d3-71ed-4d24-ab25-c29ce2160d42;id=264082020-07-02T05:58:15ZService + services currently available.uuid:01567fd2-6173-4591-9761-014fa9d962cb;id=257892020-09-29T08:35:34ZService Bus 1.1 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:15 GMT + - Tue, 29 Sep 2020 08:35:34 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 9bbd022f7b1d..3f00003a73d0 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestxrl7l6h247.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:23Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:35Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 06:04:23 GMT + - Tue, 29 Sep 2020 08:35:35 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestxrl7l6h247.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:26Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:36Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 06:04:26 GMT + - Tue, 29 Sep 2020 08:35:35 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustestxrl7l6h247.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:26Z2020-07-02T06:04:26Zservicebustestxrl7l6h247https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:36Z2020-09-29T08:35:36Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:26.917Z2020-07-02T06:04:26.993ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:36.897Z2020-09-29T08:35:36.923ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 06:04:27 GMT + - Tue, 29 Sep 2020 08:35:37 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestxrl7l6h247.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:27Zhttps://servicebustestxrl7l6h247.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:26Z2020-07-02T06:04:26Zservicebustestxrl7l6h247Queueshttps://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:36Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:26.917Z2020-07-02T06:04:26.993Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:36.897Z2020-09-29T08:35:36.923Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 06:04:27 GMT + - Tue, 29 Sep 2020 08:35:37 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -145,7 +145,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -155,9 +155,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 06:04:28 GMT + - Tue, 29 Sep 2020 08:35:38 GMT etag: - - '637292666669930000' + - '637369653369230000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestxrl7l6h247.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:28Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:38Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 06:04:28 GMT + - Tue, 29 Sep 2020 08:35:38 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestxrl7l6h247.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:29Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:39Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 06:04:28 GMT + - Tue, 29 Sep 2020 08:35:39 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustestxrl7l6h247.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:30Z2020-07-02T06:04:30Zservicebustestxrl7l6h247https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:40Z2020-09-29T08:35:40Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:30.003Z2020-07-02T06:04:30.06ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:40.267Z2020-09-29T08:35:40.3ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 06:04:29 GMT + - Tue, 29 Sep 2020 08:35:40 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestxrl7l6h247.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:31Zhttps://servicebustestxrl7l6h247.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T06:04:30Z2020-07-02T06:04:30Zservicebustestxrl7l6h247Queueshttps://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:40Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T06:04:30.003Z2020-07-02T06:04:30.06Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:40.267Z2020-09-29T08:35:40.3Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 06:04:30 GMT + - Tue, 29 Sep 2020 08:35:41 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -311,7 +311,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -321,9 +321,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 06:04:30 GMT + - Tue, 29 Sep 2020 08:35:41 GMT etag: - - '637292666700600000' + - '637369653403000000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestxrl7l6h247.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T06:04:32Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:42Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 06:04:31 GMT + - Tue, 29 Sep 2020 08:35:42 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_info_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_info_basic.yaml index 097c8407c4d2..b0a0bcda3662 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_info_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_info_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:22Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:43Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:21 GMT + - Tue, 29 Sep 2020 08:35:43 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:22Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:44Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:21 GMT + - Tue, 29 Sep 2020 08:35:43 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:23Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:44Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:22 GMT + - Tue, 29 Sep 2020 08:35:44 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T05:58:23Z2020-07-02T05:58:23Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:45Z2020-09-29T08:35:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:23.627Z2020-07-02T05:58:23.657ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:45.247Z2020-09-29T08:35:45.273ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:23 GMT + - Tue, 29 Sep 2020 08:35:45 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:24Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T05:58:23Z2020-07-02T05:58:23Zservicebustestshi5frbompQueueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:46Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:45Z2020-09-29T08:35:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:23.627Z2020-07-02T05:58:23.657Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:45.247Z2020-09-29T08:35:45.273Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:23 GMT + - Tue, 29 Sep 2020 08:35:45 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:25Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-07-02T05:58:23Z2020-07-02T05:58:23Zservicebustestshi5frbompQueueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:46Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:45Z2020-09-29T08:35:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:23.627Z2020-07-02T05:58:23.657Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:45.247Z2020-09-29T08:35:45.273Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:24 GMT + - Tue, 29 Sep 2020 08:35:46 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,7 +209,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: @@ -219,9 +219,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:24 GMT + - Tue, 29 Sep 2020 08:35:47 GMT etag: - - '637292663036570000' + - '637369653452730000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:26Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:47Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:25 GMT + - Tue, 29 Sep 2020 08:35:47 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 4519fd239b89..43ad91ea73b8 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: 401claim is empty. TrackingId:8540ec56-3c83-4481-ba5e-100e0c9435cc_G7, + string: 401claim is empty or token is invalid. TrackingId:17c0761f-1e57-43fd-8af1-21037ae5adaa_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-07-02T05:58:26 + Timestamp:2020-09-29T08:35:48 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:26 GMT + - Tue, 29 Sep 2020 08:35:47 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: 401claim is empty. TrackingId:7fadc18f-a377-4c75-9f80-2cb6bedc3117_G4, + string: 401claim is empty or token is invalid. TrackingId:6cdbb217-7d47-4c32-af19-d1ae1bec94f0_G13, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-07-02T05:58:26 + Timestamp:2020-09-29T08:35:49 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:26 GMT + - Tue, 29 Sep 2020 08:35:48 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 07818234ce02..16616390781d 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:27Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:50Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:27 GMT + - Tue, 29 Sep 2020 08:35: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:28Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:50Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:27 GMT + - Tue, 29 Sep 2020 08:35:50 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T05:58:28Z2020-07-02T05:58:28Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:51Z2020-09-29T08:35:51Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:28.603Z2020-07-02T05:58:28.637ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:51.053Z2020-09-29T08:35:51.127ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:28 GMT + - Tue, 29 Sep 2020 08:35:51 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:29Zhttps://servicebustestshi5frbomp.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T05:58:28Z2020-07-02T05:58:28Zservicebustestshi5frbompQueueshttps://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:51Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:28.603Z2020-07-02T05:58:28.637Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:51.0756218Z2020-09-29T08:35:51.0756218Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:29 GMT + - Tue, 29 Sep 2020 08:35:52 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -145,7 +145,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: @@ -155,9 +155,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:29 GMT + - Tue, 29 Sep 2020 08:35:52 GMT etag: - - '637292663086370000' + - '637369653511270000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:30Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:53Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:29 GMT + - Tue, 29 Sep 2020 08:35:53 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_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_invalid.yaml index f490eca3f531..a346c178e79e 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:31Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:54Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:30 GMT + - Tue, 29 Sep 2020 08:35: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-07-02T05:58:31Z2020-07-02T05:58:31Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:35:55Z2020-09-29T08:35:55Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:31.603Z2020-07-02T05:58:31.807ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:55.053Z2020-09-29T08:35:55.15ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:31 GMT + - Tue, 29 Sep 2020 08:35:54 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT1M1024falsetrueP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T05:58:31.603Z2020-07-02T05:58:31.807ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:35:55.053Z2020-09-29T08:35:55.150ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -89,22 +89,22 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 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:d0ec34e6-34c8-4e0d-b31a-7b1b50376430_G3, SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, - Timestamp:2020-07-02T05:58:32 + . TrackingId:d68b6e6b-0084-4bdb-b92a-8f8c08ba3692_G14, SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, + Timestamp:2020-09-29T08:35:55 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:31 GMT + - Tue, 29 Sep 2020 08:35:54 GMT etag: - - '637292663118070000' + - '637369653551500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -119,7 +119,7 @@ interactions: PT1M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T05:58:31.603Z2020-07-02T05:58:31.807ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:35:55.053Z2020-09-29T08:35:55.150ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -134,20 +134,20 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2017-04 response: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:53789693-e854-4ea5-974c-c980a69572ed_G3, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, - Timestamp:2020-07-02T05:58:32 + . TrackingId:d21f2fa0-3ff8-4d4a-95b7-da9509d04b02_G14, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, + Timestamp:2020-09-29T08:35:56 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:32 GMT + - Tue, 29 Sep 2020 08:35:55 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -162,7 +162,7 @@ interactions: P25D1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T05:58:31.603Z2020-07-02T05:58:31.807ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:35:55.053Z2020-09-29T08:35:55.150ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -177,7 +177,7 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: @@ -188,15 +188,15 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:dc85282e-8e24-434d-b257-72cb93d80910_G3, - SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-07-02T05:58:33' + Actual value was 25.00:00:00. TrackingId:163c8063-1917-4229-bf17-0817929dc89a_G14, + SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-09-29T08:35:56' headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:32 GMT + - Tue, 29 Sep 2020 08:35:55 GMT etag: - - '637292663118070000' + - '637369653551500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -218,7 +218,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: @@ -228,9 +228,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:33 GMT + - Tue, 29 Sep 2020 08:35:56 GMT etag: - - '637292663118070000' + - '637369653551500000' 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 b41e30626b3f..68a152849786 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:34Z + string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:58Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:34 GMT + - Tue, 29 Sep 2020 08:35: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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T05:58:35Z2020-07-02T05:58:35Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:35:59Z2020-09-29T08:35:59Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-07-02T05:58:35.06Z2020-07-02T05:58:35.093ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:59.07Z2020-09-29T08:35:59.103ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:35 GMT + - Tue, 29 Sep 2020 08:35:59 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T05:58:35.060Z2020-07-02T05:58:35.093ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:35:59.070Z2020-09-29T08:35:59.103ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -89,23 +89,23 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T05:58:35Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:35:59Zservicebustestrm7a5oi5hkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T05:58:35.06Z2020-07-02T05:58:35.093ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:35:59.07Z2020-09-29T08:35:59.103ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:35 GMT + - Tue, 29 Sep 2020 08:35:59 GMT etag: - - '637292663150930000' + - '637369653591030000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-07-02T05:58:35Z2020-07-02T05:58:35Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:35:59Z2020-09-29T08:35:59Zservicebustestrm7a5oi5hkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-07-02T05:58:35.06Z2020-07-02T05:58:35.57Z0001-01-01T00:00:00ZtruePT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:35:59.07Z2020-09-29T08:35:59.667Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:35 GMT + - Tue, 29 Sep 2020 08:35:59 GMT etag: - - '637292663155700000' + - '637369653596670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -158,7 +158,7 @@ interactions: PT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-07-02T05:58:35.060Z2020-07-02T05:58:35.570Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletrue' + />Active2020-09-29T08:35:59.070Z2020-09-29T08:35:59.667Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletrue' headers: Accept: - application/xml @@ -173,24 +173,24 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T05:58:35Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:36:00Zservicebustestrm7a5oi5hkPT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-07-02T05:58:35.06Z2020-07-02T05:58:35.57Z0001-01-01T00:00:00ZtruePT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-09-29T08:35:59.07Z2020-09-29T08:35:59.667Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletrue headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:35 GMT + - Tue, 29 Sep 2020 08:35:59 GMT etag: - - '637292663155700000' + - '637369653596670000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-07-02T05:58:35Z2020-07-02T05:58:35Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:35:59Z2020-09-29T08:36:00Zservicebustestrm7a5oi5hkPT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-07-02T05:58:35.06Z2020-07-02T05:58:35.81Z0001-01-01T00:00:00ZtruePT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-09-29T08:35:59.07Z2020-09-29T08:36:00.007Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletrue headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:35 GMT + - Tue, 29 Sep 2020 08:36:00 GMT etag: - - '637292663158100000' + - '637369653600070000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -249,7 +249,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: @@ -259,9 +259,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:36 GMT + - Tue, 29 Sep 2020 08:36:00 GMT etag: - - '637292663158100000' + - '637369653600070000' 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 0ddb9fb730ca..dc38afc176f0 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.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestzca2g5qsmq.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-17T02:22:21Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:01Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Fri, 17 Jul 2020 02:22:20 GMT + - Tue, 29 Sep 2020 08:36: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.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustestzca2g5qsmq.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-07-17T02:22:21Z2020-07-17T02:22:22Zservicebustestzca2g5qsmqhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:36:02Z2020-09-29T08:36:02Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-17T02:22:21.953Z2020-07-17T02:22:22.04ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:02.087Z2020-09-29T08:36:02.12ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 17 Jul 2020 02:22:21 GMT + - Tue, 29 Sep 2020 08:36: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.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustestzca2g5qsmq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-07-17T02:22:22Z2020-07-17T02:22:22Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:36:02Z2020-09-29T08:36:02ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-17T02:22:22.6633698Z2020-07-17T02:22:22.6633698Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:02.6616861Z2020-09-29T08:36:02.6616861Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 17 Jul 2020 02:22:22 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,14 +118,14 @@ interactions: testcidkey_stringstr1key_int2key_long2147483650key_boolfalsekey_datetime2020-07-05T11:12:13key_durationP1DT2H3Mstr1key_int2key_long2147483650key_boolfalsekey_datetime2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13test_rule_1' + xsi:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13truetest_rule_1' headers: Accept: - application/xml @@ -134,18 +134,18 @@ interactions: Connection: - keep-alive Content-Length: - - '1765' + - '1816' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: body: - string: https://servicebustestzca2g5qsmq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-07-17T02:22:23Z2020-07-17T02:22:23Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-09-29T08:36:03Z2020-09-29T08:36:03Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:132020-07-17T02:22:23.0245154Ztest_rule_1 + i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2020-09-29T08:36:03.0210776Ztest_rule_1 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 17 Jul 2020 02:22:22 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637305493420400000' + - '637369653621200000' 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.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestzca2g5qsmq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12020-07-17T02:22:23Z2020-07-17T02:22:23Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12020-09-29T08:36:03Z2020-09-29T08:36:03Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:132020-07-17T02:22:23.0289508Ztest_rule_1 + i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2020-09-29T08:36:03.0260815Ztest_rule_1 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 17 Jul 2020 02:22:22 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -222,7 +222,7 @@ interactions: Priority = @param120@param1str1str1truetest_rule_2' headers: Accept: @@ -232,30 +232,30 @@ interactions: Connection: - keep-alive Content-Length: - - '690' + - '741' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: body: - string: https://servicebustestzca2g5qsmq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-07-17T02:22:23Z2020-07-17T02:22:23Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-09-29T08:36:03Z2020-09-29T08:36:03ZPriority = @param120@param1str12020-07-17T02:22:23.2276052Ztest_rule_2 + i:type="d6p1:string" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">str1true2020-09-29T08:36:03.2866862Ztest_rule_2 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 17 Jul 2020 02:22:22 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestzca2g5qsmq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22020-07-17T02:22:23Z2020-07-17T02:22:23Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22020-09-29T08:36:03Z2020-09-29T08:36:03ZPriority = @param120@param1str12020-07-17T02:22:23.2476778Ztest_rule_2 + i:type="d6p1:string" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">str1true2020-09-29T08:36:03.2917153Ztest_rule_2 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 17 Jul 2020 02:22:22 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -323,24 +323,24 @@ interactions: Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: body: - string: https://servicebustestzca2g5qsmq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-07-17T02:22:23Z2020-07-17T02:22:23Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-09-29T08:36:03Z2020-09-29T08:36:03Z1=1202020-07-17T02:22:23.4776391Ztest_rule_3 + i:type="EmptyRuleAction"/>2020-09-29T08:36:03.9123161Ztest_rule_3 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 17 Jul 2020 02:22:22 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -360,24 +360,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestzca2g5qsmq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32020-07-17T02:22:23Z2020-07-17T02:22:23Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32020-09-29T08:36:03Z2020-09-29T08:36:03Z1=1202020-07-17T02:22:23.4820344Ztest_rule_3 + i:type="EmptyRuleAction"/>2020-09-29T08:36:03.9167042Ztest_rule_3 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Fri, 17 Jul 2020 02:22:23 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -399,7 +399,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: @@ -409,9 +409,9 @@ interactions: content-length: - '0' date: - - Fri, 17 Jul 2020 02:22:23 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -431,7 +431,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: @@ -441,9 +441,9 @@ interactions: content-length: - '0' date: - - Fri, 17 Jul 2020 02:22:23 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -463,7 +463,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: @@ -473,9 +473,9 @@ interactions: content-length: - '0' date: - - Fri, 17 Jul 2020 02:22:23 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -495,7 +495,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: @@ -505,9 +505,9 @@ interactions: content-length: - '0' date: - - Fri, 17 Jul 2020 02:22:23 GMT + - Tue, 29 Sep 2020 08:36:04 GMT etag: - - '637305493420400000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -527,7 +527,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.20161-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: @@ -537,9 +537,9 @@ interactions: content-length: - '0' date: - - Fri, 17 Jul 2020 02:22:24 GMT + - Tue, 29 Sep 2020 08:36:04 GMT etag: - - '637305493420400000' + - '637369653621200000' 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 808b4808811a..982d5acfb324 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:40Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:06Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:39 GMT + - Tue, 29 Sep 2020 08:36:06 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-07-02T05:58:41Z2020-07-02T05:58:41Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:36:06Z2020-09-29T08:36:06Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:58:41.03Z2020-07-02T05:58:41.077ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:06.787Z2020-09-29T08:36:06.863ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:40 GMT + - Tue, 29 Sep 2020 08:36:07 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-07-02T05:58:41Z2020-07-02T05:58:41Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:36:07Z2020-09-29T08:36:07ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:58:41.565784Z2020-07-02T05:58:41.565784Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:07.3430233Z2020-09-29T08:36:07.3430233Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:40 GMT + - Tue, 29 Sep 2020 08:36:07 GMT etag: - - '637292663210770000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -117,7 +117,7 @@ interactions: Priority = ''low''Priority = ''low''20truerule' headers: Accept: @@ -127,29 +127,29 @@ interactions: Connection: - keep-alive Content-Length: - - '456' + - '550' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-07-02T05:58:41Z2020-07-02T05:58:41Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-09-29T08:36:07Z2020-09-29T08:36:07ZPriority - = 'low'202020-07-02T05:58:41.94076Zrule + = 'low'20true2020-09-29T08:36:07.8587155Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:40 GMT + - Tue, 29 Sep 2020 08:36:07 GMT etag: - - '637292663210770000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -164,7 +164,7 @@ interactions: Priority = ''low''Priority = ''low''20truerule' headers: Accept: @@ -174,25 +174,25 @@ interactions: Connection: - keep-alive Content-Length: - - '456' + - '550' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo|rule' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:f97ecd58-05d9-40d8-ab4a-a8b95619d013_B6, - SystemTracker:NoSystemTracker, Timestamp:2020-07-02T05:58:42 + already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:44944473-1871-411b-85c0-0a70e5730cee_B13, + SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:36:08 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:43 GMT + - Tue, 29 Sep 2020 08:36:08 GMT etag: - - '637292663210770000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -214,7 +214,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 response: @@ -224,9 +224,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:43 GMT + - Tue, 29 Sep 2020 08:36:08 GMT etag: - - '637292663210770000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -246,7 +246,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: @@ -256,9 +256,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:43 GMT + - Tue, 29 Sep 2020 08:36:08 GMT etag: - - '637292663210770000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -278,7 +278,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: @@ -288,9 +288,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:43 GMT + - Tue, 29 Sep 2020 08:36:09 GMT etag: - - '637292663210770000' + - '637369653668630000' 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 5b74d3eeec43..a7f727b12d32 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:44Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:10Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:43 GMT + - Tue, 29 Sep 2020 08:36: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-07-02T05:58:44Z2020-07-02T05:58:44Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:36:10Z2020-09-29T08:36:10Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:58:44.647Z2020-07-02T05:58:44.677ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:10.78Z2020-09-29T08:36:10.827ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:44 GMT + - Tue, 29 Sep 2020 08:36:11 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-07-02T05:58:45Z2020-07-02T05:58:45Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:36:11Z2020-09-29T08:36:11ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:58:45.1769879Z2020-07-02T05:58:45.1769879Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:11.3662292Z2020-09-29T08:36:11.3662292Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637292663246770000' + - '637369653708270000' 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:45Zhttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-07-02T05:58:45Z2020-07-02T05:58:45ZRuleshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:11Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-09-29T08:36:11Z2020-09-29T08:36:11Z1=1202020-07-02T05:58:45.181251Z$Default + i:type="EmptyRuleAction"/>2020-09-29T08:36:11.3692415Z$Default headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637292663246770000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -156,7 +156,7 @@ interactions: Priority = ''low''Priority = ''low''20truetest_rule_1' headers: Accept: @@ -166,29 +166,29 @@ interactions: Connection: - keep-alive Content-Length: - - '463' + - '557' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-07-02T05:58:45Z2020-07-02T05:58:45Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-09-29T08:36:11Z2020-09-29T08:36:11ZPriority - = 'low'202020-07-02T05:58:45.5055475Ztest_rule_1 + = 'low'20true2020-09-29T08:36:11.6474939Ztest_rule_1 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637292663246770000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,7 +203,7 @@ interactions: Priority = ''middle''Priority = ''middle''20truetest_rule_2' headers: Accept: @@ -213,29 +213,29 @@ interactions: Connection: - keep-alive Content-Length: - - '466' + - '560' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-07-02T05:58:45Z2020-07-02T05:58:45Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-09-29T08:36:11Z2020-09-29T08:36:11ZPriority - = 'middle'202020-07-02T05:58:45.5836868Ztest_rule_2 + = 'middle'20true2020-09-29T08:36:11.7568947Ztest_rule_2 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637292663246770000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -250,7 +250,7 @@ interactions: Priority = ''high''Priority = ''high''20truetest_rule_3' headers: Accept: @@ -260,29 +260,29 @@ interactions: Connection: - keep-alive Content-Length: - - '464' + - '558' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-07-02T05:58:45Z2020-07-02T05:58:45Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-09-29T08:36:11Z2020-09-29T08:36:11ZPriority - = 'high'202020-07-02T05:58:45.6617985Ztest_rule_3 + = 'high'20true2020-09-29T08:36:11.9443601Ztest_rule_3 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637292663246770000' + - '637369653708270000' 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:45Zhttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-07-02T05:58:45Z2020-07-02T05:58:45ZRuleshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:12Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-09-29T08:36:11Z2020-09-29T08:36:11Z1=1202020-07-02T05:58:45.181251Z$Defaulthttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-07-02T05:58:45Z2020-07-02T05:58:45Z2020-09-29T08:36:11.3692415Z$Defaulthttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-09-29T08:36:11Z2020-09-29T08:36:11ZPriority - = 'low'202020-07-02T05:58:45.5094156Ztest_rule_1https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-07-02T05:58:45Z2020-07-02T05:58:45Z20true2020-09-29T08:36:11.6505251Ztest_rule_1https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-09-29T08:36:11Z2020-09-29T08:36:11ZPriority - = 'middle'202020-07-02T05:58:45.5874788Ztest_rule_2https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-07-02T05:58:45Z2020-07-02T05:58:45Z20true2020-09-29T08:36:11.7599024Ztest_rule_2https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-09-29T08:36:11Z2020-09-29T08:36:11ZPriority - = 'high'202020-07-02T05:58:45.6656048Ztest_rule_3 + = 'high'20true2020-09-29T08:36:11.9474045Ztest_rule_3 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637292663246770000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -364,7 +364,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: @@ -374,9 +374,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637292663246770000' + - '637369653708270000' 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:45Zhttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-07-02T05:58:45Z2020-07-02T05:58:45ZRuleshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:12Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-09-29T08:36:11Z2020-09-29T08:36:11Z1=1202020-07-02T05:58:45.181251Z$Defaulthttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-07-02T05:58:45Z2020-07-02T05:58:45Z2020-09-29T08:36:11.3692415Z$Defaulthttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-09-29T08:36:11Z2020-09-29T08:36:11ZPriority - = 'low'202020-07-02T05:58:45.5094156Ztest_rule_1https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-07-02T05:58:45Z2020-07-02T05:58:45Z20true2020-09-29T08:36:11.6505251Ztest_rule_1https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-09-29T08:36:11Z2020-09-29T08:36:11ZPriority - = 'high'202020-07-02T05:58:45.6656048Ztest_rule_3 + = 'high'20true2020-09-29T08:36:11.9474045Ztest_rule_3 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637292663246770000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -449,7 +449,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: @@ -459,9 +459,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637292663246770000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -481,7 +481,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: @@ -491,9 +491,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637292663246770000' + - '637369653708270000' 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:46Zhttps://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-07-02T05:58:45Z2020-07-02T05:58:45ZRuleshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:13Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-09-29T08:36:11Z2020-09-29T08:36:11Z1=1202020-07-02T05:58:45.181251Z$Default + i:type="EmptyRuleAction"/>2020-09-29T08:36:11.3692415Z$Default headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637292663246770000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -552,7 +552,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: @@ -562,9 +562,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:45 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637292663246770000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -584,7 +584,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: @@ -594,9 +594,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:46 GMT + - Tue, 29 Sep 2020 08:36:13 GMT etag: - - '637292663246770000' + - '637369653708270000' 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 ac615c037240..a11fda2eef96 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:47Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:14Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:46 GMT + - Tue, 29 Sep 2020 08:36: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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T05:58:47Z2020-07-02T05:58:47Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:36:15Z2020-09-29T08:36:15Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:58:47.677Z2020-07-02T05:58:47.723ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:15Z2020-09-29T08:36:15.05ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:47 GMT + - Tue, 29 Sep 2020 08:36:14 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T05:58:48Z2020-07-02T05:58:48Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:15Z2020-09-29T08:36:15ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:58:48.2020133Z2020-07-02T05:58:48.2020133Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:15.8375817Z2020-09-29T08:36:15.8375817Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:47 GMT + - Tue, 29 Sep 2020 08:36:15 GMT etag: - - '637292663277230000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -117,7 +117,7 @@ interactions: Priority = ''low''Priority = ''low''20truerule' headers: Accept: @@ -127,29 +127,29 @@ interactions: Connection: - keep-alive Content-Length: - - '456' + - '550' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-07-02T05:58:48Z2020-07-02T05:58:48Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:36:16Z2020-09-29T08:36:16ZPriority - = 'low'202020-07-02T05:58:48.4363985Zrule + = 'low'20true2020-09-29T08:36:16.2320398Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:47 GMT + - Tue, 29 Sep 2020 08:36:15 GMT etag: - - '637292663277230000' + - '637369653750500000' 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-07-02T05:58:48Z2020-07-02T05:58:48Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-09-29T08:36:16Z2020-09-29T08:36:16ZPriority - = 'low'202020-07-02T05:58:48.4267Zrule + = 'low'20true2020-09-29T08:36:16.2233001Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:47 GMT + - Tue, 29 Sep 2020 08:36:15 GMT etag: - - '637292663277230000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -202,8 +202,8 @@ interactions: Priority = ''low''2020-07-02T05:58:48.4267Ziewdm' + xsi:type="SqlFilter">Priority = ''low''20true2020-09-29T08:36:16.2233Ziewdm' headers: Accept: - application/xml @@ -212,27 +212,27 @@ interactions: Connection: - keep-alive Content-Length: - - '505' + - '599' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04 response: body: string: 404Entity 'servicebustestsbname:Topic:fjrui|eqkovc|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:58459b75-ffa1-4f82-bac1-04691d351cde_B14, - SystemTracker:NoSystemTracker, Timestamp:2020-07-02T05:58:48 + was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:b947c874-6146-4419-96c8-367a644bb43d_B13, + SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:36:16 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:48 GMT + - Tue, 29 Sep 2020 08:36:16 GMT etag: - - '637292663277230000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -254,7 +254,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: @@ -264,9 +264,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:48 GMT + - Tue, 29 Sep 2020 08:36:17 GMT etag: - - '637292663277230000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -286,7 +286,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: @@ -296,9 +296,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:48 GMT + - Tue, 29 Sep 2020 08:36:17 GMT etag: - - '637292663277230000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -318,7 +318,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: @@ -328,9 +328,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:49 GMT + - Tue, 29 Sep 2020 08:36:17 GMT etag: - - '637292663277230000' + - '637369653750500000' 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 fb41d16f4cb0..973636bb2b65 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:51Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:19Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:51 GMT + - Tue, 29 Sep 2020 08:36: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T05:58:52Z2020-07-02T05:58:52Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:36:20Z2020-09-29T08:36:20Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:58:52.253Z2020-07-02T05:58:52.283ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:20.18Z2020-09-29T08:36:20.21ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:52 GMT + - Tue, 29 Sep 2020 08:36: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T05:58:52Z2020-07-02T05:58:52Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:20Z2020-09-29T08:36:20ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:58:52.8322918Z2020-07-02T05:58:52.8322918Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:20.7861209Z2020-09-29T08:36:20.7861209Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:52 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637292663322830000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -117,7 +117,7 @@ interactions: Priority = ''low''Priority = ''low''20truerule' headers: Accept: @@ -127,29 +127,29 @@ interactions: Connection: - keep-alive Content-Length: - - '456' + - '550' Content-Type: - application/atom+xml User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-07-02T05:58:52Z2020-07-02T05:58:52Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:36:21Z2020-09-29T08:36:21ZPriority - = 'low'202020-07-02T05:58:52.9889434Zrule + = 'low'20true2020-09-29T08:36:21.0830137Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:52 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637292663322830000' + - '637369653802100000' 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-07-02T05:58:52Z2020-07-02T05:58:52Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-09-29T08:36:21Z2020-09-29T08:36:21ZPriority - = 'low'202020-07-02T05:58:52.9977704Zrule + = 'low'20true2020-09-29T08:36:21.0877053Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:52 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637292663322830000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,7 +203,7 @@ interactions: testcidSET Priority = ''low''2020-07-02T05:58:52.99777Zrule' + xsi:type="SqlRuleAction">SET Priority = ''low''20true2020-09-29T08:36:21.087705Zrule' headers: Accept: - application/xml @@ -212,30 +212,30 @@ interactions: Connection: - keep-alive Content-Length: - - '560' + - '655' Content-Type: - application/atom+xml If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-07-02T05:58:53Z2020-07-02T05:58:53Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:36:21Z2020-09-29T08:36:21ZtestcidSET Priority = 'low'202020-07-02T05:58:53.192089Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2020-09-29T08:36:21.3954996Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:52 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637292663322830000' + - '637369653802100000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-07-02T05:58:52Z2020-07-02T05:58:52Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-09-29T08:36:21Z2020-09-29T08:36:21ZtestcidSET Priority = 'low'202020-07-02T05:58:52.9977704Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2020-09-29T08:36:21.0877053Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:52 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637292663322830000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -294,7 +294,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: @@ -304,9 +304,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:52 GMT + - Tue, 29 Sep 2020 08:36:21 GMT etag: - - '637292663322830000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -326,7 +326,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: @@ -336,9 +336,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:52 GMT + - Tue, 29 Sep 2020 08:36:21 GMT etag: - - '637292663322830000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -358,7 +358,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: @@ -368,9 +368,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:53 GMT + - Tue, 29 Sep 2020 08:36:22 GMT etag: - - '637292663322830000' + - '637369653802100000' 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 77c5e6369e1b..d8e183d031db 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:54Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:23Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:53 GMT + - Tue, 29 Sep 2020 08:36:23 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-07-02T05:58:54Z2020-07-02T05:58:54Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:36:24Z2020-09-29T08:36:24Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:58:54.943Z2020-07-02T05:58:54.98ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:24.637Z2020-09-29T08:36:24.667ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:54 GMT + - Tue, 29 Sep 2020 08:36:24 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-07-02T05:58:55Z2020-07-02T05:58:55Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:36:25Z2020-09-29T08:36:25ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:58:55.4761578Z2020-07-02T05:58:55.4761578Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:25.7266754Z2020-09-29T08:36:25.7266754Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:54 GMT + - Tue, 29 Sep 2020 08:36:25 GMT etag: - - '637292663349800000' + - '637369653846670000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-07-02T05:58:55Z2020-07-02T05:58:55Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-09-29T08:36:25Z2020-09-29T08:36:25ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:58:55.4758482Z2020-07-02T05:58:55.4758482Z2020-07-02T05:58:55.477ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:25.7199052Z2020-09-29T08:36:25.7199052Z2020-09-29T08:36:25.72Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:54 GMT + - Tue, 29 Sep 2020 08:36:26 GMT etag: - - '637292663349800000' + - '637369653846670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -161,7 +161,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: @@ -171,9 +171,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:54 GMT + - Tue, 29 Sep 2020 08:36:26 GMT etag: - - '637292663349800000' + - '637369653846670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -193,7 +193,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: @@ -203,9 +203,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:55 GMT + - Tue, 29 Sep 2020 08:36:26 GMT etag: - - '637292663349800000' + - '637369653846670000' 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 9062ddba1779..b57e6c07acd8 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:58:56Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:28Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:56 GMT + - Tue, 29 Sep 2020 08:36: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-07-02T05:58:57Z2020-07-02T05:58:57Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:36:28Z2020-09-29T08:36:28Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:58:57.217Z2020-07-02T05:58:57.273ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:28.5Z2020-09-29T08:36:28.543ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:57 GMT + - Tue, 29 Sep 2020 08:36:28 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-07-02T05:58:57Z2020-07-02T05:58:57Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:36:29Z2020-09-29T08:36:29ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:58:57.7479854Z2020-07-02T05:58:57.7479854Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:29.1347421Z2020-09-29T08:36:29.1347421Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:57 GMT + - Tue, 29 Sep 2020 08:36:28 GMT etag: - - '637292663372730000' + - '637369653885430000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:886e8a17-ab7f-4718-915e-463e18ac2bc7_B3, - SystemTracker:NoSystemTracker, Timestamp:2020-07-02T05:58:58 + 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 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:58 GMT + - Tue, 29 Sep 2020 08:36:29 GMT etag: - - '637292663372730000' + - '637369653885430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -165,7 +165,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: @@ -175,9 +175,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:58 GMT + - Tue, 29 Sep 2020 08:36:30 GMT etag: - - '637292663372730000' + - '637369653885430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -197,7 +197,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: @@ -207,9 +207,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:58:59 GMT + - Tue, 29 Sep 2020 08:36:30 GMT etag: - - '637292663372730000' + - '637369653885430000' 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 3d9a622747b5..84d13561c325 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:00Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:32Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:58:59 GMT + - Tue, 29 Sep 2020 08:36: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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-07-02T05:59:00Z2020-07-02T05:59:00Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:36:33Z2020-09-29T08:36:33Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:00.54Z2020-07-02T05:59:00.567ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:33.007Z2020-09-29T08:36:33.04ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:00 GMT + - Tue, 29 Sep 2020 08:36: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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2020-07-02T05:59:01Z2020-07-02T05:59:01Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2020-09-29T08:36:33Z2020-09-29T08:36:33ZPT13StruePT11Mtruetrue014trueActive2020-07-02T05:59:01.0659053Z2020-07-02T05:59:01.0659053Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2020-09-29T08:36:33.5597485Z2020-09-29T08:36:33.5597485Z0001-01-01T00:00:00PT10MAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:00 GMT + - Tue, 29 Sep 2020 08:36:33 GMT etag: - - '637292663405670000' + - '637369653930400000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestshi5frbomp.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2020-07-02T05:59:01Z2020-07-02T05:59:01Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2020-09-29T08:36:33Z2020-09-29T08:36:33ZPT13StruePT11Mtruetrue014trueActive2020-07-02T05:59:01.0634521Z2020-07-02T05:59:01.0634521Z2020-07-02T05:59:01.0634521ZPT13StruePT11Mtruetrue014trueActive2020-09-29T08:36:33.5649693Z2020-09-29T08:36:33.5649693Z2020-09-29T08:36:33.5649693Z00000PT10MAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:00 GMT + - Tue, 29 Sep 2020 08:36:33 GMT etag: - - '637292663405670000' + - '637369653930400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -161,7 +161,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 response: @@ -171,9 +171,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:00 GMT + - Tue, 29 Sep 2020 08:36:33 GMT etag: - - '637292663405670000' + - '637369653930400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -193,7 +193,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: @@ -203,9 +203,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:01 GMT + - Tue, 29 Sep 2020 08:36:34 GMT etag: - - '637292663405670000' + - '637369653930400000' 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 b2dbcaf24af4..7122f49471f9 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:02Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:35Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:01 GMT + - Tue, 29 Sep 2020 08:36:34 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-07-02T05:59:02Z2020-07-02T05:59:02Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-09-29T08:36:35Z2020-09-29T08:36:35Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:02.91Z2020-07-02T05:59:02.957ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:35.773Z2020-09-29T08:36:35.883ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:02 GMT + - Tue, 29 Sep 2020 08:36:35 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-07-02T05:59:03Z2020-07-02T05:59:03Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:03.459594Z2020-07-02T05:59:03.459594Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.4355262Z2020-09-29T08:36:36.4355262Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:02 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637292663429570000' + - '637369653958830000' 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:03Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-07-02T05:59:03Z2020-07-02T05:59:03ZSubscriptionshttps://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:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:03.4735518Z2020-07-02T05:59:03.4735518Z2020-07-02T05:59:03.4735518ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:02 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637292663429570000' + - '637369653958830000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-07-02T05:59:03Z2020-07-02T05:59:03Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:03.7564405Z2020-07-02T05:59:03.7564405Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.8105286Z2020-09-29T08:36:36.8105286Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:03 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637292663429570000' + - '637369653958830000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:03Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-07-02T05:59:03Z2020-07-02T05:59:03ZSubscriptionshttps://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:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:03.4735518Z2020-07-02T05:59:03.4735518Z2020-07-02T05:59:03.4735518ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-07-02T05:59:03Z2020-07-02T05:59:03Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:03.7548714Z2020-07-02T05:59:03.7548714Z2020-07-02T05:59:03.7548714ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:03 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637292663429570000' + - '637369653958830000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-07-02T05:59:03Z2020-07-02T05:59:03Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:03.4735518Z2020-07-02T05:59:03.4735518Z2020-07-02T05:59:03.4735518ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:03 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637292663429570000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -288,7 +288,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 response: @@ -298,9 +298,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:03 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637292663429570000' + - '637369653958830000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:04Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-07-02T05:59:03Z2020-07-02T05:59:03ZSubscriptionshttps://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:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:03.7548714Z2020-07-02T05:59:03.7548714Z2020-07-02T05:59:03.7548714ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:03 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637292663429570000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -359,7 +359,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 response: @@ -369,9 +369,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:03 GMT + - Tue, 29 Sep 2020 08:36:37 GMT etag: - - '637292663429570000' + - '637369653958830000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:04Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:37Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:03 GMT + - Tue, 29 Sep 2020 08:36:37 GMT etag: - - '637292663429570000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -424,7 +424,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 response: @@ -434,9 +434,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:03 GMT + - Tue, 29 Sep 2020 08:36:37 GMT etag: - - '637292663429570000' + - '637369653958830000' 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_info_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_info_basic.yaml index 510188efca58..a993033c1417 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_info_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_info_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:05Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:39Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:04 GMT + - Tue, 29 Sep 2020 08:36:38 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dcvxqa?api-version=2017-04dcvxqa2020-07-02T05:59:05Z2020-07-02T05:59:05Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa?api-version=2017-04dcvxqa2020-09-29T08:36:39Z2020-09-29T08:36:39Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:05.897Z2020-07-02T05:59:05.947ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:39.54Z2020-09-29T08:36:39.587ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:05 GMT + - Tue, 29 Sep 2020 08:36:39 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04xvazzag2020-07-02T05:59:06Z2020-07-02T05:59:06Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04xvazzag2020-09-29T08:36:40Z2020-09-29T08:36:40ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:06.4800119Z2020-07-02T05:59:06.4800119Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:40.1191377Z2020-09-29T08:36:40.1191377Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:05 GMT + - Tue, 29 Sep 2020 08:36:39 GMT etag: - - '637292663459470000' + - '637369653995870000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestshi5frbomp.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04xvazzag2020-07-02T05:59:06Z2020-07-02T05:59:06Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04xvazzag2020-09-29T08:36:40Z2020-09-29T08:36:40ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:06.4837277Z2020-07-02T05:59:06.4837277Z2020-07-02T05:59:06.4837277ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:40.1241559Z2020-09-29T08:36:40.1241559Z2020-09-29T08:36:40.1241559Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:05 GMT + - Tue, 29 Sep 2020 08:36:39 GMT etag: - - '637292663459470000' + - '637369653995870000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -161,7 +161,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04 response: @@ -171,9 +171,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:05 GMT + - Tue, 29 Sep 2020 08:36:39 GMT etag: - - '637292663459470000' + - '637369653995870000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -193,7 +193,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04 response: @@ -203,9 +203,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:06 GMT + - Tue, 29 Sep 2020 08:36:40 GMT etag: - - '637292663459470000' + - '637369653995870000' 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 8e0d3cd9e735..917ded55fe50 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:07Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:42Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:07 GMT + - Tue, 29 Sep 2020 08:36: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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-07-02T05:59:08Z2020-07-02T05:59:08Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-09-29T08:36:43Z2020-09-29T08:36:43Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:08.303Z2020-07-02T05:59:08.337ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:43.043Z2020-09-29T08:36:43.077ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:08 GMT + - Tue, 29 Sep 2020 08:36:43 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:08Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:43Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:08 GMT + - Tue, 29 Sep 2020 08:36:43 GMT etag: - - '637292663483370000' + - '637369654030770000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-07-02T05:59:08Z2020-07-02T05:59:08Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:36:43Z2020-09-29T08:36:43ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:08.8948647Z2020-07-02T05:59:08.8948647Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:43.8949819Z2020-09-29T08:36:43.8949819Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:08 GMT + - Tue, 29 Sep 2020 08:36:43 GMT etag: - - '637292663483370000' + - '637369654030770000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-07-02T05:59:08Z2020-07-02T05:59:08Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:36:44Z2020-09-29T08:36:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:08.9886337Z2020-07-02T05:59:08.9886337Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:44.4262925Z2020-09-29T08:36:44.4262925Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:08 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637292663483370000' + - '637369654030770000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:09Zhttps://servicebustestshi5frbomp.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-07-02T05:59:08Z2020-07-02T05:59:08ZSubscriptionshttps://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:43ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:08.8877111Z2020-07-02T05:59:08.8877111Z2020-07-02T05:59:08.8877111ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:43.8908707Z2020-09-29T08:36:43.8908707Z2020-09-29T08:36:43.8908707Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestshi5frbomp.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-07-02T05:59:08Z2020-07-02T05:59:08Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:36:44Z2020-09-29T08:36:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:08.9815377Z2020-07-02T05:59:08.9815377Z2020-07-02T05:59:08.9815377ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:44.4377786Z2020-09-29T08:36:44.4377786Z2020-09-29T08:36:44.4377786Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:08 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637292663483370000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -245,7 +245,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 response: @@ -255,9 +255,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:08 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637292663483370000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -277,7 +277,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 response: @@ -287,9 +287,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:08 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637292663483370000' + - '637369654030770000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:09Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:44Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:09 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637292663483370000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -342,7 +342,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 response: @@ -352,9 +352,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:09 GMT + - Tue, 29 Sep 2020 08:36:45 GMT etag: - - '637292663483370000' + - '637369654030770000' 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_info.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_info.yaml index 79cd07ef66e5..7cd9bafa65b1 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_info.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_info.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:10Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:46Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:10 GMT + - Tue, 29 Sep 2020 08:36:46 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dkoamv?api-version=2017-04dkoamv2020-07-02T05:59:11Z2020-07-02T05:59:11Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv?api-version=2017-04dkoamv2020-09-29T08:36:46Z2020-09-29T08:36:46Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:11.17Z2020-07-02T05:59:11.233ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:46.577Z2020-09-29T08:36:46.663ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:11 GMT + - Tue, 29 Sep 2020 08:36:47 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:11Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:47Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:11 GMT + - Tue, 29 Sep 2020 08:36:47 GMT etag: - - '637292663512330000' + - '637369654066630000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:11Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:47Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:11 GMT + - Tue, 29 Sep 2020 08:36:47 GMT etag: - - '637292663512330000' + - '637369654066630000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-07-02T05:59:11Z2020-07-02T05:59:11Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-09-29T08:36:47Z2020-09-29T08:36:47ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:11.7885546Z2020-07-02T05:59:11.7885546Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:47.3531526Z2020-09-29T08:36:47.3531526Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:11 GMT + - Tue, 29 Sep 2020 08:36:47 GMT etag: - - '637292663512330000' + - '637369654066630000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:11Zhttps://servicebustestshi5frbomp.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-07-02T05:59:11Z2020-07-02T05:59:11ZSubscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:47Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-09-29T08:36:47Z2020-09-29T08:36:47ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:11.7924891Z2020-07-02T05:59:11.7924891Z2020-07-02T05:59:11.793ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:47.3626944Z2020-09-29T08:36:47.3626944Z2020-09-29T08:36:47.363Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:11 GMT + - Tue, 29 Sep 2020 08:36:47 GMT etag: - - '637292663512330000' + - '637369654066630000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:12Zhttps://servicebustestshi5frbomp.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-07-02T05:59:11Z2020-07-02T05:59:11ZSubscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:47Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-09-29T08:36:47Z2020-09-29T08:36:47ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:11.7924891Z2020-07-02T05:59:11.7924891Z2020-07-02T05:59:11.793ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:47.3626944Z2020-09-29T08:36:47.3626944Z2020-09-29T08:36:47.363Z00000P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:11 GMT + - Tue, 29 Sep 2020 08:36:47 GMT etag: - - '637292663512330000' + - '637369654066630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -268,7 +268,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04 response: @@ -278,9 +278,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:11 GMT + - Tue, 29 Sep 2020 08:36:47 GMT etag: - - '637292663512330000' + - '637369654066630000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustestshi5frbomp.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:12Z + string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:48Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:11 GMT + - Tue, 29 Sep 2020 08:36:47 GMT etag: - - '637292663512330000' + - '637369654066630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -333,7 +333,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04 response: @@ -343,9 +343,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:12 GMT + - Tue, 29 Sep 2020 08:36:48 GMT etag: - - '637292663512330000' + - '637369654066630000' 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 90b6e4f93a2f..59745f0598b2 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:13Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:49Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:13 GMT + - Tue, 29 Sep 2020 08:36:49 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-07-02T05:59:13Z2020-07-02T05:59:13Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:36:49Z2020-09-29T08:36:49Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:13.9Z2020-07-02T05:59:13.933ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:49.837Z2020-09-29T08:36:49.88ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:14 GMT + - Tue, 29 Sep 2020 08:36:50 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-07-02T05:59:14Z2020-07-02T05:59:14Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-09-29T08:36:50Z2020-09-29T08:36:50ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:14.4215758Z2020-07-02T05:59:14.4215758Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:50.6002126Z2020-09-29T08:36:50.6002126Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:14 GMT + - Tue, 29 Sep 2020 08:36:50 GMT etag: - - '637292663539330000' + - '637369654098800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -116,7 +116,7 @@ interactions: body: ' PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T05:59:14.421575Z2020-07-02T05:59:14.421575Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:36:50.600212Z2020-09-29T08:36:50.600212Z0001-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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04 response: body: string: 404Entity 'servicebustestsbname:Topic:dfjfj|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:37515d8f-2ea6-41b6-bec9-5072e1d491dc_B1, - SystemTracker:NoSystemTracker, Timestamp:2020-07-02T05:59:14 + 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 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:15 GMT + - Tue, 29 Sep 2020 08:36:52 GMT etag: - - '637292663539330000' + - '637369654098800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -159,7 +159,7 @@ interactions: body: ' P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T05:59:14.421575Z2020-07-02T05:59:14.421575Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:36:50.600212Z2020-09-29T08:36:50.600212Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -174,7 +174,7 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04 response: @@ -185,15 +185,15 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:b54cb5d3-855b-4b94-9b6a-586e71dfaaae_G15, - SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-07-02T05:59:15' + Actual value was 25.00:00:00. TrackingId:351941aa-f78c-432c-a9cf-6393d835e395_G1, + SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-09-29T08:36:52' headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:16 GMT + - Tue, 29 Sep 2020 08:36:53 GMT etag: - - '637292663539330000' + - '637369654098800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -215,7 +215,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 response: @@ -225,9 +225,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:16 GMT + - Tue, 29 Sep 2020 08:36:53 GMT etag: - - '637292663539330000' + - '637369654098800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -247,7 +247,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: @@ -257,9 +257,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:16 GMT + - Tue, 29 Sep 2020 08:36:54 GMT etag: - - '637292663539330000' + - '637369654098800000' 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 b834cb197645..0ad95eee0c06 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:17Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:55Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:16 GMT + - Tue, 29 Sep 2020 08:36: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T05:59:18Z2020-07-02T05:59:18Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:36:55Z2020-09-29T08:36:55Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:18.33Z2020-07-02T05:59:18.377ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:55.543Z2020-09-29T08:36:55.577ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:17 GMT + - Tue, 29 Sep 2020 08:36: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T05:59:18Z2020-07-02T05:59:18Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:56Z2020-09-29T08:36:56ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-07-02T05:59:18.8141966Z2020-07-02T05:59:18.8141966Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:56.6284629Z2020-09-29T08:36:56.6284629Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:19 GMT + - Tue, 29 Sep 2020 08:36:56 GMT etag: - - '637292663583770000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -116,7 +116,7 @@ interactions: body: ' PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T05:59:18.814196Z2020-07-02T05:59:18.814196Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' + type="application/xml">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:36:56.628462Z2020-09-29T08:36:56.628462Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable' headers: Accept: - application/xml @@ -131,23 +131,23 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T05:59:19Z2020-07-02T05:59:19Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:57Z2020-09-29T08:36:57ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T05:59:19.1734923Z2020-07-02T05:59:19.1734923Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:36:57.0659419Z2020-09-29T08:36:57.0659419Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:19 GMT + - Tue, 29 Sep 2020 08:36:56 GMT etag: - - '637292663583770000' + - '637369654155770000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-07-02T05:59:18Z2020-07-02T05:59:19Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-09-29T08:36:56Z2020-09-29T08:36:57ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-07-02T05:59:18.8184612Z2020-07-02T05:59:19.1777931Z2020-07-02T05:59:18.82ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:36:56.6319829Z2020-09-29T08:36:57.0694824Z2020-09-29T08:36:56.633Z00000P10675199DT2H48M5.477539SAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:19 GMT + - Tue, 29 Sep 2020 08:36:57 GMT etag: - - '637292663583770000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -199,7 +199,7 @@ interactions: PT12SfalsePT11Mtruetrue014trueActive2020-07-02T05:59:18.818461Z2020-07-02T05:59:19.177793Z2020-07-02T05:59:18.820Z00000PT10MAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2020-09-29T08:36:56.631982Z2020-09-29T08:36:57.069482Z2020-09-29T08:36:56.633Z00000PT10MAvailable' headers: Accept: - application/xml @@ -214,23 +214,23 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-07-02T05:59:19Z2020-07-02T05:59:19Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:57Z2020-09-29T08:36:57ZPT12SfalsePT11Mtruetrue014trueActive2020-07-02T05:59:19.2985057Z2020-07-02T05:59:19.2985057Z0001-01-01T00:00:00PT10MAvailable + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2020-09-29T08:36:57.2534967Z2020-09-29T08:36:57.2534967Z0001-01-01T00:00:00PT10MAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:19 GMT + - Tue, 29 Sep 2020 08:36:57 GMT etag: - - '637292663583770000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -250,24 +250,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustestshi5frbomp.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-07-02T05:59:18Z2020-07-02T05:59:19Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-09-29T08:36:56Z2020-09-29T08:36:57ZPT12SfalsePT11Mtruetrue014trueActive2020-07-02T05:59:18.8184612Z2020-07-02T05:59:19.30283Z2020-07-02T05:59:18.82ZPT12SfalsePT11Mtruetrue014trueActive2020-09-29T08:36:56.6319829Z2020-09-29T08:36:57.2570162Z2020-09-29T08:36:56.633Z00000PT10MAvailable headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:19 GMT + - Tue, 29 Sep 2020 08:36:57 GMT etag: - - '637292663583770000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -289,7 +289,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: @@ -299,9 +299,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:19 GMT + - Tue, 29 Sep 2020 08:36:57 GMT etag: - - '637292663583770000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -321,7 +321,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: @@ -331,9 +331,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:19 GMT + - Tue, 29 Sep 2020 08:36:58 GMT etag: - - '637292663583770000' + - '637369654155770000' 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 121a82b84c3d..face8dc5ffb1 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:20Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:59Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:20 GMT + - Tue, 29 Sep 2020 08:36: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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-07-02T05:59:20Z2020-07-02T05:59:20Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:37:00Z2020-09-29T08:37:00Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:20.783Z2020-07-02T05:59:20.81ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:00.183Z2020-09-29T08:37:00.42ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:21 GMT + - Tue, 29 Sep 2020 08:37:00 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-07-02T05:59:20Z2020-07-02T05:59:20Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-09-29T08:37:00Z2020-09-29T08:37:00Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:20.783Z2020-07-02T05:59:20.81Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:00.183Z2020-09-29T08:37:00.42Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:21 GMT + - Tue, 29 Sep 2020 08:37:01 GMT etag: - - '637292663608100000' + - '637369654204200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,7 +118,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:21 GMT + - Tue, 29 Sep 2020 08:37:01 GMT etag: - - '637292663608100000' + - '637369654204200000' 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 a18ac6449519..b436771e51c5 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:22Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:02Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:22 GMT + - Tue, 29 Sep 2020 08:37:01 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-07-02T05:59:22Z2020-07-02T05:59:22Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:37:02Z2020-09-29T08:37:03Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:22.95Z2020-07-02T05:59:22.98ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:02.953Z2020-09-29T08:37:03ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:23 GMT + - Tue, 29 Sep 2020 08:37:02 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 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:01a1f231-8b8c-41b2-a759-d4445fef69c5_G10, - SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-07-02T05:59:23 + visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:f0c0ed1c-fb92-454a-8ea0-62f1f7fca110_G6, + SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-09-29T08:37:03 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:23 GMT + - Tue, 29 Sep 2020 08:37:02 GMT etag: - - '637292663629800000' + - '637369654230000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -123,7 +123,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: @@ -133,9 +133,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:23 GMT + - Tue, 29 Sep 2020 08:37:03 GMT etag: - - '637292663629800000' + - '637369654230000000' 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 eb9375052b5c..6553859f3b22 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:24Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:05Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:24 GMT + - Tue, 29 Sep 2020 08:37: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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-07-02T05:59:25Z2020-07-02T05:59:25Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:37:05Z2020-09-29T08:37:05Zservicebustestrm7a5oi5hkPT11M356352falsePT12Mtrue0falsetrueActive2020-07-02T05:59:25.313Z2020-07-02T05:59:25.47ZfalsePT10MtrueAvailabletruetrue + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M356352falsePT12Mtrue0falsetrueActive2020-09-29T08:37:05.683Z2020-09-29T08:37:05.85ZfalsePT10MtrueAvailabletruetrue headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:25 GMT + - Tue, 29 Sep 2020 08:37:06 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-07-02T05:59:25Z2020-07-02T05:59:25Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-09-29T08:37:05Z2020-09-29T08:37:05Zservicebustestrm7a5oi5hkPT11M356352falsePT12Mtrue0falsetrueActive2020-07-02T05:59:25.313Z2020-07-02T05:59:25.47Z0001-01-01T00:00:00ZfalsePT11M356352falsePT12Mtrue0falsetrueActive2020-09-29T08:37:05.683Z2020-09-29T08:37:05.85Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailabletruetrue headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:25 GMT + - Tue, 29 Sep 2020 08:37:06 GMT etag: - - '637292663654700000' + - '637369654258500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,7 +118,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:25 GMT + - Tue, 29 Sep 2020 08:37:07 GMT etag: - - '637292663654700000' + - '637369654258500000' 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 cec1f518c05e..5c7720f5c072 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:27Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:07Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:26 GMT + - Tue, 29 Sep 2020 08:37: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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T05:59:27Z2020-07-02T05:59:27Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:27.617Z2020-07-02T05:59:27.647ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:27 GMT + - Tue, 29 Sep 2020 08:37:08 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:28Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T05:59:27Z2020-07-02T05:59:27Zservicebustestshi5frbompTopicshttps://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:08Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:27.617Z2020-07-02T05:59:27.647Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:27 GMT + - Tue, 29 Sep 2020 08:37:09 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T05:59:28Z2020-07-02T05:59:29Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:28.973Z2020-07-02T05:59:29.003ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:28 GMT + - Tue, 29 Sep 2020 08:37:10 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:29Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T05:59:27Z2020-07-02T05:59:27Zservicebustestshi5frbompTopicshttps://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:08Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:27.617Z2020-07-02T05:59:27.647Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T05:59:28Z2020-07-02T05:59:29Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:28.973Z2020-07-02T05:59:29.003Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:29 GMT + - Tue, 29 Sep 2020 08:37:10 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-07-02T05:59:27Z2020-07-02T05:59:27Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:27.617Z2020-07-02T05:59:27.647Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:29 GMT + - Tue, 29 Sep 2020 08:37:10 GMT etag: - - '637292663676470000' + - '637369654283630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -235,7 +235,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: @@ -245,9 +245,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:29 GMT + - Tue, 29 Sep 2020 08:37:11 GMT etag: - - '637292663676470000' + - '637369654283630000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:31Zhttps://servicebustestshi5frbomp.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-07-02T05:59:28Z2020-07-02T05:59:29Zservicebustestshi5frbompTopicshttps://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:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:28.973Z2020-07-02T05:59:29.003Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:30 GMT + - Tue, 29 Sep 2020 08:37:11 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-07-02T05:59:28Z2020-07-02T05:59:29Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:28.973Z2020-07-02T05:59:29.003Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:30 GMT + - Tue, 29 Sep 2020 08:37:12 GMT etag: - - '637292663690030000' + - '637369654299500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -339,7 +339,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: @@ -349,9 +349,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:30 GMT + - Tue, 29 Sep 2020 08:37:12 GMT etag: - - '637292663690030000' + - '637369654299500000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:32Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:13Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:31 GMT + - Tue, 29 Sep 2020 08:37:13 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_info_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_info_basic.yaml index 13c58c751919..eae852caf2e2 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_info_basic.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_info_basic.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:32Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:15Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:32 GMT + - Tue, 29 Sep 2020 08:37: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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T05:59:33Z2020-07-02T05:59:33Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:16Z2020-09-29T08:37:16Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:33.137Z2020-07-02T05:59:33.167ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:16.047Z2020-09-29T08:37:16.123ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:33 GMT + - Tue, 29 Sep 2020 08:37:16 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-07-02T05:59:33Z2020-07-02T05:59:33Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:37:16Z2020-09-29T08:37:16Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:33.137Z2020-07-02T05:59:33.167Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:16.047Z2020-09-29T08:37:16.123Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:33 GMT + - Tue, 29 Sep 2020 08:37:16 GMT etag: - - '637292663731670000' + - '637369654361230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,7 +118,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:34 GMT + - Tue, 29 Sep 2020 08:37:17 GMT etag: - - '637292663731670000' + - '637369654361230000' 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 8fa92be7e50d..1aab1635f415 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:34Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:17Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:34 GMT + - Tue, 29 Sep 2020 08:37:17 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:35Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:18Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:34 GMT + - Tue, 29 Sep 2020 08:37:18 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-07-02T05:59:35Z2020-07-02T05:59:35Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:37:18Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:35.9Z2020-07-02T05:59:35.927ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:18.957Z2020-09-29T08:37:19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:35 GMT + - Tue, 29 Sep 2020 08:37:19 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-07-02T05:59:36Z2020-07-02T05:59:36Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:37:19Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:36.743Z2020-07-02T05:59:36.77ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:19.8Z2020-09-29T08:37:19.843ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:36 GMT + - Tue, 29 Sep 2020 08:37:20 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:37Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-07-02T05:59:35Z2020-07-02T05:59:35Zservicebustestshi5frbompTopicshttps://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:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:35.9Z2020-07-02T05:59:35.927Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:18.957Z2020-09-29T08:37:19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestshi5frbomp.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-07-02T05:59:36Z2020-07-02T05:59:36Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:37:19Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:36.743Z2020-07-02T05:59:36.77Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:19.8Z2020-09-29T08:37:19.843Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:37 GMT + - Tue, 29 Sep 2020 08:37:20 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -192,7 +192,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 response: @@ -202,9 +202,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:37 GMT + - Tue, 29 Sep 2020 08:37:21 GMT etag: - - '637292663759270000' + - '637369654390000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -224,7 +224,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 response: @@ -234,9 +234,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:37 GMT + - Tue, 29 Sep 2020 08:37:21 GMT etag: - - '637292663767700000' + - '637369654398430000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:39Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:22Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:38 GMT + - Tue, 29 Sep 2020 08:37:22 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_info.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_info.yaml index 8ae550ca2a35..d5610caae108 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_info.yaml +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_info.yaml @@ -9,18 +9,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:39Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:23Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:39 GMT + - Tue, 29 Sep 2020 08:37:22 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:39Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:23Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:39 GMT + - Tue, 29 Sep 2020 08:37:22 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:40Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:24Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:40 GMT + - Tue, 29 Sep 2020 08:37:23 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T05:59:40Z2020-07-02T05:59:40Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:25Z2020-09-29T08:37:25Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:40.873Z2020-07-02T05:59:40.927ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:25.007Z2020-09-29T08:37:25.04ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:41 GMT + - Tue, 29 Sep 2020 08:37:25 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:41Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T05:59:40Z2020-07-02T05:59:40Zservicebustestshi5frbompTopicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:25Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:25Z2020-09-29T08:37:25Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:40.873Z2020-07-02T05:59:40.927Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:25.007Z2020-09-29T08:37:25.04Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:41 GMT + - Tue, 29 Sep 2020 08:37:25 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:42Zhttps://servicebustestshi5frbomp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-07-02T05:59:40Z2020-07-02T05:59:40Zservicebustestshi5frbompTopicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:26Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:25Z2020-09-29T08:37:25Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:40.873Z2020-07-02T05:59:40.927Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:25.007Z2020-09-29T08:37:25.04Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:42 GMT + - Tue, 29 Sep 2020 08:37:26 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,7 +209,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: @@ -219,9 +219,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:42 GMT + - Tue, 29 Sep 2020 08:37:27 GMT etag: - - '637292663809270000' + - '637369654450400000' 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:43Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:27Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:43 GMT + - Tue, 29 Sep 2020 08:37:27 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_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_invalid.yaml index 9e83f706ed9e..4da64e4868d2 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.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:43Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:28Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:43 GMT + - Tue, 29 Sep 2020 08:37:28 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-07-02T05:59:44Z2020-07-02T05:59:44Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:37:28Z2020-09-29T08:37:28Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:44.35Z2020-07-02T05:59:44.397ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:44 GMT + - Tue, 29 Sep 2020 08:37:29 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: P10675199DT2H48M5.477539S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:44.350Z2020-07-02T05:59:44.397ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -89,20 +89,20 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2017-04 response: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:636a6425-774b-4cf2-b22a-91fc476bb1fd_G8, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, - Timestamp:2020-07-02T05:59:45 + . TrackingId:288e2e47-7cd2-4915-880a-8b1f3ca7f8b7_G14, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, + Timestamp:2020-09-29T08:37:30 headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:45 GMT + - Tue, 29 Sep 2020 08:37:29 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -117,7 +117,7 @@ interactions: P10675199DT2H48M5.477539S1024falseP25Dtrue0falsefalseActive2020-07-02T05:59:44.350Z2020-07-02T05:59:44.397ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -132,7 +132,7 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: @@ -142,15 +142,15 @@ interactions: Parameter name: DuplicateDetectionHistoryTimeWindow - Actual value was 25.00:00:00. TrackingId:a66fd9fb-68e3-4720-8f04-53abc2706751_G8, - SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-07-02T05:59:45' + 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' headers: content-type: - application/xml; charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:45 GMT + - Tue, 29 Sep 2020 08:37:30 GMT etag: - - '637292663843970000' + - '637369654489670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -172,7 +172,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: @@ -182,9 +182,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:45 GMT + - Tue, 29 Sep 2020 08:37:30 GMT etag: - - '637292663843970000' + - '637369654489670000' 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 b3f83a00ab13..f782d2bf61b0 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustestshi5frbomp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-07-02T05:59:46Z + string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:31Z headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:46 GMT + - Tue, 29 Sep 2020 08:37:31 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.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T05:59:47Z2020-07-02T05:59:47Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:37:32Z2020-09-29T08:37:32Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:47.347Z2020-07-02T05:59:47.373ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:32.027Z2020-09-29T08:37:32.093ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:47 GMT + - Tue, 29 Sep 2020 08:37:32 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT2M1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:47.347Z2020-07-02T05:59:47.373ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:37:32.027Z2020-09-29T08:37:32.093ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -89,23 +89,23 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T05:59:47Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:37:32Zservicebustestrm7a5oi5hkPT2M1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:47.347Z2020-07-02T05:59:47.373ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse + xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:32.027Z2020-09-29T08:37:32.093ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:47 GMT + - Tue, 29 Sep 2020 08:37:32 GMT etag: - - '637292663873730000' + - '637369654520930000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-07-02T05:59:47Z2020-07-02T05:59:47Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:37:32Z2020-09-29T08:37:32Zservicebustestrm7a5oi5hkPT2M1024falsePT10Mtrue0falsefalseActive2020-07-02T05:59:47.347Z2020-07-02T05:59:47.887Z0001-01-01T00:00:00ZtruePT2M1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:32.027Z2020-09-29T08:37:32.6Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:47 GMT + - Tue, 29 Sep 2020 08:37:32 GMT etag: - - '637292663878870000' + - '637369654526000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -158,7 +158,7 @@ interactions: PT11M3072falsePT12Mtrue0falsetrueActive2020-07-02T05:59:47.347Z2020-07-02T05:59:47.887Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue' + />Active2020-09-29T08:37:32.027Z2020-09-29T08:37:32.600Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue' headers: Accept: - application/xml @@ -173,24 +173,24 @@ interactions: If-Match: - '*' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: PUT uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-07-02T05:59:48Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:37:33Zservicebustestrm7a5oi5hkPT11M3072falsePT12Mtrue0falsetrueActive2020-07-02T05:59:47.347Z2020-07-02T05:59:47.887Z0001-01-01T00:00:00ZtruePT11M3072falsePT12Mtrue0falsetrueActive2020-09-29T08:37:32.027Z2020-09-29T08:37:32.6Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:47 GMT + - Tue, 29 Sep 2020 08:37:32 GMT etag: - - '637292663878870000' + - '637369654526000000' 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.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: GET uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustestshi5frbomp.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-07-02T05:59:47Z2020-07-02T05:59:48Zservicebustestshi5frbomphttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:37:32Z2020-09-29T08:37:33Zservicebustestrm7a5oi5hkPT11M3072falsePT12Mtrue0falsetrueActive2020-07-02T05:59:47.347Z2020-07-02T05:59:48.113Z0001-01-01T00:00:00ZtruePT11M3072falsePT12Mtrue0falsetrueActive2020-09-29T08:37:32.027Z2020-09-29T08:37:33.013Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Thu, 02 Jul 2020 05:59:47 GMT + - Tue, 29 Sep 2020 08:37:32 GMT etag: - - '637292663881130000' + - '637369654530130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -249,7 +249,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.18362-SP0) + - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0) method: DELETE uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: @@ -259,9 +259,9 @@ interactions: content-length: - '0' date: - - Thu, 02 Jul 2020 05:59:48 GMT + - Tue, 29 Sep 2020 08:37:33 GMT etag: - - '637292663881130000' + - '637369654530130000' 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 7b4bbd133b9e..c043b76d0fcd 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 @@ -191,8 +191,8 @@ def test_mgmt_queue_delete_negtive(self, servicebus_namespace_connection_string) with pytest.raises(ValueError): mgmt_service.delete_queue("") - with pytest.raises(ValueError): - mgmt_service.delete_queue(queue=None) + with pytest.raises(TypeError): + mgmt_service.delete_queue(queue_name=None) @pytest.mark.liveTest @CachedResourceGroupPreparer(name_prefix='servicebustest') @@ -464,7 +464,7 @@ def test_mgmt_queue_get_runtime_info_basic(self, servicebus_namespace_connection @CachedServiceBusNamespacePreparer(name_prefix='servicebustest') def test_mgmt_queue_get_runtime_info_negative(self, servicebus_namespace_connection_string): mgmt_service = ServiceBusManagementClient.from_connection_string(servicebus_namespace_connection_string) - with pytest.raises(msrest.exceptions.ValidationError): + with pytest.raises(TypeError): mgmt_service.get_queue_runtime_info(None) with pytest.raises(msrest.exceptions.ValidationError): diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_rules.py b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_rules.py index 7c87fb983564..174d81325083 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_rules.py +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_rules.py @@ -137,7 +137,7 @@ def test_mgmt_rule_update_success(self, servicebus_namespace_connection_string, try: topic_description = mgmt_service.create_topic(topic_name) - subscription_description = mgmt_service.create_subscription(topic_description, subscription_name) + subscription_description = mgmt_service.create_subscription(topic_description.name, subscription_name) mgmt_service.create_rule(topic_name, subscription_name, rule_name, filter=sql_filter) rule_desc = mgmt_service.get_rule(topic_name, subscription_name, rule_name) @@ -150,7 +150,7 @@ def test_mgmt_rule_update_success(self, servicebus_namespace_connection_string, rule_desc.filter = correlation_fitler rule_desc.action = sql_rule_action - mgmt_service.update_rule(topic_description, subscription_description, rule_desc) + mgmt_service.update_rule(topic_description.name, subscription_description.name, rule_desc) rule_desc = mgmt_service.get_rule(topic_name, subscription_name, rule_name) assert type(rule_desc.filter) == CorrelationRuleFilter @@ -190,13 +190,13 @@ def test_mgmt_rule_update_invalid(self, servicebus_namespace_connection_string, # change the name to a topic that doesn't exist; should fail. rule_desc.name = "iewdm" with pytest.raises(HttpResponseError): - mgmt_service.update_rule(topic_name, subscription_description, rule_desc) + mgmt_service.update_rule(topic_name, subscription_description.name, rule_desc) rule_desc.name = rule_name # change the name to a topic with an invalid name exist; should fail. rule_desc.name = '' with pytest.raises(msrest.exceptions.ValidationError): - mgmt_service.update_rule(topic_name, subscription_description, rule_desc) + mgmt_service.update_rule(topic_name, subscription_description.name, rule_desc) rule_desc.name = rule_name finally: diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_subscriptions.py b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_subscriptions.py index a545702d9158..581ab393e328 100644 --- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_subscriptions.py +++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_subscriptions.py @@ -102,11 +102,11 @@ def test_mgmt_subscription_update_success(self, servicebus_namespace_connection_ try: topic_description = mgmt_service.create_topic(topic_name) - subscription_description = mgmt_service.create_subscription(topic_description, subscription_name) + subscription_description = mgmt_service.create_subscription(topic_description.name, subscription_name) # Try updating one setting. subscription_description.lock_duration = datetime.timedelta(minutes=2) - mgmt_service.update_subscription(topic_description, subscription_description) + mgmt_service.update_subscription(topic_description.name, subscription_description) subscription_description = mgmt_service.get_subscription(topic_name, subscription_name) assert subscription_description.lock_duration == datetime.timedelta(minutes=2) @@ -119,8 +119,8 @@ def test_mgmt_subscription_update_success(self, servicebus_namespace_connection_ # topic_description.enable_partitioning = True # Cannot be changed after creation # topic_description.requires_session = True # Cannot be changed after creation - mgmt_service.update_subscription(topic_description, subscription_description) - subscription_description = mgmt_service.get_subscription(topic_description, subscription_name) + mgmt_service.update_subscription(topic_description.name, subscription_description) + subscription_description = mgmt_service.get_subscription(topic_description.name, subscription_name) assert subscription_description.auto_delete_on_idle == datetime.timedelta(minutes=10) assert subscription_description.dead_lettering_on_message_expiration == True @@ -192,7 +192,7 @@ def test_mgmt_subscription_delete(self, servicebus_namespace_connection_string): assert len(subscriptions) == 2 description = mgmt_service.get_subscription(topic_name, subscription_name_1) - mgmt_service.delete_subscription(topic_name, description) + mgmt_service.delete_subscription(topic_name, description.name) subscriptions = list(mgmt_service.list_subscriptions(topic_name)) assert len(subscriptions) == 1 and subscriptions[0].name == subscription_name_2 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 30135906288f..733d6302b0a7 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 @@ -183,13 +183,13 @@ def test_mgmt_topic_delete(self, servicebus_namespace_connection_string): assert len(topics) == 2 description = mgmt_service.get_topic('test_topic') - mgmt_service.delete_topic(description) + mgmt_service.delete_topic(description.name) topics = list(mgmt_service.list_topics()) assert len(topics) == 1 and topics[0].name == 'txt/.-_123' description = mgmt_service.get_topic('txt/.-_123') - mgmt_service.delete_topic(description) + mgmt_service.delete_topic(description.name) topics = list(mgmt_service.list_topics()) assert len(topics) == 0 From cc1189308df63647bd0848ce3662f5fb2f560260 Mon Sep 17 00:00:00 2001 From: Kieran Brantner-Magee Date: Wed, 30 Sep 2020 00:17:53 -0700 Subject: [PATCH 3/5] Fix mypy/pylint failures (type signature alignment), move helpers into utils. --- .../management/_management_client_async.py | 45 ++++++----------- .../management/_management_client.py | 49 +++++++------------ .../azure/servicebus/management/_utils.py | 19 +++++++ 3 files changed, 53 insertions(+), 60 deletions(-) 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 16ff697ed65b..4bd7c45b07ef 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 @@ -36,7 +36,8 @@ from ...management._handle_response_error import _handle_response_error from ...management._model_workaround import avoid_timedelta_overflow from ._utils import extract_data_template, extract_rule_data_template, get_next_template -from ...management._utils import deserialize_rule_key_values, serialize_rule_key_values +from ...management._utils import deserialize_rule_key_values, serialize_rule_key_values, \ + _validate_entity_name_type, _validate_topic_and_subscription_types, _validate_topic_subscription_and_rule_types if TYPE_CHECKING: @@ -96,13 +97,9 @@ def _build_pipeline(self, **kwargs): # pylint: disable=no-self-use transport = AioHttpTransport(**kwargs) return AsyncPipeline(transport, policies) - def _validate_entity_name_type(self, entity_name, display_name='entity name'): - if not isinstance(entity_name, str): - raise TypeError("{} must be a string, not {}".format(display_name, type(entity_name))) - async def _get_entity_element(self, entity_name, enrich=False, **kwargs): # type: (str, bool, Any) -> ElementTree - self._validate_entity_name_type(entity_name) + _validate_entity_name_type(entity_name) with _handle_response_error(): element = cast( @@ -111,14 +108,9 @@ async def _get_entity_element(self, entity_name, enrich=False, **kwargs): ) return element - def _validate_topic_and_subscription_types(self, topic_name, subscription_name): - if not isinstance(topic_name, str) or not isinstance(subscription_name, str): - raise TypeError("topic name and subscription name must be strings, not {} and {}".format( - type(topic_name), type(subscription_name))) - async def _get_subscription_element(self, topic_name, subscription_name, enrich=False, **kwargs): # type: (str, str, bool, Any) -> ElementTree - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) with _handle_response_error(): element = cast( @@ -128,14 +120,9 @@ async def _get_subscription_element(self, topic_name, subscription_name, enrich= ) return element - def _validate_topic_subscription_and_rule_types(self, topic_name, subscription_name, rule_name): - if not isinstance(topic_name, str) or not isinstance(subscription_name, str) or not isinstance(rule_name, str): - raise TypeError("topic name, subscription name and rule name must be strings, not {} {} and {}".format( - type(topic_name), type(subscription_name), type(rule_name))) - async def _get_rule_element(self, topic_name, subscription_name, rule_name, **kwargs): # type: (str, str, str, Any) -> ElementTree - self._validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) + _validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) with _handle_response_error(): element = cast( @@ -326,7 +313,7 @@ async def delete_queue(self, queue_name: str, **kwargs) -> None: a `QueueProperties` with name. :rtype: None """ - self._validate_entity_name_type(queue_name) + _validate_entity_name_type(queue_name) if not queue_name: raise ValueError("queue_name must not be None or empty") @@ -519,7 +506,7 @@ async def delete_topic(self, topic_name: str, **kwargs) -> None: :param str topic_name: The topic to be deleted. :rtype: None """ - self._validate_entity_name_type(topic_name) + _validate_entity_name_type(topic_name) await self._impl.entity.delete(topic_name, api_version=constants.API_VERSION, **kwargs) @@ -643,7 +630,7 @@ async def create_subscription( :type auto_delete_on_idle: ~datetime.timedelta :rtype: ~azure.servicebus.management.SubscriptionProperties """ - self._validate_entity_name_type(topic_name, display_name='topic_name') + _validate_entity_name_type(topic_name, display_name='topic_name') subscription = SubscriptionProperties( name, @@ -697,7 +684,7 @@ async def update_subscription( from `get_subscription`, `update_subscription` or `list_subscription` and has the updated properties. :rtype: None """ - self._validate_entity_name_type(topic_name, display_name='topic_name') + _validate_entity_name_type(topic_name, display_name='topic_name') to_update = subscription._to_internal_entity() @@ -730,7 +717,7 @@ async def delete_subscription( to be deleted. :rtype: None """ - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) await self._impl.subscription.delete(topic_name, subscription_name, api_version=constants.API_VERSION, **kwargs) @@ -742,7 +729,7 @@ def list_subscriptions( :returns: An iterable (auto-paging) response of SubscriptionProperties. :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.servicebus.management.SubscriptionProperties] """ - self._validate_entity_name_type(topic_name) + _validate_entity_name_type(topic_name) def entry_to_subscription(entry): subscription = SubscriptionProperties._from_internal_entity( @@ -766,7 +753,7 @@ def list_subscriptions_runtime_properties( :returns: An iterable (auto-paging) response of SubscriptionRuntimeProperties. :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.servicebus.management.SubscriptionRuntimeProperties] """ - self._validate_entity_name_type(topic_name) + _validate_entity_name_type(topic_name) def entry_to_subscription(entry): subscription = SubscriptionRuntimeProperties._from_internal_entity( @@ -822,7 +809,7 @@ async def create_rule( :rtype: ~azure.servicebus.management.RuleProperties """ - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) rule = RuleProperties( name, @@ -865,7 +852,7 @@ async def update_rule( `create_rule`, or `list_rules` and has the updated properties. :rtype: None """ - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) to_update = rule._to_internal_entity() @@ -898,7 +885,7 @@ async def delete_rule( :param str rule: The to-be-deleted rule. :rtype: None """ - self._validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) + _validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) await self._impl.rule.delete( topic_name, subscription_name, rule_name, api_version=constants.API_VERSION, **kwargs) @@ -917,7 +904,7 @@ def list_rules( :returns: An iterable (auto-paging) response of RuleProperties. :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.servicebus.management.RuleProperties] """ - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) def entry_to_rule(ele, entry): """ 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 caffd464f626..4cb93c6d8819 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py @@ -22,7 +22,8 @@ TopicDescriptionFeed, CreateSubscriptionBody, CreateSubscriptionBodyContent, CreateRuleBody, \ CreateRuleBodyContent, CreateQueueBody, CreateQueueBodyContent from ._utils import extract_data_template, get_next_template, deserialize_rule_key_values, serialize_rule_key_values, \ - extract_rule_data_template + extract_rule_data_template, _validate_entity_name_type, _validate_topic_and_subscription_types, \ + _validate_topic_subscription_and_rule_types from ._xml_workaround_policy import ServiceBusXMLWorkaroundPolicy from .._common.constants import JWT_TOKEN_SCOPE @@ -90,13 +91,9 @@ def _build_pipeline(self, **kwargs): # pylint: disable=no-self-use transport = RequestsTransport(**kwargs) return Pipeline(transport, policies) - def _validate_entity_name_type(self, entity_name, display_name='entity name'): - if not isinstance(entity_name, str): - raise TypeError("{} must be a string, not {}".format(display_name, type(entity_name))) - def _get_entity_element(self, entity_name, enrich=False, **kwargs): # type: (str, bool, Any) -> ElementTree - self._validate_entity_name_type(entity_name) + _validate_entity_name_type(entity_name) with _handle_response_error(): element = cast( @@ -105,14 +102,9 @@ def _get_entity_element(self, entity_name, enrich=False, **kwargs): ) return element - def _validate_topic_and_subscription_types(self, topic_name, subscription_name): - if not isinstance(topic_name, str) or not isinstance(subscription_name, str): - raise TypeError("topic name and subscription name must be strings, not {} and {}".format( - type(topic_name), type(subscription_name))) - def _get_subscription_element(self, topic_name, subscription_name, enrich=False, **kwargs): # type: (str, str, bool, Any) -> ElementTree - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) with _handle_response_error(): element = cast( ElementTree, @@ -121,14 +113,9 @@ def _get_subscription_element(self, topic_name, subscription_name, enrich=False, ) return element - def _validate_topic_subscription_and_rule_types(self, topic_name, subscription_name, rule_name): - if not isinstance(topic_name, str) or not isinstance(subscription_name, str) or not isinstance(rule_name, str): - raise TypeError("topic name, subscription name and rule name must be strings, not {} {} and {}".format( - type(topic_name), type(subscription_name), type(rule_name))) - def _get_rule_element(self, topic_name, subscription_name, rule_name, **kwargs): # type: (str, str, str, Any) -> ElementTree - self._validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) + _validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) with _handle_response_error(): element = cast( @@ -323,7 +310,7 @@ def delete_queue(self, queue_name, **kwargs): a `QueueProperties` with name. :rtype: None """ - self._validate_entity_name_type(queue_name) + _validate_entity_name_type(queue_name) if not queue_name: raise ValueError("queue_name must not be None or empty") @@ -529,7 +516,7 @@ def delete_topic(self, topic_name, **kwargs): :param str topic_name: The topic to be deleted. :rtype: None """ - self._validate_entity_name_type(topic_name) + _validate_entity_name_type(topic_name) self._impl.entity.delete(topic_name, api_version=constants.API_VERSION, **kwargs) @@ -652,7 +639,7 @@ def create_subscription(self, topic_name, name, **kwargs): :type auto_delete_on_idle: ~datetime.timedelta :rtype: ~azure.servicebus.management.SubscriptionProperties """ - self._validate_entity_name_type(topic_name, display_name='topic_name') + _validate_entity_name_type(topic_name, display_name='topic_name') subscription = SubscriptionProperties( name, @@ -705,7 +692,7 @@ def update_subscription(self, topic_name, subscription, **kwargs): from `get_subscription`, `update_subscription` or `list_subscription` and has the updated properties. :rtype: None """ - self._validate_entity_name_type(topic_name, display_name='topic_name') + _validate_entity_name_type(topic_name, display_name='topic_name') to_update = subscription._to_internal_entity() @@ -737,7 +724,7 @@ def delete_subscription(self, topic_name, subscription_name, **kwargs): be deleted. :rtype: None """ - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) self._impl.subscription.delete(topic_name, subscription_name, api_version=constants.API_VERSION, **kwargs) @@ -749,7 +736,7 @@ def list_subscriptions(self, topic_name, **kwargs): :returns: An iterable (auto-paging) response of SubscriptionProperties. :rtype: ~azure.core.paging.ItemPaged[~azure.servicebus.management.SubscriptionProperties] """ - self._validate_entity_name_type(topic_name) + _validate_entity_name_type(topic_name) def entry_to_subscription(entry): subscription = SubscriptionProperties._from_internal_entity( @@ -766,14 +753,14 @@ def entry_to_subscription(entry): get_next, extract_data) def list_subscriptions_runtime_properties(self, topic_name, **kwargs): - # type: (Union[str, TopicProperties], Any) -> ItemPaged[SubscriptionRuntimeProperties] + # type: (str, Any) -> ItemPaged[SubscriptionRuntimeProperties] """List the subscriptions runtime information of a ServiceBus Topic. :param str topic_name: The topic that owns the subscription. :returns: An iterable (auto-paging) response of SubscriptionRuntimeProperties. :rtype: ~azure.core.paging.ItemPaged[~azure.servicebus.management.SubscriptionRuntimeProperties] """ - self._validate_entity_name_type(topic_name) + _validate_entity_name_type(topic_name) def entry_to_subscription(entry): subscription = SubscriptionRuntimeProperties._from_internal_entity( @@ -790,7 +777,7 @@ def entry_to_subscription(entry): get_next, extract_data) def get_rule(self, topic_name, subscription_name, rule_name, **kwargs): - # type: (Union[str, TopicProperties], Union[str, SubscriptionProperties], str, Any) -> RuleProperties + # type: (str, str, str, Any) -> RuleProperties """Get the properties of a topic subscription rule. :param str topic_name: The topic that owns the subscription. @@ -827,7 +814,7 @@ def create_rule(self, topic_name, subscription_name, name, **kwargs): :rtype: ~azure.servicebus.management.RuleProperties """ - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) rule = RuleProperties( name, @@ -869,7 +856,7 @@ def update_rule(self, topic_name, subscription_name, rule, **kwargs): `create_rule`, or `list_rules` and has the updated properties. :rtype: None """ - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) to_update = rule._to_internal_entity() @@ -901,7 +888,7 @@ def delete_rule(self, topic_name, subscription_name, rule_name, **kwargs): :param str rule_name: The to-be-deleted rule. :rtype: None """ - self._validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) + _validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) self._impl.rule.delete(topic_name, subscription_name, rule_name, api_version=constants.API_VERSION, **kwargs) @@ -915,7 +902,7 @@ def list_rules(self, topic_name, subscription_name, **kwargs): :returns: An iterable (auto-paging) response of RuleProperties. :rtype: ~azure.core.paging.ItemPaged[~azure.servicebus.management.RuleProperties] """ - self._validate_topic_and_subscription_types(topic_name, subscription_name) + _validate_topic_and_subscription_types(topic_name, subscription_name) def entry_to_rule(ele, entry): """ diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py index 8e233434f711..a6dd5cfa15d7 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py @@ -241,3 +241,22 @@ def serialize_rule_key_values(entry_ele, rule_descripiton): .find(constants.RULE_PARAMETERS_TAG) if sql_action_parameters_ele: serialize_key_values(sql_action_parameters_ele, rule_descripiton.action.parameters) + + +# Helper functions for common parameter validation errors in the client. +def _validate_entity_name_type(entity_name, display_name='entity name'): + # type: (str, str) -> None + if not isinstance(entity_name, str): + raise TypeError("{} must be a string, not {}".format(display_name, type(entity_name))) + +def _validate_topic_and_subscription_types(topic_name, subscription_name): + # type: (str, str) -> None + if not isinstance(topic_name, str) or not isinstance(subscription_name, str): + raise TypeError("topic name and subscription name must be strings, not {} and {}".format( + type(topic_name), type(subscription_name))) + +def _validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name): + # type: (str, str, str) -> None + if not isinstance(topic_name, str) or not isinstance(subscription_name, str) or not isinstance(rule_name, str): + raise TypeError("topic name, subscription name and rule name must be strings, not {} {} and {}".format( + type(topic_name), type(subscription_name), type(rule_name))) From 584d7e503e150c456c59deb9ad80f87de2a1c756 Mon Sep 17 00:00:00 2001 From: Kieran Brantner-Magee Date: Wed, 30 Sep 2020 10:05:11 -0700 Subject: [PATCH 4/5] Trailing whitespace fix. --- .../azure-servicebus/azure/servicebus/management/_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py index a6dd5cfa15d7..7507ba9d2f0b 100644 --- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py +++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py @@ -245,7 +245,7 @@ def serialize_rule_key_values(entry_ele, rule_descripiton): # Helper functions for common parameter validation errors in the client. def _validate_entity_name_type(entity_name, display_name='entity name'): - # type: (str, str) -> None + # type: (str, str) -> None if not isinstance(entity_name, str): raise TypeError("{} must be a string, not {}".format(display_name, type(entity_name))) From 27fbac500827a7f84a19de8b0638ad0372731885 Mon Sep 17 00:00:00 2001 From: KieranBrantnerMagee Date: Thu, 1 Oct 2020 17:38:24 -0700 Subject: [PATCH 5/5] Apply suggestions from code review Fix doctype that had old name, make changelog note more precise. Co-authored-by: Adam Ling (MSFT) --- sdk/servicebus/azure-servicebus/CHANGELOG.md | 2 +- .../azure/servicebus/aio/management/_management_client_async.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/servicebus/azure-servicebus/CHANGELOG.md b/sdk/servicebus/azure-servicebus/CHANGELOG.md index 5eb2c6ff96d5..08beca6852da 100644 --- a/sdk/servicebus/azure-servicebus/CHANGELOG.md +++ b/sdk/servicebus/azure-servicebus/CHANGELOG.md @@ -4,7 +4,7 @@ **Breaking Changes** * Passing any type other than `ReceiveMode` as parameter `receive_mode` now throws a `TypeError` instead of `AttributeError`. -* Administration Client calls now take only entity names, not `EntityDescriptions` as well to reduce ambiguity in which entity was being acted on. TypeError will now be thrown on improper parameter types (non-string.) +* Administration Client calls now take only entity names, not `Descriptions` as well to reduce ambiguity in which entity was being acted on. TypeError will now be thrown on improper parameter types (non-string). ## 7.0.0b6 (2020-09-10) 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 4bd7c45b07ef..46d1bac5816f 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 @@ -882,7 +882,7 @@ async def delete_rule( :param str topic_name: The topic that owns the subscription. :param str subscription_name: The subscription that owns the topic. - :param str rule: The to-be-deleted rule. + :param str rule_name: The to-be-deleted rule. :rtype: None """ _validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name)