diff --git a/sdk/servicebus/azure-servicebus/CHANGELOG.md b/sdk/servicebus/azure-servicebus/CHANGELOG.md index a3415ad1f9da..08beca6852da 100644 --- a/sdk/servicebus/azure-servicebus/CHANGELOG.md +++ b/sdk/servicebus/azure-servicebus/CHANGELOG.md @@ -4,6 +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 `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 f70e7a675394..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 @@ -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: @@ -98,6 +99,7 @@ def _build_pipeline(self, **kwargs): # pylint: disable=no-self-use async def _get_entity_element(self, entity_name, enrich=False, **kwargs): # type: (str, bool, Any) -> ElementTree + _validate_entity_name_type(entity_name) with _handle_response_error(): element = cast( @@ -108,6 +110,7 @@ async def _get_entity_element(self, entity_name, enrich=False, **kwargs): async def _get_subscription_element(self, topic_name, subscription_name, enrich=False, **kwargs): # type: (str, str, bool, Any) -> ElementTree + _validate_topic_and_subscription_types(topic_name, subscription_name) with _handle_response_error(): element = cast( @@ -119,6 +122,7 @@ async def _get_subscription_element(self, topic_name, subscription_name, enrich= async def _get_rule_element(self, topic_name, subscription_name, rule_name, **kwargs): # type: (str, str, str, Any) -> ElementTree + _validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) with _handle_response_error(): element = cast( @@ -302,17 +306,15 @@ 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 + _validate_entity_name_type(queue_name) + if not queue_name: raise ValueError("queue_name must not be None or empty") with _handle_response_error(): @@ -498,16 +500,14 @@ 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 + _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]: @@ -549,18 +549,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: @@ -571,18 +567,14 @@ async def get_subscription( return subscription async def get_subscription_runtime_properties( - 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: @@ -593,11 +585,11 @@ async def get_subscription_runtime_properties( 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 @@ -638,10 +630,8 @@ 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 + _validate_entity_name_type(topic_name, display_name='topic_name') + subscription = SubscriptionProperties( name, lock_duration=kwargs.pop("lock_duration", None), @@ -682,22 +672,19 @@ 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. 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 + _validate_entity_name_type(topic_name, display_name='topic_name') to_update = subscription._to_internal_entity() @@ -721,37 +708,28 @@ 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 + _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( - 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 + _validate_entity_name_type(topic_name) def entry_to_subscription(entry): subscription = SubscriptionProperties._from_internal_entity( @@ -768,17 +746,14 @@ def entry_to_subscription(entry): get_next, extract_data) def list_subscriptions_runtime_properties( - 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 + _validate_entity_name_type(topic_name) def entry_to_subscription(entry): subscription = SubscriptionRuntimeProperties._from_internal_entity( @@ -795,24 +770,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: @@ -824,13 +791,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 @@ -842,14 +809,8 @@ 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 + _validate_topic_and_subscription_types(topic_name, subscription_name) + rule = RuleProperties( name, filter=kwargs.pop("filter", None), @@ -877,29 +838,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 + _validate_topic_and_subscription_types(topic_name, subscription_name) to_update = rule._to_internal_entity() @@ -922,53 +875,36 @@ async def update_rule( ) async def delete_rule( - self, topic: Union[str, TopicProperties], subscription: Union[str, SubscriptionProperties], - rule: Union[str, RuleProperties], **kwargs) -> None: + self, topic_name: str, subscription_name: str, + rule_name: str, **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. + :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 + _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) 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 + _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 a2f680e1d2c1..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 @@ -92,6 +93,7 @@ def _build_pipeline(self, **kwargs): # pylint: disable=no-self-use def _get_entity_element(self, entity_name, enrich=False, **kwargs): # type: (str, bool, Any) -> ElementTree + _validate_entity_name_type(entity_name) with _handle_response_error(): element = cast( @@ -102,7 +104,7 @@ def _get_entity_element(self, entity_name, enrich=False, **kwargs): def _get_subscription_element(self, topic_name, subscription_name, enrich=False, **kwargs): # type: (str, str, bool, Any) -> ElementTree - + _validate_topic_and_subscription_types(topic_name, subscription_name) with _handle_response_error(): element = cast( ElementTree, @@ -113,6 +115,7 @@ def _get_subscription_element(self, topic_name, subscription_name, enrich=False, def _get_rule_element(self, topic_name, subscription_name, rule_name, **kwargs): # type: (str, str, str, Any) -> ElementTree + _validate_topic_subscription_and_rule_types(topic_name, subscription_name, rule_name) with _handle_response_error(): element = cast( @@ -299,18 +302,16 @@ 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 + _validate_entity_name_type(queue_name) + if not queue_name: raise ValueError("queue_name must not be None or empty") with _handle_response_error(): @@ -508,17 +509,15 @@ 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 + _validate_entity_name_type(topic_name) + self._impl.entity.delete(topic_name, api_version=constants.API_VERSION, **kwargs) def list_topics(self, **kwargs): @@ -561,18 +560,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: @@ -582,18 +577,14 @@ def get_subscription(self, topic, subscription_name, **kwargs): entry.title, entry.content.subscription_description) return subscription - def get_subscription_runtime_properties(self, topic, subscription_name, **kwargs): - # type: (Union[str, TopicProperties], str, Any) -> SubscriptionRuntimeProperties + def get_subscription_runtime_properties(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: @@ -603,11 +594,11 @@ def get_subscription_runtime_properties(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 @@ -648,10 +639,8 @@ 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 + _validate_entity_name_type(topic_name, display_name='topic_name') + subscription = SubscriptionProperties( name, lock_duration=kwargs.pop("lock_duration", None), @@ -691,22 +680,19 @@ 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 + _validate_entity_name_type(topic_name, display_name='topic_name') to_update = subscription._to_internal_entity() @@ -729,37 +715,28 @@ 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 + _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, **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 + _validate_entity_name_type(topic_name) def entry_to_subscription(entry): subscription = SubscriptionProperties._from_internal_entity( @@ -775,18 +752,15 @@ def entry_to_subscription(entry): return ItemPaged( get_next, extract_data) - def list_subscriptions_runtime_properties(self, topic, **kwargs): - # type: (Union[str, TopicProperties], Any) -> ItemPaged[SubscriptionRuntimeProperties] + def list_subscriptions_runtime_properties(self, topic_name, **kwargs): + # type: (str, 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 + _validate_entity_name_type(topic_name) def entry_to_subscription(entry): subscription = SubscriptionRuntimeProperties._from_internal_entity( @@ -802,24 +776,16 @@ def entry_to_subscription(entry): return ItemPaged( get_next, extract_data) - def get_rule(self, topic, subscription, rule_name, **kwargs): - # type: (Union[str, TopicProperties], Union[str, SubscriptionProperties], str, Any) -> RuleProperties + def get_rule(self, topic_name, subscription_name, rule_name, **kwargs): + # type: (str, str, 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: @@ -830,13 +796,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 @@ -848,15 +814,8 @@ def create_rule(self, topic, subscription, name, **kwargs): :rtype: ~azure.servicebus.management.RuleProperties """ + _validate_topic_and_subscription_types(topic_name, subscription_name) - 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), @@ -883,29 +842,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 + _validate_topic_and_subscription_types(topic_name, subscription_name) to_update = rule._to_internal_entity() @@ -927,48 +878,31 @@ 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 + _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, 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 + _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..7507ba9d2f0b 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))) 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 dbdaf4963077..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:22Z + 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: Mon, 17 Aug 2020 08:03:22 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/eidk?api-version=2017-04eidk2020-08-17T08:03:23Z2020-08-17T08:03:23Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04eidk2020-09-29T08:32:21Z2020-09-29T08:32:21Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:23.383Z2020-08-17T08:03:23.493ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:23 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://servicebustest32ip2wgoaa.servicebus.windows.net/eidk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04 - request: body: null headers: @@ -65,23 +65,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/eidk?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/eidk?enrich=false&api-version=2017-04eidk2020-08-17T08:03:23Z2020-08-17T08:03:23Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?enrich=false&api-version=2017-04eidk2020-09-29T08:32:21Z2020-09-29T08:32:21Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:23.383Z2020-08-17T08:03:23.493Z0001-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: Mon, 17 Aug 2020 08:03:24 GMT - etag: '637332482034930000' + 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://servicebustest32ip2wgoaa.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: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:24 GMT - etag: '637332482034930000' + 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://servicebustest32ip2wgoaa.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 32ebcd073691..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:25Z + 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: Mon, 17 Aug 2020 08:03:25 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/eriodk?api-version=2017-04eriodk2020-08-17T08:03:26Z2020-08-17T08:03:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04eriodk2020-09-29T08:32:24Z2020-09-29T08:32:24Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:26.427Z2020-08-17T08:03:26.457ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:26 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://servicebustest32ip2wgoaa.servicebus.windows.net/eriodk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04 - request: body: ' @@ -74,19 +74,19 @@ interactions: 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:d101ace7-4956-4c77-819c-5bed2275081f_G9, - SystemTracker:servicebustestsbname.servicebus.windows.net:eriodk, Timestamp:2020-08-17T08:03:27 + 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: Mon, 17 Aug 2020 08:03:26 GMT - etag: '637332482064570000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/eriodk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04 - request: body: null headers: @@ -101,12 +101,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:27 GMT - etag: '637332482064570000' + 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://servicebustest32ip2wgoaa.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 6e2b07ee2ae1..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:28Z + 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: Mon, 17 Aug 2020 08:03:28 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dkldf?api-version=2017-04dkldf2020-08-17T08:03:29Z2020-08-17T08:03:29Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkldf?api-version=2017-04dkldf2020-09-29T08:32:27Z2020-09-29T08:32:27Zservicebustestrm7a5oi5hkPT13S49152falsetruePT11MtruePT12M14true00trueActive2020-08-17T08:03:29.21Z2020-08-17T08:03:29.32ZtruePT10MtrueAvailabletrue + 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: Mon, 17 Aug 2020 08:03:29 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://servicebustest32ip2wgoaa.servicebus.windows.net/dkldf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkldf?api-version=2017-04 - request: body: null headers: @@ -65,23 +65,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04dkldf2020-08-17T08:03:29Z2020-08-17T08:03:29Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04dkldf2020-09-29T08:32:27Z2020-09-29T08:32:27Zservicebustestrm7a5oi5hkPT13S49152falsetruePT11MtruePT12M14true00trueActive2020-08-17T08:03:29.21Z2020-08-17T08:03:29.32Z0001-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: Mon, 17 Aug 2020 08:03:30 GMT - etag: '637332482093200000' + 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://servicebustest32ip2wgoaa.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: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:30 GMT - etag: '637332482093200000' + 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://servicebustest32ip2wgoaa.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 aae99bbb3fd5..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:31Z + 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: Mon, 17 Aug 2020 08:03:31 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:03:31Z2020-08-17T08:03:31Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:29Z2020-09-29T08:32:29Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:31.723Z2020-08-17T08:03:31.767ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:32 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://servicebustest32ip2wgoaa.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: @@ -65,23 +65,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:32Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:03:31Z2020-08-17T08:03:31Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:03:31.723Z2020-08-17T08:03:31.767Z0001-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: Mon, 17 Aug 2020 08:03:32 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://servicebustest32ip2wgoaa.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: ' @@ -100,21 +100,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:03:33Z2020-08-17T08:03:33Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:33.217Z2020-08-17T08:03:33.257ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:33 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://servicebustest32ip2wgoaa.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: @@ -126,29 +126,29 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:34Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:03:31Z2020-08-17T08:03:31Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:03:31.723Z2020-08-17T08:03:31.767Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:03:33Z2020-08-17T08:03:33Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:33.217Z2020-08-17T08:03:33.257Z0001-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: Mon, 17 Aug 2020 08:03:34 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://servicebustest32ip2wgoaa.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: @@ -163,14 +163,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:34 GMT - etag: '637332482117670000' + 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://servicebustest32ip2wgoaa.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: @@ -182,23 +182,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:35Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:03:33Z2020-08-17T08:03:33Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:03:33.217Z2020-08-17T08:03:33.257Z0001-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: Mon, 17 Aug 2020 08:03:35 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://servicebustest32ip2wgoaa.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: @@ -213,14 +213,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:35 GMT - etag: '637332482132570000' + 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://servicebustest32ip2wgoaa.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: @@ -232,15 +232,15 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:36Z + 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: Mon, 17 Aug 2020 08:03:36 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://servicebustest32ip2wgoaa.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 e43657c3a5a5..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:37Z + 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: Mon, 17 Aug 2020 08:03:36 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:03:37Z2020-08-17T08:03:37Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:35Z2020-09-29T08:32:35Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:37.74Z2020-08-17T08:03:37.77ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:38 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://servicebustest32ip2wgoaa.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: @@ -65,23 +65,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:38Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:03:37Z2020-08-17T08:03:37Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:03:37.74Z2020-08-17T08:03:37.77Z0001-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: Mon, 17 Aug 2020 08:03:38 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://servicebustest32ip2wgoaa.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: @@ -96,14 +96,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:39 GMT - etag: '637332482177700000' + 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://servicebustest32ip2wgoaa.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: @@ -115,17 +115,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:40Z + 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: Mon, 17 Aug 2020 08:03:39 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://servicebustest32ip2wgoaa.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: @@ -138,18 +138,18 @@ interactions: response: body: string: 404No service is hosted at the specified - address. TrackingId:220775a9-fa27-4b64-91fc-2785f263e242_G11, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, - Timestamp:2020-08-17T08:03:40 + 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: Mon, 17 Aug 2020 08:03:40 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://servicebustest32ip2wgoaa.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: @@ -162,16 +162,16 @@ interactions: response: body: string: 404No service is hosted at the specified - address. TrackingId:6d11bd38-760b-48ea-88fb-f0b414d2e284_G11, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, - Timestamp:2020-08-17T08:03:41 + 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: Mon, 17 Aug 2020 08:03:40 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://servicebustest32ip2wgoaa.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 9600157d5108..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:41Z + 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: Mon, 17 Aug 2020 08:03:41 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue0?api-version=2017-04queue02020-08-17T08:03:42Z2020-08-17T08:03:42Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04queue02020-09-29T08:32:40Z2020-09-29T08:32:40Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:42.25Z2020-08-17T08:03:42.3ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:42 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue0?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04 - request: body: ' @@ -72,21 +72,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue1?api-version=2017-04queue12020-08-17T08:03:43Z2020-08-17T08:03:43Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:32:41Z2020-09-29T08:32:41Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:43.33Z2020-08-17T08:03:43.37ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:43 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04 - request: body: ' @@ -105,21 +105,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue2?api-version=2017-04queue22020-08-17T08:03:44Z2020-08-17T08:03:44Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:32:42Z2020-09-29T08:32:42Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:44.203Z2020-08-17T08:03:44.233ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:44 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04 - request: body: ' @@ -138,21 +138,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue3?api-version=2017-04queue32020-08-17T08:03:45Z2020-08-17T08:03:45Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:32:43Z2020-09-29T08:32:43Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:45.17Z2020-08-17T08:03:45.25ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:45 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue3?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04 - request: body: ' @@ -171,21 +171,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue4?api-version=2017-04queue42020-08-17T08:03:46Z2020-08-17T08:03:46Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:32:44Z2020-09-29T08:32:44Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:46.343Z2020-08-17T08:03:46.387ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:46 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue4?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04 - request: body: ' @@ -204,21 +204,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue5?api-version=2017-04queue52020-08-17T08:03:47Z2020-08-17T08:03:47Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:47.493Z2020-08-17T08:03:47.527ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:47 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue5?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04 - request: body: ' @@ -237,21 +237,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue6?api-version=2017-04queue62020-08-17T08:03:48Z2020-08-17T08:03:48Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:48.587Z2020-08-17T08:03:48.633ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:48 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue6?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04 - request: body: ' @@ -270,21 +270,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue7?api-version=2017-04queue72020-08-17T08:03:49Z2020-08-17T08:03:49Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:32:47Z2020-09-29T08:32:47Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:49.557Z2020-08-17T08:03:49.587ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:49 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue7?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04 - request: body: ' @@ -303,21 +303,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue8?api-version=2017-04queue82020-08-17T08:03:50Z2020-08-17T08:03:50Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:32:48Z2020-09-29T08:32:48Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:50.71Z2020-08-17T08:03:50.803ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:51 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue8?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04 - request: body: ' @@ -336,21 +336,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue9?api-version=2017-04queue92020-08-17T08:03:52Z2020-08-17T08:03:52Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:32:49Z2020-09-29T08:32:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:52.15Z2020-08-17T08:03:52.18ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:03:52 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue9?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04 - request: body: null headers: @@ -365,14 +365,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:52 GMT - etag: '637332482223000000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue0?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04 - request: body: null headers: @@ -384,71 +384,71 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:03:53Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue1?api-version=2017-04queue12020-08-17T08:03:43Z2020-08-17T08:03:43Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:03:43.33Z2020-08-17T08:03:43.37Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:41.367Z2020-09-29T08:32:41.4Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue2?api-version=2017-04queue22020-08-17T08:03:44Z2020-08-17T08:03:44Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:32:42Z2020-09-29T08:32:42Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:44.203Z2020-08-17T08:03:44.233Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:42.31Z2020-09-29T08:32:42.387Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue3?api-version=2017-04queue32020-08-17T08:03:45Z2020-08-17T08:03:45Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:32:43Z2020-09-29T08:32:43Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:45.17Z2020-08-17T08:03:45.25Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:43.2970843Z2020-09-29T08:32:43.2970843Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue4?api-version=2017-04queue42020-08-17T08:03:46Z2020-08-17T08:03:46Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:32:44Z2020-09-29T08:32:44Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:46.343Z2020-08-17T08:03:46.387Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:44.1411433Z2020-09-29T08:32:44.1411433Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue5?api-version=2017-04queue52020-08-17T08:03:47Z2020-08-17T08:03:47Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:47.493Z2020-08-17T08:03:47.527Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.087Z2020-09-29T08:32:45.12Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue6?api-version=2017-04queue62020-08-17T08:03:48Z2020-08-17T08:03:48Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:48.587Z2020-08-17T08:03:48.633Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.957Z2020-09-29T08:32:45.987Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue7?api-version=2017-04queue72020-08-17T08:03:49Z2020-08-17T08:03:49Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:32:47Z2020-09-29T08:32:47Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:49.557Z2020-08-17T08:03:49.587Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:47.053Z2020-09-29T08:32:47.123Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue8?api-version=2017-04queue82020-08-17T08:03:50Z2020-08-17T08:03:50Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:32:48Z2020-09-29T08:32:48Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:50.71Z2020-08-17T08:03:50.803Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:48.303Z2020-09-29T08:32:48.397Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue9?api-version=2017-04queue92020-08-17T08:03:52Z2020-08-17T08:03:52Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:32:49Z2020-09-29T08:32:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:03:52.15Z2020-08-17T08:03:52.18Z0001-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: Mon, 17 Aug 2020 08:03:53 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://servicebustest32ip2wgoaa.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: @@ -463,14 +463,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:54 GMT - etag: '637332482233700000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue1?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04 - request: body: null headers: @@ -485,14 +485,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:54 GMT - etag: '637332482242330000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue2?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04 - request: body: null headers: @@ -507,14 +507,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:55 GMT - etag: '637332482252500000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue3?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04 - request: body: null headers: @@ -529,14 +529,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:55 GMT - etag: '637332482263870000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue4?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04 - request: body: null headers: @@ -551,14 +551,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:56 GMT - etag: '637332482275270000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue5?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04 - request: body: null headers: @@ -573,14 +573,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:57 GMT - etag: '637332482286330000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue6?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04 - request: body: null headers: @@ -595,14 +595,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:57 GMT - etag: '637332482295870000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue7?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04 - request: body: null headers: @@ -617,14 +617,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:58 GMT - etag: '637332482308030000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue8?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04 - request: body: null headers: @@ -639,14 +639,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:03:59 GMT - etag: '637332482321800000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/queue9?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04 - request: body: null headers: @@ -658,15 +658,15 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:00Z + 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: Mon, 17 Aug 2020 08:03:59 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://servicebustest32ip2wgoaa.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 df6310484979..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:05Z + 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: Mon, 17 Aug 2020 08:04:05 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://servicebustest32ip2wgoaa.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: @@ -32,17 +32,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:05Z + 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: Mon, 17 Aug 2020 08:04:05 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://servicebustest32ip2wgoaa.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: ' @@ -61,21 +61,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:06Z2020-08-17T08:04:06Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:02Z2020-09-29T08:33:02Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:06.12Z2020-08-17T08:04:06.15ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:06 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://servicebustest32ip2wgoaa.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: @@ -87,23 +87,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:07Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:06Z2020-08-17T08:04:06Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:04:06.12Z2020-08-17T08:04:06.15Z0001-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: Mon, 17 Aug 2020 08:04:06 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://servicebustest32ip2wgoaa.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: @@ -118,14 +118,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:07 GMT - etag: '637332482461500000' + 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://servicebustest32ip2wgoaa.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: @@ -137,17 +137,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:08Z + 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: Mon, 17 Aug 2020 08:04:08 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://servicebustest32ip2wgoaa.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: @@ -159,17 +159,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:09Z + 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: Mon, 17 Aug 2020 08:04:08 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://servicebustest32ip2wgoaa.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: ' @@ -188,21 +188,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:09Z2020-08-17T08:04:09Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:05Z2020-09-29T08:33:05Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:09.467Z2020-08-17T08:04:09.547ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:09 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://servicebustest32ip2wgoaa.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: @@ -214,23 +214,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:10Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:09Z2020-08-17T08:04:09Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:04:09.467Z2020-08-17T08:04:09.547Z0001-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: Mon, 17 Aug 2020 08:04:10 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://servicebustest32ip2wgoaa.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: @@ -245,14 +245,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:10 GMT - etag: '637332482495470000' + 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://servicebustest32ip2wgoaa.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: @@ -264,15 +264,15 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:11Z + 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: Mon, 17 Aug 2020 08:04:10 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://servicebustest32ip2wgoaa.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 7040ecef6260..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 @@ -10,19 +10,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: 401claim is empty or token is invalid. TrackingId:0f51f908-405a-4e0a-825e-8cfb125b7688_G13, + string: 401claim is empty or token is invalid. TrackingId:bf0e040b-8d63-4468-9cc8-421273cd3c59_G4, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-08-17T08:04:16 + Timestamp:2020-09-29T08:33:13 headers: content-type: application/xml; charset=utf-8 - date: Mon, 17 Aug 2020 08:04:16 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://servicebustest32ip2wgoaa.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: @@ -34,17 +34,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: 401claim is empty or token is invalid. TrackingId:bd5947d7-3f24-4a6f-9f80-0117ce0467d8_G9, + string: 401claim is empty or token is invalid. TrackingId:ce4339ff-254a-4730-b12a-af0a240533c3_G1, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-08-17T08:04:17 + Timestamp:2020-09-29T08:33:13 headers: content-type: application/xml; charset=utf-8 - date: Mon, 17 Aug 2020 08:04:17 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://servicebustest32ip2wgoaa.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 d36bcbd5f4ee..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:18Z + 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: Mon, 17 Aug 2020 08:04:17 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://servicebustest32ip2wgoaa.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: @@ -32,17 +32,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:18Z + 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: Mon, 17 Aug 2020 08:04:17 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://servicebustest32ip2wgoaa.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: ' @@ -61,21 +61,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:04:19Z2020-08-17T08:04:19Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:33:15Z2020-09-29T08:33:15Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:19.12Z2020-08-17T08:04:19.223ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:19 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://servicebustest32ip2wgoaa.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: @@ -87,23 +87,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:20Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:04:19Z2020-08-17T08:04:19Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:04:19.12Z2020-08-17T08:04:19.223Z0001-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: Mon, 17 Aug 2020 08:04:19 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://servicebustest32ip2wgoaa.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: @@ -118,14 +118,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:20 GMT - etag: '637332482592230000' + 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://servicebustest32ip2wgoaa.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: @@ -137,15 +137,15 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:21Z + 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: Mon, 17 Aug 2020 08:04:20 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://servicebustest32ip2wgoaa.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 442e820bddd4..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:21Z + 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: Mon, 17 Aug 2020 08:04:20 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://servicebustest32ip2wgoaa.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: ' @@ -39,27 +39,27 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/vbmfm?api-version=2017-04vbmfm2020-08-17T08:04:22Z2020-08-17T08:04:22Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04vbmfm2020-09-29T08:33:19Z2020-09-29T08:33:19Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:22.533Z2020-08-17T08:04:22.573ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:22 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://servicebustest32ip2wgoaa.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 - request: body: ' PT1M1024falsetrueP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:04:22.533Z2020-08-17T08:04:22.573ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -77,25 +77,25 @@ interactions: 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:1470bbfe-cca9-4311-b016-fcfd9a788b87_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, - Timestamp:2020-08-17T08:04:23 + . 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: Mon, 17 Aug 2020 08:04:22 GMT - etag: '637332482625730000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 - request: body: ' PT1M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:04:22.533Z2020-08-17T08:04:22.573ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -113,24 +113,24 @@ interactions: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:88959bfd-479a-40e2-b8ab-70207391c4fe_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:dkfrgx, - Timestamp:2020-08-17T08:04:24 + . 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: Mon, 17 Aug 2020 08:04:23 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://servicebustest32ip2wgoaa.servicebus.windows.net/dkfrgx?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkfrgx?api-version=2017-04 - request: body: ' P25D1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:04:22.533Z2020-08-17T08:04:22.573ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -152,19 +152,19 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:c125f7b9-9a85-4c33-8b62-1725c8ee22dd_G5, - SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, Timestamp:2020-08-17T08:04:24' + 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: Mon, 17 Aug 2020 08:04:23 GMT - etag: '637332482625730000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/vbmfm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04 - request: body: null headers: @@ -179,12 +179,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:24 GMT - etag: '637332482625730000' + 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://servicebustest32ip2wgoaa.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 427362042cfb..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:25Z + 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: Mon, 17 Aug 2020 08:04:25 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://servicebustest32ip2wgoaa.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: ' @@ -39,27 +39,27 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-08-17T08:04:26Z2020-08-17T08:04:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-09-29T08:33:22Z2020-09-29T08:33:22Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:26.11Z2020-08-17T08:04:26.14ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:26 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://servicebustest32ip2wgoaa.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04 - request: body: ' PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:04:26.110Z2020-08-17T08:04:26.140ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:33:22.613Z2020-09-29T08:33:22.687ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -75,22 +75,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-08-17T08:04:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-09-29T08:33:23Zservicebustestrm7a5oi5hkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:04:26.11Z2020-08-17T08:04:26.14ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:26 GMT - etag: '637332482661400000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04 - request: body: null headers: @@ -102,30 +102,30 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2020-08-17T08:04:26Z2020-08-17T08:04:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2020-09-29T08:33:22Z2020-09-29T08:33:23Zservicebustestrm7a5oi5hkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:04:26.11Z2020-08-17T08:04:26.667Z0001-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: Mon, 17 Aug 2020 08:04:26 GMT - etag: '637332482666670000' + 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://servicebustest32ip2wgoaa.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-08-17T08:04:26.110Z2020-08-17T08:04:26.667Z0001-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 @@ -141,23 +141,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-08-17T08:04:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2020-09-29T08:33:23Zservicebustestrm7a5oi5hkPT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-08-17T08:04:26.11Z2020-08-17T08:04:26.667Z0001-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: Mon, 17 Aug 2020 08:04:26 GMT - etag: '637332482666670000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/ewuidfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?api-version=2017-04 - request: body: null headers: @@ -169,23 +169,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2020-08-17T08:04:26Z2020-08-17T08:04:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2020-09-29T08:33:22Z2020-09-29T08:33:23Zservicebustestrm7a5oi5hkPT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-08-17T08:04:26.11Z2020-08-17T08:04:26.97Z0001-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: Mon, 17 Aug 2020 08:04:27 GMT - etag: '637332482669700000' + 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://servicebustest32ip2wgoaa.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: @@ -200,12 +200,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:27 GMT - etag: '637332482669700000' + 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://servicebustest32ip2wgoaa.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 d6f7144bbcff..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:28Z + 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: Mon, 17 Aug 2020 08:04:27 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-08-17T08:04:29Z2020-08-17T08:04:29Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:33:25Z2020-09-29T08:33:25Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:04:29.083Z2020-08-17T08:04:29.117ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:29 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://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 - request: body: ' @@ -72,22 +72,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-08-17T08:04:29Z2020-08-17T08:04:29Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:33:26Z2020-09-29T08:33:26ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:04:29.7242182Z2020-08-17T08:04:29.7242182Z0001-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: Mon, 17 Aug 2020 08:04:29 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: ' @@ -101,12 +101,12 @@ interactions: xsi:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-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: @@ -115,9 +115,9 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-08-17T08:04:30Z2020-08-17T08:04:30Zhttps://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-08-17T08:04:30.0367819Ztest_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: Mon, 17 Aug 2020 08:04:29 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: @@ -150,9 +150,9 @@ interactions: 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://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12020-08-17T08:04:30Z2020-08-17T08:04:30Zsb://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-08-17T08:04:30.0302802Ztest_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: Mon, 17 Aug 2020 08:04:29 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: @@ -195,25 +195,25 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-08-17T08:04:30Z2020-08-17T08:04:30Zhttps://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-08-17T08:04:30.1773498Ztest_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: Mon, 17 Aug 2020 08:04:29 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: @@ -225,25 +225,25 @@ interactions: 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://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22020-08-17T08:04:30Z2020-08-17T08:04:30Zsb://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-08-17T08:04:30.186477Ztest_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: Mon, 17 Aug 2020 08:04:29 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: ' @@ -264,23 +264,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-08-17T08:04:30Z2020-08-17T08:04:30Zhttps://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-08-17T08:04:30.3179697Ztest_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: Mon, 17 Aug 2020 08:04:29 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: @@ -292,23 +292,23 @@ interactions: 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://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32020-08-17T08:04:30Z2020-08-17T08:04:30Zsb://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-08-17T08:04:30.3271403Ztest_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: Mon, 17 Aug 2020 08:04:29 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: @@ -323,14 +323,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:29 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: @@ -345,14 +345,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:30 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: @@ -367,14 +367,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:30 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: @@ -389,14 +389,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:30 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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: @@ -411,12 +411,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:31 GMT - etag: '637332482691170000' + 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://servicebustest32ip2wgoaa.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 b5614cc57fd4..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:32Z + 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: Mon, 17 Aug 2020 08:04:32 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-08-17T08:04:33Z2020-08-17T08:04:33Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:33:29Z2020-09-29T08:33:29Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:04:33.18Z2020-08-17T08:04:33.217ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:33 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://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 - request: body: ' @@ -72,34 +72,34 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-08-17T08:04:34Z2020-08-17T08:04:34Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:33:30Z2020-09-29T08:33:30ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:04:34.0371816Z2020-08-17T08:04:34.0371816Z0001-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: Mon, 17 Aug 2020 08:04:34 GMT - etag: '637332482732170000' + 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://servicebustest32ip2wgoaa.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''20Priority = ''low''20truerule' headers: Accept: - application/xml Content-Length: - - '499' + - '550' Content-Type: - application/atom+xml User-Agent: @@ -108,36 +108,36 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-08-17T08:04:34Z2020-08-17T08:04:34Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-09-29T08:33:30Z2020-09-29T08:33:30ZPriority - = 'low'202020-08-17T08:04:34.3340559Zrule + = 'low'20true2020-09-29T08:33:30.6425026Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:34 GMT - etag: '637332482732170000' + 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://servicebustest32ip2wgoaa.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''20Priority = ''low''20truerule' headers: Accept: - application/xml Content-Length: - - '499' + - '550' Content-Type: - application/atom+xml User-Agent: @@ -147,19 +147,19 @@ interactions: response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo|rule' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:f947331b-cc06-4063-9ba5-a892a99ee380_B10, - SystemTracker:NoSystemTracker, Timestamp:2020-08-17T08:04:34 + 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: Mon, 17 Aug 2020 08:04:35 GMT - etag: '637332482732170000' + 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://servicebustest32ip2wgoaa.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: @@ -174,14 +174,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:35 GMT - etag: '637332482732170000' + 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://servicebustest32ip2wgoaa.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: @@ -196,14 +196,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:36 GMT - etag: '637332482732170000' + 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://servicebustest32ip2wgoaa.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: @@ -218,12 +218,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:36 GMT - etag: '637332482732170000' + 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://servicebustest32ip2wgoaa.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 a2d942be7f37..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:37Z + 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: Mon, 17 Aug 2020 08:04:36 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-08-17T08:04:38Z2020-08-17T08:04:38Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:33:34Z2020-09-29T08:33:34Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:04:38.12Z2020-08-17T08:04:38.2ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:37 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://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 - request: body: ' @@ -72,22 +72,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-08-17T08:04:38Z2020-08-17T08:04:38Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:33:34Z2020-09-29T08:33:34ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:04:38.7090494Z2020-08-17T08:04:38.7090494Z0001-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: Mon, 17 Aug 2020 08:04:38 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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: @@ -99,37 +99,37 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:39Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-08-17T08:04:38Z2020-08-17T08:04:38ZRuleshttps://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-08-17T08:04:38.7049536Z$Default + i:type="EmptyRuleAction"/>2020-09-29T08:33:34.586152Z$Default headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:38 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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''20Priority = ''low''20truetest_rule_1' headers: Accept: - application/xml Content-Length: - - '506' + - '557' Content-Type: - application/atom+xml User-Agent: @@ -138,36 +138,36 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-08-17T08:04:39Z2020-08-17T08:04:39Zhttps://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-08-17T08:04:39.2089547Ztest_rule_1 + = 'low'20true2020-09-29T08:33:34.9121111Ztest_rule_1 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:38 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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''20Priority = ''middle''20truetest_rule_2' headers: Accept: - application/xml Content-Length: - - '509' + - '560' Content-Type: - application/atom+xml User-Agent: @@ -176,36 +176,36 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-08-17T08:04:39Z2020-08-17T08:04:39Zhttps://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-08-17T08:04:39.5839796Ztest_rule_2 + = 'middle'20true2020-09-29T08:33:35.1621489Ztest_rule_2 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:38 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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''20Priority = ''high''20truetest_rule_3' headers: Accept: - application/xml Content-Length: - - '507' + - '558' Content-Type: - application/atom+xml User-Agent: @@ -214,24 +214,24 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-08-17T08:04:39Z2020-08-17T08:04:39Zhttps://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-08-17T08:04:39.6776982Ztest_rule_3 + = 'high'20true2020-09-29T08:33:35.4902498Ztest_rule_3 headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:39 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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: @@ -243,46 +243,46 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:39Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-08-17T08:04:38Z2020-08-17T08:04:38ZRuleshttps://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-08-17T08:04:38.7049536Z$Defaulthttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-08-17T08:04:39Z2020-08-17T08:04:39Z2020-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-08-17T08:04:39.22055Ztest_rule_1https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-08-17T08:04:39Z2020-08-17T08:04:39Z20true2020-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-08-17T08:04:39.5734238Ztest_rule_2https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-08-17T08:04:39Z2020-08-17T08:04:39Z20true2020-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-08-17T08:04:39.6677679Ztest_rule_3 + = 'high'20true2020-09-29T08:33:35.493445Ztest_rule_3 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:39 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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: @@ -297,14 +297,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:39 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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: @@ -316,39 +316,39 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:39Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-08-17T08:04:38Z2020-08-17T08:04:38ZRuleshttps://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-08-17T08:04:38.7049536Z$Defaulthttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-08-17T08:04:39Z2020-08-17T08:04:39Z2020-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-08-17T08:04:39.22055Ztest_rule_1https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-08-17T08:04:39Z2020-08-17T08:04:39Z20true2020-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-08-17T08:04:39.6677679Ztest_rule_3 + = 'high'20true2020-09-29T08:33:35.493445Ztest_rule_3 headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:39 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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: @@ -363,14 +363,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:39 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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: @@ -385,14 +385,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:39 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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: @@ -404,25 +404,25 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:40Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-08-17T08:04:38Z2020-08-17T08:04:38ZRuleshttps://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-08-17T08:04:38.7049536Z$Default + i:type="EmptyRuleAction"/>2020-09-29T08:33:34.586152Z$Default headers: content-type: application/atom+xml;type=feed;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:39 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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: @@ -437,14 +437,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:39 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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: @@ -459,12 +459,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:40 GMT - etag: '637332482782000000' + 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://servicebustest32ip2wgoaa.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 e0c33602cc08..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:42Z + 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: Mon, 17 Aug 2020 08:04:41 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:04:42Z2020-08-17T08:04:42Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:33:38Z2020-09-29T08:33:38Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:04:42.71Z2020-08-17T08:04:42.79ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:42 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://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: ' @@ -72,34 +72,34 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T08:04:43Z2020-08-17T08:04:43Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:33:38Z2020-09-29T08:33:38ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:04:43.5743103Z2020-08-17T08:04:43.5743103Z0001-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: Mon, 17 Aug 2020 08:04:43 GMT - etag: '637332482827900000' + 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://servicebustest32ip2wgoaa.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''20Priority = ''low''20truerule' headers: Accept: - application/xml Content-Length: - - '499' + - '550' Content-Type: - application/atom+xml User-Agent: @@ -108,24 +108,24 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-08-17T08:04:43Z2020-08-17T08:04:43Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:33:39Z2020-09-29T08:33:39ZPriority - = 'low'202020-08-17T08:04:43.8555806Zrule + = 'low'20true2020-09-29T08:33:39.1644675Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:43 GMT - etag: '637332482827900000' + 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://servicebustest32ip2wgoaa.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: @@ -137,36 +137,36 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-08-17T08:04:43Z2020-08-17T08:04:43Zsb://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-08-17T08:04:43.8608826Zrule + = 'low'20true2020-09-29T08:33:39.1612159Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:43 GMT - etag: '637332482827900000' + 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://servicebustest32ip2wgoaa.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''202020-08-17T08:04:43.860882Ziewdm' + xsi:type="SqlFilter">Priority = ''low''20true2020-09-29T08:33:39.161215Ziewdm' headers: Accept: - application/xml Content-Length: - - '550' + - '601' Content-Type: - application/atom+xml If-Match: @@ -178,19 +178,19 @@ interactions: response: body: string: 404Entity 'servicebustestsbname:Topic:fjrui|eqkovc|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:a054e5a6-aec8-4dcf-9500-53c7083925ac_B14, - SystemTracker:NoSystemTracker, Timestamp:2020-08-17T08:04:44 + 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: Mon, 17 Aug 2020 08:04:45 GMT - etag: '637332482827900000' + 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://servicebustest32ip2wgoaa.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: @@ -205,14 +205,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:45 GMT - etag: '637332482827900000' + 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://servicebustest32ip2wgoaa.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: @@ -227,14 +227,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:45 GMT - etag: '637332482827900000' + 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://servicebustest32ip2wgoaa.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: @@ -249,12 +249,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:46 GMT - etag: '637332482827900000' + 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://servicebustest32ip2wgoaa.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 685e218995f8..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:47Z + 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: Mon, 17 Aug 2020 08:04:47 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:04:48Z2020-08-17T08:04:48Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:33:42Z2020-09-29T08:33:42Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:04:48.34Z2020-08-17T08:04:48.37ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:04:48 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://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: ' @@ -72,34 +72,34 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T08:04:49Z2020-08-17T08:04:49Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:33:43Z2020-09-29T08:33:43ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:04:49.0772892Z2020-08-17T08:04:49.0772892Z0001-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: Mon, 17 Aug 2020 08:04:48 GMT - etag: '637332482883700000' + 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://servicebustest32ip2wgoaa.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''20Priority = ''low''20truerule' headers: Accept: - application/xml Content-Length: - - '499' + - '550' Content-Type: - application/atom+xml User-Agent: @@ -108,24 +108,24 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-08-17T08:04:49Z2020-08-17T08:04:49Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:33:43Z2020-09-29T08:33:43ZPriority - = 'low'202020-08-17T08:04:49.3742351Zrule + = 'low'20true2020-09-29T08:33:43.7547759Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:48 GMT - etag: '637332482883700000' + 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://servicebustest32ip2wgoaa.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: @@ -137,36 +137,36 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-08-17T08:04:49Z2020-08-17T08:04:49Zsb://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-08-17T08:04:49.3770845Zrule + = 'low'20true2020-09-29T08:33:43.7549721Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:48 GMT - etag: '637332482883700000' + 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://servicebustest32ip2wgoaa.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''202020-08-17T08:04:49.377084Zrule' + xsi:type="SqlRuleAction">SET Priority = ''low''20true2020-09-29T08:33:43.754972Zrule' headers: Accept: - application/xml Content-Length: - - '604' + - '655' Content-Type: - application/atom+xml If-Match: @@ -177,23 +177,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-08-17T08:04:49Z2020-08-17T08:04:49Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:33:44Z2020-09-29T08:33:44ZtestcidSET Priority = 'low'202020-08-17T08:04:49.7648705Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2020-09-29T08:33:44.1297755Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:49 GMT - etag: '637332482883700000' + 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://servicebustest32ip2wgoaa.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: @@ -205,23 +205,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-08-17T08:04:49Z2020-08-17T08:04:49Zsb://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-08-17T08:04:49.3770845Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2020-09-29T08:33:43.7549721Zrule headers: content-type: application/atom+xml;type=entry;charset=utf-8 - date: Mon, 17 Aug 2020 08:04:49 GMT - etag: '637332482883700000' + 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://servicebustest32ip2wgoaa.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: @@ -236,14 +236,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:49 GMT - etag: '637332482883700000' + 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://servicebustest32ip2wgoaa.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: @@ -258,14 +258,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:49 GMT - etag: '637332482883700000' + 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://servicebustest32ip2wgoaa.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: @@ -280,12 +280,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:04:50 GMT - etag: '637332482883700000' + 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://servicebustest32ip2wgoaa.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 64158a1eade3..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:32Z + 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: Mon, 17 Aug 2020 17:52:31 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://servicebustesteotyq3ucg7.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-08-17T17:52:33Z2020-08-17T17:52:33Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:33:46Z2020-09-29T08:33:46Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:52:33.06Z2020-08-17T17:52:33.09ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:32 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://servicebustesteotyq3ucg7.servicebus.windows.net/topic_testaddf?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04 - request: body: ' @@ -72,22 +72,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-08-17T17:52:33Z2020-08-17T17:52:33Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:33:47Z2020-09-29T08:33:47ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:33.6531071Z2020-08-17T17:52:33.6531071Z0001-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: Mon, 17 Aug 2020 17:52:32 GMT - etag: '637332835530900000' + 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://servicebustesteotyq3ucg7.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: @@ -99,23 +99,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-08-17T17:52:33Z2020-08-17T17:52:33Zsb://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-08-17T17:52:33.6663278Z2020-08-17T17:52:33.6663278Z2020-08-17T17:52:33.667ZPT1MfalseP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:33 GMT - etag: '637332835530900000' + 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://servicebustesteotyq3ucg7.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: @@ -130,14 +130,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:33 GMT - etag: '637332835530900000' + 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://servicebustesteotyq3ucg7.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: @@ -152,12 +152,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:33 GMT - etag: '637332835530900000' + 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://servicebustesteotyq3ucg7.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 de296a76101d..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:35Z + 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: Mon, 17 Aug 2020 17:52:35 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://servicebustesteotyq3ucg7.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-08-17T17:52:36Z2020-08-17T17:52:36Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:33:49Z2020-09-29T08:33:49Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:52:36.563Z2020-08-17T17:52:36.61ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:36 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://servicebustesteotyq3ucg7.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 - request: body: ' @@ -72,22 +72,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-08-17T17:52:37Z2020-08-17T17:52:37Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:33:50Z2020-09-29T08:33:50ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:37.3459944Z2020-08-17T17:52:37.3459944Z0001-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: Mon, 17 Aug 2020 17:52:37 GMT - etag: '637332835566100000' + 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://servicebustesteotyq3ucg7.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: ' @@ -107,19 +107,19 @@ interactions: response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:2551c13a-cc7f-46e2-a97f-6c885fd51cb4_B7, - SystemTracker:NoSystemTracker, Timestamp:2020-08-17T17:52:37 + 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: Mon, 17 Aug 2020 17:52:38 GMT - etag: '637332835566100000' + 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://servicebustesteotyq3ucg7.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: @@ -134,14 +134,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:38 GMT - etag: '637332835566100000' + 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://servicebustesteotyq3ucg7.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: @@ -156,12 +156,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:39 GMT - etag: '637332835566100000' + 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://servicebustesteotyq3ucg7.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 5b4283aa1a61..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:39Z + 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: Mon, 17 Aug 2020 17:52:39 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://servicebustesteotyq3ucg7.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-08-17T17:52:40Z2020-08-17T17:52:40Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:33:53Z2020-09-29T08:33:53Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:52:40.53Z2020-08-17T17:52:40.597ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:40 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://servicebustesteotyq3ucg7.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04 - request: body: ' @@ -72,22 +72,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2020-08-17T17:52:41Z2020-08-17T17:52:41Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2020-09-29T08:33:54Z2020-09-29T08:33:54ZPT13StruePT11Mtruetrue014trueActive2020-08-17T17:52:41.1036652Z2020-08-17T17:52:41.1036652Z0001-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: Mon, 17 Aug 2020 17:52:40 GMT - etag: '637332835605970000' + 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://servicebustesteotyq3ucg7.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: @@ -99,23 +99,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2020-08-17T17:52:41Z2020-08-17T17:52:41Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2020-09-29T08:33:54Z2020-09-29T08:33:54ZPT13StruePT11Mtruetrue014trueActive2020-08-17T17:52:41.1120482Z2020-08-17T17:52:41.1120482Z2020-08-17T17:52:41.113ZPT13StruePT11Mtruetrue014trueActive2020-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: Mon, 17 Aug 2020 17:52:40 GMT - etag: '637332835605970000' + 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://servicebustesteotyq3ucg7.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: @@ -130,14 +130,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:40 GMT - etag: '637332835605970000' + 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://servicebustesteotyq3ucg7.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: @@ -152,12 +152,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:41 GMT - etag: '637332835605970000' + 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://servicebustesteotyq3ucg7.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 d63d46db53ef..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:43Z + 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: Mon, 17 Aug 2020 17:52:43 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://servicebustesteotyq3ucg7.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-08-17T17:52:43Z2020-08-17T17:52:43Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-09-29T08:33:56Z2020-09-29T08:33:56Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:52:43.803Z2020-08-17T17:52:43.857ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:44 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://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04 - request: body: ' @@ -72,22 +72,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-08-17T17:52:44Z2020-08-17T17:52:44Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:44.406279Z2020-08-17T17:52:44.406279Z0001-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: Mon, 17 Aug 2020 17:52:44 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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: @@ -99,25 +99,25 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:44Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-08-17T17:52:44Z2020-08-17T17:52:44ZSubscriptionshttps://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-08-17T17:52:44.3955235Z2020-08-17T17:52:44.3955235Z2020-08-17T17:52:44.397ZPT1MfalseP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:44 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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: ' @@ -136,22 +136,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-08-17T17:52:44Z2020-08-17T17:52:44Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:44.7689345Z2020-08-17T17:52:44.7689345Z0001-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: Mon, 17 Aug 2020 17:52:44 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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: @@ -163,31 +163,31 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:45Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-08-17T17:52:44Z2020-08-17T17:52:44ZSubscriptionshttps://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-08-17T17:52:44.3955235Z2020-08-17T17:52:44.3955235Z2020-08-17T17:52:44.397ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-08-17T17:52:44Z2020-08-17T17:52:44Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:44.7714581Z2020-08-17T17:52:44.7714581Z2020-08-17T17:52:44.7714581ZPT1MfalseP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:44 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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: @@ -199,23 +199,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-08-17T17:52:44Z2020-08-17T17:52:44Zsb://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-08-17T17:52:44.3955235Z2020-08-17T17:52:44.3955235Z2020-08-17T17:52:44.397ZPT1MfalseP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:45 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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: @@ -230,14 +230,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:45 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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: @@ -249,25 +249,25 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:45Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-08-17T17:52:44Z2020-08-17T17:52:44ZSubscriptionshttps://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-08-17T17:52:44.7714581Z2020-08-17T17:52:44.7714581Z2020-08-17T17:52:44.7714581ZPT1MfalseP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:45 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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: @@ -282,14 +282,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:45 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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: @@ -301,19 +301,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:46Z + 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: Mon, 17 Aug 2020 17:52:46 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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: @@ -328,12 +328,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:46 GMT - etag: '637332835638570000' + 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://servicebustesteotyq3ucg7.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 a17b223a5bc9..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:51Z + 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: Mon, 17 Aug 2020 17:52:51 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://servicebustesteotyq3ucg7.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-08-17T17:52:52Z2020-08-17T17:52:52Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-09-29T08:34:02Z2020-09-29T08:34:02Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:52:52.37Z2020-08-17T17:52:52.423ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:52 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://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04 - request: body: null headers: @@ -65,19 +65,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:53Z + 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: Mon, 17 Aug 2020 17:52:52 GMT - etag: '637332835724230000' + 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://servicebustesteotyq3ucg7.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: ' @@ -96,22 +96,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-08-17T17:52:53Z2020-08-17T17:52:53Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:34:03Z2020-09-29T08:34:03ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:53.0517055Z2020-08-17T17:52:53.0517055Z0001-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: Mon, 17 Aug 2020 17:52:52 GMT - etag: '637332835724230000' + 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://servicebustesteotyq3ucg7.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: ' @@ -130,22 +130,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-08-17T17:52:53Z2020-08-17T17:52:53Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:34:03Z2020-09-29T08:34:03ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:53.3017401Z2020-08-17T17:52:53.3017401Z0001-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: Mon, 17 Aug 2020 17:52:52 GMT - etag: '637332835724230000' + 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://servicebustesteotyq3ucg7.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: @@ -157,31 +157,31 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:53Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-08-17T17:52:53Z2020-08-17T17:52:53ZSubscriptionshttps://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-08-17T17:52:53.0453949Z2020-08-17T17:52:53.0453949Z2020-08-17T17:52:53.047ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.1831337Z2020-09-29T08:34:03.1831337Z2020-09-29T08:34:03.1831337Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-08-17T17:52:53Z2020-08-17T17:52:53Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:34:03Z2020-09-29T08:34:03ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:53.3109419Z2020-08-17T17:52:53.3109419Z2020-08-17T17:52:53.3109419ZPT1MfalseP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:52:52 GMT - etag: '637332835724230000' + 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://servicebustesteotyq3ucg7.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: @@ -196,14 +196,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:52 GMT - etag: '637332835724230000' + 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://servicebustesteotyq3ucg7.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: @@ -218,14 +218,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:53 GMT - etag: '637332835724230000' + 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://servicebustesteotyq3ucg7.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: @@ -237,19 +237,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:54Z + 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: Mon, 17 Aug 2020 17:52:53 GMT - etag: '637332835724230000' + 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://servicebustesteotyq3ucg7.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: @@ -264,12 +264,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:52:54 GMT - etag: '637332835724230000' + 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://servicebustesteotyq3ucg7.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 6fcf5cc48131..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:00Z + 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: Mon, 17 Aug 2020 17:53:00 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://servicebustesteotyq3ucg7.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-08-17T17:53:00Z2020-08-17T17:53:00Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:34:09Z2020-09-29T08:34:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:00.947Z2020-08-17T17:53:00.993ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:53:01 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://servicebustesteotyq3ucg7.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 - request: body: ' @@ -72,27 +72,27 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-08-17T17:53:01Z2020-08-17T17:53:01Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-09-29T08:34:09Z2020-09-29T08:34:09ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:01.4867582Z2020-08-17T17:53:01.4867582Z0001-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: Mon, 17 Aug 2020 17:53:01 GMT - etag: '637332835809930000' + 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://servicebustesteotyq3ucg7.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-08-17T17:53:01.486758Z2020-08-17T17:53:01.486758Z0001-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 @@ -109,24 +109,24 @@ interactions: response: body: string: 404Entity 'servicebustestsbname:Topic:dfjfj|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:4346d029-abb1-4ba2-b1af-d2af347db4cc_B1, - SystemTracker:NoSystemTracker, Timestamp:2020-08-17T17:53:01 + 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: Mon, 17 Aug 2020 17:53:02 GMT - etag: '637332835809930000' + 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://servicebustesteotyq3ucg7.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-08-17T17:53:01.486758Z2020-08-17T17:53:01.486758Z0001-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 @@ -148,19 +148,19 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:68fe0954-2cec-4cba-8ec1-5844e3f55d84_G15, - SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-08-17T17:53:02' + 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: Mon, 17 Aug 2020 17:53:03 GMT - etag: '637332835809930000' + 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://servicebustesteotyq3ucg7.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: @@ -175,14 +175,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:53:04 GMT - etag: '637332835809930000' + 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://servicebustesteotyq3ucg7.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: @@ -197,12 +197,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:53:04 GMT - etag: '637332835809930000' + 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://servicebustesteotyq3ucg7.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 32df0a5e9297..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:06Z + 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: Mon, 17 Aug 2020 17:53:06 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://servicebustesteotyq3ucg7.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T17:53:06Z2020-08-17T17:53:06Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:34:13Z2020-09-29T08:34:13Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:06.777Z2020-08-17T17:53:06.807ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:53:07 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://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: ' @@ -72,27 +72,27 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T17:53:07Z2020-08-17T17:53:07Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:07.3919992Z2020-08-17T17:53:07.3919992Z0001-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: Mon, 17 Aug 2020 17:53:07 GMT - etag: '637332835868070000' + 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://servicebustesteotyq3ucg7.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-08-17T17:53:07.391999Z2020-08-17T17:53:07.391999Z0001-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 @@ -108,22 +108,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T17:53:07Z2020-08-17T17:53:07Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-08-17T17:53:07.7208495Z2020-08-17T17:53:07.7208495Z0001-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: Mon, 17 Aug 2020 17:53:07 GMT - etag: '637332835868070000' + 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://servicebustesteotyq3ucg7.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: @@ -135,34 +135,34 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-08-17T17:53:07Z2020-08-17T17:53:07Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-08-17T17:53:07.4057973Z2020-08-17T17:53:07.7339466Z2020-08-17T17:53:07.407ZPT2MfalseP10675199DT2H48M5.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: Mon, 17 Aug 2020 17:53:07 GMT - etag: '637332835868070000' + 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://servicebustesteotyq3ucg7.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-08-17T17:53:07.405797Z2020-08-17T17:53:07.733946Z2020-08-17T17:53:07.407Z00000PT10MAvailable' + 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: @@ -173,22 +173,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T17:53:08Z2020-08-17T17:53:08Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT12SfalsePT11Mtruetrue014trueActive2020-08-17T17:53:08.0500523Z2020-08-17T17:53:08.0500523Z0001-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: Mon, 17 Aug 2020 17:53:07 GMT - etag: '637332835868070000' + 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://servicebustesteotyq3ucg7.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: @@ -200,23 +200,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-08-17T17:53:07Z2020-08-17T17:53:08Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-09-29T08:34:14Z2020-09-29T08:34:14ZPT12SfalsePT11Mtruetrue014trueActive2020-08-17T17:53:07.4057973Z2020-08-17T17:53:08.0620809Z2020-08-17T17:53:07.407ZPT12SfalsePT11Mtruetrue014trueActive2020-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: Mon, 17 Aug 2020 17:53:07 GMT - etag: '637332835868070000' + 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://servicebustesteotyq3ucg7.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: @@ -231,14 +231,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:53:08 GMT - etag: '637332835868070000' + 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://servicebustesteotyq3ucg7.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: @@ -253,12 +253,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 17:53:08 GMT - etag: '637332835868070000' + 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://servicebustesteotyq3ucg7.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 dd0712ee934b..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:25Z + 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: Mon, 17 Aug 2020 08:05:24 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-08-17T08:05:26Z2020-08-17T08:05:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:34:16Z2020-09-29T08:34:16Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:26.287Z2020-08-17T08:05:26.39ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:05:25 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://servicebustest32ip2wgoaa.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: @@ -65,23 +65,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-08-17T08:05:26Z2020-08-17T08:05:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-09-29T08:34:16Z2020-09-29T08:34:16Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:26.2908399Z2020-08-17T08:05:26.2908399Z0001-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: Mon, 17 Aug 2020 08:05:25 GMT - etag: '637332483263900000' + 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://servicebustest32ip2wgoaa.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: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:26 GMT - etag: '637332483263900000' + 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://servicebustest32ip2wgoaa.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 c4895e5a413d..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:28Z + 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: Mon, 17 Aug 2020 08:05:27 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-08-17T08:05:28Z2020-08-17T08:05:28Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:34:19Z2020-09-29T08:34:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:28.483Z2020-08-17T08:05:28.513ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:05:28 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://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 - request: body: ' @@ -74,19 +74,19 @@ interactions: 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:4c73173c-a0a8-406c-8352-583fdf86e8f4_G0, - SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-08-17T08:05:29 + 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: Mon, 17 Aug 2020 08:05:28 GMT - etag: '637332483285130000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04 - request: body: null headers: @@ -101,12 +101,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:29 GMT - etag: '637332483285130000' + 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://servicebustest32ip2wgoaa.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 0c8a17149963..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:30Z + 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: Mon, 17 Aug 2020 08:05:30 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-08-17T08:05:31Z2020-08-17T08:05:31Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:34:22Z2020-09-29T08:34:22Zservicebustestrm7a5oi5hkPT11M356352falsePT12Mtrue0falsetrueActive2020-08-17T08:05:31.22Z2020-08-17T08:05:31.437ZfalsePT10MtrueAvailabletruetrue + 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: Mon, 17 Aug 2020 08:05:31 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://servicebustest32ip2wgoaa.servicebus.windows.net/iweidk?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04 - request: body: null headers: @@ -65,23 +65,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-08-17T08:05:31Z2020-08-17T08:05:31Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-09-29T08:34:22Z2020-09-29T08:34:22Zservicebustestrm7a5oi5hkPT11M356352falsePT12Mtrue0falsetrueActive2020-08-17T08:05:31.22Z2020-08-17T08:05:31.437Z0001-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: Mon, 17 Aug 2020 08:05:31 GMT - etag: '637332483314370000' + 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://servicebustest32ip2wgoaa.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: @@ -96,12 +96,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:32 GMT - etag: '637332483314370000' + 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://servicebustest32ip2wgoaa.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 8d5384ba5b64..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:33Z + 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: Mon, 17 Aug 2020 08:05:33 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://servicebustest32ip2wgoaa.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: ' @@ -39,21 +39,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:33Z2020-08-17T08:05:33Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:33.81Z2020-08-17T08:05:33.843ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:05:34 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://servicebustest32ip2wgoaa.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: @@ -65,23 +65,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:34Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:33Z2020-08-17T08:05:33Zservicebustest32ip2wgoaaTopicshttps://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-08-17T08:05:33.81Z2020-08-17T08:05:33.843Z0001-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: Mon, 17 Aug 2020 08:05:34 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://servicebustest32ip2wgoaa.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: ' @@ -100,21 +100,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:05:35Z2020-08-17T08:05:35Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:35.58Z2020-08-17T08:05:35.61ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:05:35 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://servicebustest32ip2wgoaa.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: @@ -126,29 +126,29 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:36Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:33Z2020-08-17T08:05:33Zservicebustest32ip2wgoaaTopicshttps://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-08-17T08:05:33.81Z2020-08-17T08:05:33.843Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:05:35Z2020-08-17T08:05:35Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:35.58Z2020-08-17T08:05:35.61Z0001-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: Mon, 17 Aug 2020 08:05:36 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://servicebustest32ip2wgoaa.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: @@ -160,23 +160,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-08-17T08:05:33Z2020-08-17T08:05:33Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:33.81Z2020-08-17T08:05:33.843Z0001-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: Mon, 17 Aug 2020 08:05:36 GMT - etag: '637332483338430000' + 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://servicebustest32ip2wgoaa.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: @@ -191,14 +191,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:36 GMT - etag: '637332483338430000' + 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://servicebustest32ip2wgoaa.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: @@ -210,23 +210,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:37Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:05:35Z2020-08-17T08:05:35Zservicebustest32ip2wgoaaTopicshttps://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-08-17T08:05:35.58Z2020-08-17T08:05:35.61Z0001-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: Mon, 17 Aug 2020 08:05:37 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://servicebustest32ip2wgoaa.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: @@ -238,23 +238,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-08-17T08:05:35Z2020-08-17T08:05:35Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:35.58Z2020-08-17T08:05:35.61Z0001-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: Mon, 17 Aug 2020 08:05:37 GMT - etag: '637332483356100000' + 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://servicebustest32ip2wgoaa.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: @@ -269,14 +269,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:38 GMT - etag: '637332483356100000' + 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://servicebustest32ip2wgoaa.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: @@ -288,15 +288,15 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:39Z + 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: Mon, 17 Aug 2020 08:05:38 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://servicebustest32ip2wgoaa.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 487cb8aaee18..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:42Z + 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: Mon, 17 Aug 2020 08:05:41 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://servicebustest32ip2wgoaa.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: @@ -32,17 +32,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:42Z + 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: Mon, 17 Aug 2020 08:05:42 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://servicebustest32ip2wgoaa.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: ' @@ -61,21 +61,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-08-17T08:05:43Z2020-08-17T08:05:43Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:34:33Z2020-09-29T08:34:33Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:43.1Z2020-08-17T08:05:43.13ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:05:43 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://servicebustest32ip2wgoaa.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: ' @@ -94,21 +94,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-08-17T08:05:44Z2020-08-17T08:05:44Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:34:34Z2020-09-29T08:34:34Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:44.22Z2020-08-17T08:05:44.257ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:05:44 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://servicebustest32ip2wgoaa.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: @@ -120,29 +120,29 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:45Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-08-17T08:05:43Z2020-08-17T08:05:43Zservicebustest32ip2wgoaaTopicshttps://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-08-17T08:05:43.0970339Z2020-08-17T08:05:43.0970339Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:33.473Z2020-09-29T08:34:33.503Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-08-17T08:05:44Z2020-08-17T08:05:44Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:34:34Z2020-09-29T08:34:34Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:44.22Z2020-08-17T08:05:44.257Z0001-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: Mon, 17 Aug 2020 08:05:44 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://servicebustest32ip2wgoaa.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: @@ -157,14 +157,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:45 GMT - etag: '637332483431300000' + 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://servicebustest32ip2wgoaa.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: @@ -179,14 +179,14 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:46 GMT - etag: '637332483442570000' + 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://servicebustest32ip2wgoaa.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: @@ -198,15 +198,15 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:47Z + 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: Mon, 17 Aug 2020 08:05:46 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://servicebustest32ip2wgoaa.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 e6256a91732b..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:52Z + 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: Mon, 17 Aug 2020 08:05:52 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://servicebustest32ip2wgoaa.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: ' @@ -39,27 +39,27 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-08-17T08:05:53Z2020-08-17T08:05:53Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:34:43Z2020-09-29T08:34:43Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:53.04Z2020-08-17T08:05:53.073ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:05:53 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://servicebustest32ip2wgoaa.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 - request: body: ' P10675199DT2H48M5.477539S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:53.040Z2020-08-17T08:05:53.073ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:34:43.410Z2020-09-29T08:34:43.440ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -77,24 +77,24 @@ interactions: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:de83c5b6-6bde-45cc-9f5b-787c55060c35_G3, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, - Timestamp:2020-08-17T08:05:54 + . 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: Mon, 17 Aug 2020 08:05:54 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://servicebustest32ip2wgoaa.servicebus.windows.net/iewdm?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iewdm?api-version=2017-04 - request: body: ' P10675199DT2H48M5.477539S1024falseP25Dtrue0falsefalseActive2020-08-17T08:05:53.040Z2020-08-17T08:05:53.073ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:34:43.410Z2020-09-29T08:34:43.440ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -115,19 +115,19 @@ interactions: Parameter name: DuplicateDetectionHistoryTimeWindow - Actual value was 25.00:00:00. TrackingId:a6fdfe2b-8ae3-403e-8c2a-a4f5ef8aae14_G3, - SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-08-17T08:05:54' + 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: Mon, 17 Aug 2020 08:05:54 GMT - etag: '637332483530730000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/dfjfj?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04 - request: body: null headers: @@ -142,12 +142,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:55 GMT - etag: '637332483530730000' + 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://servicebustest32ip2wgoaa.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 7cc68e6046ad..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 @@ -10,17 +10,17 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:56Z + 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: Mon, 17 Aug 2020 08:05:56 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://servicebustest32ip2wgoaa.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: ' @@ -39,27 +39,27 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:05:56Z2020-08-17T08:05:56Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:34:46Z2020-09-29T08:34:46Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:56.71Z2020-08-17T08:05:56.74ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:05:57 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://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: ' PT2M1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:56.710Z2020-08-17T08:05:56.740ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:34:46.440Z2020-09-29T08:34:46.473ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -75,22 +75,22 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:05:57Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:34:47Zservicebustestrm7a5oi5hkPT2M1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:56.71Z2020-08-17T08:05:56.74ZtrueP10675199DT2H48M5.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: Mon, 17 Aug 2020 08:05:57 GMT - etag: '637332483567400000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: null headers: @@ -102,30 +102,30 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-08-17T08:05:56Z2020-08-17T08:05:57Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:34:46Z2020-09-29T08:34:47Zservicebustestrm7a5oi5hkPT2M1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:56.71Z2020-08-17T08:05:57.29Z0001-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: Mon, 17 Aug 2020 08:05:57 GMT - etag: '637332483572900000' + 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://servicebustest32ip2wgoaa.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-08-17T08:05:56.710Z2020-08-17T08:05:57.290Z0001-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 @@ -141,23 +141,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:05:57Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:34:47Zservicebustestrm7a5oi5hkPT11M3072falsePT12Mtrue0falsetrueActive2020-08-17T08:05:56.71Z2020-08-17T08:05:57.29Z0001-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: Mon, 17 Aug 2020 08:05:57 GMT - etag: '637332483572900000' + 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://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04 + url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04 - request: body: null headers: @@ -169,23 +169,23 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-08-17T08:05:56Z2020-08-17T08:05:57Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:34:46Z2020-09-29T08:34:47Zservicebustestrm7a5oi5hkPT11M3072falsePT12Mtrue0falsetrueActive2020-08-17T08:05:56.71Z2020-08-17T08:05:57.6Z0001-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: Mon, 17 Aug 2020 08:05:57 GMT - etag: '637332483576000000' + 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://servicebustest32ip2wgoaa.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: @@ -200,12 +200,12 @@ interactions: string: '' headers: content-length: '0' - date: Mon, 17 Aug 2020 08:05:58 GMT - etag: '637332483576000000' + 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://servicebustest32ip2wgoaa.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 c39ac80816e1..af1a156c445b 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') @@ -433,7 +433,7 @@ async def test_async_mgmt_queue_get_runtime_properties_basic(self, servicebus_na @CachedServiceBusNamespacePreparer(name_prefix='servicebustest') async def test_async_mgmt_queue_get_runtime_properties_negative(self, servicebus_namespace_connection_string): mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string) - with pytest.raises(msrest.exceptions.ValidationError): + with pytest.raises(TypeError): await mgmt_service.get_queue_runtime_properties(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 4ef9ef6d8ef3..093d209485ac 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 9fbe1b90de8c..800d99d63f94 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 7f0eeeb2575e..bf15b3ac0093 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 @@ -177,13 +177,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 b2dec579094c..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:59Z + 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: - - Mon, 17 Aug 2020 08:05:59 GMT + - Tue, 29 Sep 2020 08:34:49 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue_testaddf?api-version=2017-04queue_testaddf2020-08-17T08:06:00Z2020-08-17T08:06:00Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue_testaddf?api-version=2017-04queue_testaddf2020-09-29T08:34:49Z2020-09-29T08:34:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:00.057Z2020-08-17T08:06:00.093ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:00 GMT + - Tue, 29 Sep 2020 08:34:50 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -84,19 +84,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04queue_testaddf2020-08-17T08:06:00Z2020-08-17T08:06:00Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04queue_testaddf2020-09-29T08:34:49Z2020-09-29T08:34:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:00.057Z2020-08-17T08:06:00.093Z0001-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: - - Mon, 17 Aug 2020 08:06:00 GMT + - Tue, 29 Sep 2020 08:34:50 GMT etag: - - '637332483600930000' + - '637369652898470000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:01 GMT + - Tue, 29 Sep 2020 08:34:50 GMT etag: - - '637332483600930000' + - '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 b2cbb44de857..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:02Z + 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: - - Mon, 17 Aug 2020 08:06:01 GMT + - Tue, 29 Sep 2020 08:34:51 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/rtofdk?api-version=2017-04rtofdk2020-08-17T08:06:02Z2020-08-17T08:06:02Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/rtofdk?api-version=2017-04rtofdk2020-09-29T08:34:52Z2020-09-29T08:34:52Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:02.407Z2020-08-17T08:06:02.807ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:02 GMT + - Tue, 29 Sep 2020 08:34:52 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -93,15 +93,15 @@ interactions: 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:21a03eb1-16bd-4a0c-b58b-802c48187889_G14, - SystemTracker:servicebustestsbname.servicebus.windows.net:rtofdk, Timestamp:2020-08-17T08:06:03 + 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: - - Mon, 17 Aug 2020 08:06:03 GMT + - Tue, 29 Sep 2020 08:34:52 GMT etag: - - '637332483628070000' + - '637369652921430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -133,9 +133,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:03 GMT + - Tue, 29 Sep 2020 08:34:53 GMT etag: - - '637332483628070000' + - '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 f1507d305ee4..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:05Z + 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: - - Mon, 17 Aug 2020 08:06:04 GMT + - Tue, 29 Sep 2020 08:34:53 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-08-17T08:06:05Z2020-08-17T08:06:05Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:34:55Z2020-09-29T08:34:55Zservicebustestrm7a5oi5hkPT13S49152falsetruePT11MtruePT12M14true00trueActive2020-08-17T08:06:05.787Z2020-08-17T08:06:05.95ZtruePT10MtrueAvailabletrue + 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: - - Mon, 17 Aug 2020 08:06:05 GMT + - Tue, 29 Sep 2020 08:34:56 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -84,19 +84,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-08-17T08:06:05Z2020-08-17T08:06:05Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-09-29T08:34:55Z2020-09-29T08:34:55Zservicebustestrm7a5oi5hkPT13S49152falsetruePT11MtruePT12M14true00trueActive2020-08-17T08:06:05.787Z2020-08-17T08:06:05.95Z0001-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: - - Mon, 17 Aug 2020 08:06:06 GMT + - Tue, 29 Sep 2020 08:34:56 GMT etag: - - '637332483659500000' + - '637369652958100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:06 GMT + - Tue, 29 Sep 2020 08:34:57 GMT etag: - - '637332483659500000' + - '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 baeacfbe219b..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:08Z + 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: - - Mon, 17 Aug 2020 08:06:07 GMT + - Tue, 29 Sep 2020 08:34:57 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:08Z2020-08-17T08:06:08Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:34:58Z2020-09-29T08:34:58Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:08.67Z2020-08-17T08:06:08.7ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:08 GMT + - Tue, 29 Sep 2020 08:34:58 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -84,19 +84,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:09Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:08Z2020-08-17T08:06:08Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:06:08.67Z2020-08-17T08:06:08.7Z0001-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: - - Mon, 17 Aug 2020 08:06:09 GMT + - Tue, 29 Sep 2020 08:34:59 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -126,16 +126,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:06:10Z2020-08-17T08:06:10Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:10.34Z2020-08-17T08:06:10.37ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:10 GMT + - Tue, 29 Sep 2020 08:35:00 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -160,25 +160,25 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:11Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:08Z2020-08-17T08:06:08Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:06:08.67Z2020-08-17T08:06:08.7Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:06:10Z2020-08-17T08:06:10Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:10.34Z2020-08-17T08:06:10.37Z0001-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: - - Mon, 17 Aug 2020 08:06:11 GMT + - Tue, 29 Sep 2020 08:35:01 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -208,9 +208,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:11 GMT + - Tue, 29 Sep 2020 08:35:01 GMT etag: - - '637332483687000000' + - '637369652984900000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -233,19 +233,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:12Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:06:10Z2020-08-17T08:06:10Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:06:10.34Z2020-08-17T08:06:10.37Z0001-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: - - Mon, 17 Aug 2020 08:06:12 GMT + - Tue, 29 Sep 2020 08:35:02 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -275,9 +275,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:12 GMT + - Tue, 29 Sep 2020 08:35:02 GMT etag: - - '637332483703700000' + - '637369653003630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -300,13 +300,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:13Z + 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: - - Mon, 17 Aug 2020 08:06:13 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 7a1dfb94d062..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:14Z + 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: - - Mon, 17 Aug 2020 08:06:13 GMT + - Tue, 29 Sep 2020 08:35:03 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:14Z2020-08-17T08:06:14Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:04Z2020-09-29T08:35:05Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:14.827Z2020-08-17T08:06:14.857ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:14 GMT + - Tue, 29 Sep 2020 08:35:04 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -84,19 +84,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:15Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:14Z2020-08-17T08:06:14Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:06:14.827Z2020-08-17T08:06:14.857Z0001-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: - - Mon, 17 Aug 2020 08:06:14 GMT + - Tue, 29 Sep 2020 08:35:05 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -126,9 +126,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:15 GMT + - Tue, 29 Sep 2020 08:35:06 GMT etag: - - '637332483748570000' + - '637369653050170000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -151,13 +151,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:16Z + 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: - - Mon, 17 Aug 2020 08:06:16 GMT + - Tue, 29 Sep 2020 08:35:06 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -183,13 +183,13 @@ interactions: response: body: string: 404No service is hosted at the specified - address. TrackingId:c48c7263-3c90-4fda-a2d3-565df184afc0_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue, - Timestamp:2020-08-17T08:06:17 + 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: - - Mon, 17 Aug 2020 08:06:16 GMT + - Tue, 29 Sep 2020 08:35:07 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -217,13 +217,13 @@ interactions: response: body: string: 404No service is hosted at the specified - address. TrackingId:0e29f312-8bc1-4a5a-b2c2-2f795396b870_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue, - Timestamp:2020-08-17T08:06:18 + 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: - - Mon, 17 Aug 2020 08:06:17 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 30f3ecb077e6..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:18Z + 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: - - Mon, 17 Aug 2020 08:06:17 GMT + - Tue, 29 Sep 2020 08:35:08 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue0?api-version=2017-04queue02020-08-17T08:06:19Z2020-08-17T08:06:19Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04queue02020-09-29T08:35:09Z2020-09-29T08:35:09Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:19.56Z2020-08-17T08:06:19.65ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:19 GMT + - Tue, 29 Sep 2020 08:35:09 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,16 +91,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue1?api-version=2017-04queue12020-08-17T08:06:20Z2020-08-17T08:06:20Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:35:10Z2020-09-29T08:35:10Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:20.663Z2020-08-17T08:06:20.693ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:20 GMT + - Tue, 29 Sep 2020 08:35:10 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -132,16 +132,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue2?api-version=2017-04queue22020-08-17T08:06:21Z2020-08-17T08:06:21Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:35:11Z2020-09-29T08:35:11Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:21.557Z2020-08-17T08:06:21.58ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:21 GMT + - Tue, 29 Sep 2020 08:35:11 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -173,16 +173,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue3?api-version=2017-04queue32020-08-17T08:06:22Z2020-08-17T08:06:22Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:35:12Z2020-09-29T08:35:13Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:22.54Z2020-08-17T08:06:22.59ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:23 GMT + - Tue, 29 Sep 2020 08:35:13 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -214,16 +214,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue4?api-version=2017-04queue42020-08-17T08:06:23Z2020-08-17T08:06:23Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:35:14Z2020-09-29T08:35:14Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:23.707Z2020-08-17T08:06:23.733ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:24 GMT + - Tue, 29 Sep 2020 08:35:14 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -255,16 +255,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue5?api-version=2017-04queue52020-08-17T08:06:24Z2020-08-17T08:06:24Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:35:15Z2020-09-29T08:35:15Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:24.58Z2020-08-17T08:06:24.613ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:25 GMT + - Tue, 29 Sep 2020 08:35:15 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -296,16 +296,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue6?api-version=2017-04queue62020-08-17T08:06:25Z2020-08-17T08:06:25Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:35:16Z2020-09-29T08:35:16Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:25.797Z2020-08-17T08:06:25.82ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:26 GMT + - Tue, 29 Sep 2020 08:35:16 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -337,16 +337,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue7?api-version=2017-04queue72020-08-17T08:06:26Z2020-08-17T08:06:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:35:17Z2020-09-29T08:35:17Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:26.937Z2020-08-17T08:06:26.97ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:27 GMT + - Tue, 29 Sep 2020 08:35:17 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -378,16 +378,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue8?api-version=2017-04queue82020-08-17T08:06:28Z2020-08-17T08:06:28Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:35:18Z2020-09-29T08:35:18Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:28.14Z2020-08-17T08:06:28.17ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:28 GMT + - Tue, 29 Sep 2020 08:35:18 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -419,16 +419,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/queue9?api-version=2017-04queue92020-08-17T08:06:29Z2020-08-17T08:06:29Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:35:19Z2020-09-29T08:35:19Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:29.337Z2020-08-17T08:06:29.363ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:29 GMT + - Tue, 29 Sep 2020 08:35:19 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -460,9 +460,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:30 GMT + - Tue, 29 Sep 2020 08:35:20 GMT etag: - - '637332483796500000' + - '637369653096300000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -485,67 +485,67 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:30Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue1?api-version=2017-04queue12020-08-17T08:06:20Z2020-08-17T08:06:20Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:06:20.663Z2020-08-17T08:06:20.693Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:10.693Z2020-09-29T08:35:10.777Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue2?api-version=2017-04queue22020-08-17T08:06:21Z2020-08-17T08:06:21Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:35:11Z2020-09-29T08:35:11Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:21.5695693Z2020-08-17T08:06:21.5695693Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:11.58Z2020-09-29T08:35:11.78Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue3?api-version=2017-04queue32020-08-17T08:06:22Z2020-08-17T08:06:22Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:35:12Z2020-09-29T08:35:13Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:22.54Z2020-08-17T08:06:22.59Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:12.94Z2020-09-29T08:35:13.023Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue4?api-version=2017-04queue42020-08-17T08:06:23Z2020-08-17T08:06:23Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:35:14Z2020-09-29T08:35:14Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:23.707Z2020-08-17T08:06:23.733Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:14.3Z2020-09-29T08:35:14.327Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue5?api-version=2017-04queue52020-08-17T08:06:24Z2020-08-17T08:06:24Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:35:15Z2020-09-29T08:35:15Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:24.58Z2020-08-17T08:06:24.613Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:15.423Z2020-09-29T08:35:15.453Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue6?api-version=2017-04queue62020-08-17T08:06:25Z2020-08-17T08:06:25Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:35:16Z2020-09-29T08:35:16Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:25.797Z2020-08-17T08:06:25.82Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:16.343Z2020-09-29T08:35:16.52Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue7?api-version=2017-04queue72020-08-17T08:06:26Z2020-08-17T08:06:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:35:17Z2020-09-29T08:35:17Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:26.937Z2020-08-17T08:06:26.97Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:17.41Z2020-09-29T08:35:17.44Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue8?api-version=2017-04queue82020-08-17T08:06:28Z2020-08-17T08:06:28Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:35:18Z2020-09-29T08:35:18Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:28.14Z2020-08-17T08:06:28.17Z0001-01-01T00:00:00ZtruePT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:18.51Z2020-09-29T08:35:18.54Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/queue9?api-version=2017-04queue92020-08-17T08:06:29Z2020-08-17T08:06:29Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:35:19Z2020-09-29T08:35:19Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:29.337Z2020-08-17T08:06:29.363Z0001-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: - - Mon, 17 Aug 2020 08:06:30 GMT + - Tue, 29 Sep 2020 08:35:21 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -575,9 +575,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:31 GMT + - Tue, 29 Sep 2020 08:35:21 GMT etag: - - '637332483806930000' + - '637369653107770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -607,9 +607,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:32 GMT + - Tue, 29 Sep 2020 08:35:22 GMT etag: - - '637332483815800000' + - '637369653117800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -639,9 +639,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:32 GMT + - Tue, 29 Sep 2020 08:35:23 GMT etag: - - '637332483825900000' + - '637369653130230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -671,9 +671,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:33 GMT + - Tue, 29 Sep 2020 08:35:24 GMT etag: - - '637332483837330000' + - '637369653143270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -703,9 +703,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:33 GMT + - Tue, 29 Sep 2020 08:35:24 GMT etag: - - '637332483846130000' + - '637369653154530000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -735,9 +735,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:34 GMT + - Tue, 29 Sep 2020 08:35:25 GMT etag: - - '637332483858200000' + - '637369653165200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -767,9 +767,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:35 GMT + - Tue, 29 Sep 2020 08:35:25 GMT etag: - - '637332483869700000' + - '637369653174400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -799,9 +799,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:36 GMT + - Tue, 29 Sep 2020 08:35:26 GMT etag: - - '637332483881700000' + - '637369653185400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -831,9 +831,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:36 GMT + - Tue, 29 Sep 2020 08:35:30 GMT etag: - - '637332483893630000' + - '637369653194970000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -856,13 +856,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:37Z + 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: - - Mon, 17 Aug 2020 08:06:37 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 31b5bacf8987..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:42Z + 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: - - Mon, 17 Aug 2020 08:06:42 GMT + - Tue, 29 Sep 2020 08:35:35 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -43,13 +43,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:42Z + 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: - - Mon, 17 Aug 2020 08:06:42 GMT + - Tue, 29 Sep 2020 08:35:35 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -79,16 +79,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:43Z2020-08-17T08:06:43Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:36Z2020-09-29T08:35:36Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:43.1Z2020-08-17T08:06:43.143ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:43 GMT + - Tue, 29 Sep 2020 08:35:37 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -113,19 +113,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:44Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:43Z2020-08-17T08:06:43Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:06:43.1Z2020-08-17T08:06:43.143Z0001-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: - - Mon, 17 Aug 2020 08:06:43 GMT + - Tue, 29 Sep 2020 08:35:37 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -155,9 +155,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:44 GMT + - Tue, 29 Sep 2020 08:35:38 GMT etag: - - '637332484031430000' + - '637369653369230000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -180,13 +180,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:45Z + 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: - - Mon, 17 Aug 2020 08:06:45 GMT + - Tue, 29 Sep 2020 08:35:38 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -209,13 +209,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:45Z + 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: - - Mon, 17 Aug 2020 08:06:45 GMT + - Tue, 29 Sep 2020 08:35:39 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -245,16 +245,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:46Z2020-08-17T08:06:46Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:40Z2020-09-29T08:35:40Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:46.537Z2020-08-17T08:06:46.607ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:46 GMT + - Tue, 29 Sep 2020 08:35:40 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -279,19 +279,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:47Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:46Z2020-08-17T08:06:46Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:06:46.537Z2020-08-17T08:06:46.607Z0001-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: - - Mon, 17 Aug 2020 08:06:47 GMT + - Tue, 29 Sep 2020 08:35:41 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -321,9 +321,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:48 GMT + - Tue, 29 Sep 2020 08:35:41 GMT etag: - - '637332484066070000' + - '637369653403000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -346,13 +346,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:48Z + 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: - - Mon, 17 Aug 2020 08:06:48 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 af7b2b38f6f4..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 @@ -14,14 +14,14 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: 401claim is empty or token is invalid. TrackingId:6ee5c0e4-0535-485b-9533-5d2742bc468c_G0, + string: 401claim is empty or token is invalid. TrackingId:17c0761f-1e57-43fd-8af1-21037ae5adaa_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-08-17T08:06:54 + Timestamp:2020-09-29T08:35:48 headers: content-type: - application/xml; charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:53 GMT + - Tue, 29 Sep 2020 08:35:47 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -46,14 +46,14 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: 401claim is empty or token is invalid. TrackingId:3cc53c8a-15ed-4da0-8343-e07c2c9641ab_G2, + string: 401claim is empty or token is invalid. TrackingId:6cdbb217-7d47-4c32-af19-d1ae1bec94f0_G13, SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues, - Timestamp:2020-08-17T08:06:54 + Timestamp:2020-09-29T08:35:49 headers: content-type: - application/xml; charset=utf-8 date: - - Mon, 17 Aug 2020 08:06:54 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 82b07e181801..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:55Z + 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: - - Mon, 17 Aug 2020 08:06:55 GMT + - Tue, 29 Sep 2020 08:35:49 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -43,13 +43,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:56Z + 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: - - Mon, 17 Aug 2020 08:06:55 GMT + - Tue, 29 Sep 2020 08:35:50 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -79,16 +79,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:06:56Z2020-08-17T08:06:56Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:51Z2020-09-29T08:35:51Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:56.593Z2020-08-17T08:06:56.68ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:06:56 GMT + - Tue, 29 Sep 2020 08:35:51 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -113,19 +113,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:57Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:06:56Z2020-08-17T08:06:56Zservicebustest32ip2wgoaaQueueshttps://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-08-17T08:06:56.593Z2020-08-17T08:06:56.68Z0001-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: - - Mon, 17 Aug 2020 08:06:57 GMT + - Tue, 29 Sep 2020 08:35:52 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -155,9 +155,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:06:57 GMT + - Tue, 29 Sep 2020 08:35:52 GMT etag: - - '637332484166800000' + - '637369653511270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -180,13 +180,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:58Z + 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: - - Mon, 17 Aug 2020 08:06:58 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 4ad37f2e9d60..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:59Z + 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: - - Mon, 17 Aug 2020 08:06:59 GMT + - Tue, 29 Sep 2020 08:35:53 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-08-17T08:06:59Z2020-08-17T08:06:59Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:35:55Z2020-09-29T08:35:55Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:59.683Z2020-08-17T08:06:59.717ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:07:00 GMT + - Tue, 29 Sep 2020 08:35:54 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT1M1024falsetrueP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:06:59.683Z2020-08-17T08:06:59.717ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:35:55.053Z2020-09-29T08:35:55.150ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -96,15 +96,15 @@ interactions: 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:540ca39e-816a-42a9-95e9-2941b11261e8_G10, SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, - Timestamp:2020-08-17T08:07:00 + . 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: - - Mon, 17 Aug 2020 08:07:00 GMT + - Tue, 29 Sep 2020 08:35:54 GMT etag: - - '637332484197170000' + - '637369653551500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -119,7 +119,7 @@ interactions: PT1M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:06:59.683Z2020-08-17T08:06:59.717ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:35:55.053Z2020-09-29T08:35:55.150ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -141,13 +141,13 @@ interactions: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:6880ea69-57a1-48ba-9798-93eae8eae2a0_G10, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, - Timestamp:2020-08-17T08:07:00 + . 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: - - Mon, 17 Aug 2020 08:07:00 GMT + - Tue, 29 Sep 2020 08:35:55 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -162,7 +162,7 @@ interactions: P25D1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:06:59.683Z2020-08-17T08:06:59.717ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:35:55.053Z2020-09-29T08:35:55.150ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -188,15 +188,15 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:599cd376-fba2-40a0-8e2c-fe3e2de60637_G10, - SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-08-17T08:07:01' + 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: - - Mon, 17 Aug 2020 08:07:01 GMT + - Tue, 29 Sep 2020 08:35:55 GMT etag: - - '637332484197170000' + - '637369653551500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -228,9 +228,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:01 GMT + - Tue, 29 Sep 2020 08:35:56 GMT etag: - - '637332484197170000' + - '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 5ddb855d3219..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04 response: body: - string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:02Z + 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: - - Mon, 17 Aug 2020 08:07:02 GMT + - Tue, 29 Sep 2020 08:35:58 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:07:03Z2020-08-17T08:07:03Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:35:59Z2020-09-29T08:35:59Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:07:03.073Z2020-08-17T08:07:03.12ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:07:03 GMT + - Tue, 29 Sep 2020 08:35:59 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:07:03.073Z2020-08-17T08:07:03.120ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' + />Active2020-09-29T08:35:59.070Z2020-09-29T08:35:59.103ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse' headers: Accept: - application/xml @@ -94,18 +94,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:07:03Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:35:59Zservicebustestrm7a5oi5hkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:07:03.073Z2020-08-17T08:07:03.12ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:07:03 GMT + - Tue, 29 Sep 2020 08:35:59 GMT etag: - - '637332484231200000' + - '637369653591030000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -130,19 +130,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-08-17T08:07:03Z2020-08-17T08:07:03Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:35:59Z2020-09-29T08:35:59Zservicebustestrm7a5oi5hkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-08-17T08:07:03.073Z2020-08-17T08:07:03.653Z0001-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: - - Mon, 17 Aug 2020 08:07:03 GMT + - Tue, 29 Sep 2020 08:35:59 GMT etag: - - '637332484236530000' + - '637369653596670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -158,7 +158,7 @@ interactions: PT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-08-17T08:07:03.073Z2020-08-17T08:07:03.653Z0001-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 @@ -178,19 +178,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:07:03Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:36:00Zservicebustestrm7a5oi5hkPT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-08-17T08:07:03.073Z2020-08-17T08:07:03.653Z0001-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: - - Mon, 17 Aug 2020 08:07:03 GMT + - Tue, 29 Sep 2020 08:35:59 GMT etag: - - '637332484236530000' + - '637369653596670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -215,19 +215,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-08-17T08:07:03Z2020-08-17T08:07:03Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:35:59Z2020-09-29T08:36:00Zservicebustestrm7a5oi5hkPT13S3072falsefalsePT11MtruePT12M14true00trueActive2020-08-17T08:07:03.073Z2020-08-17T08:07:03.97Z0001-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: - - Mon, 17 Aug 2020 08:07:03 GMT + - Tue, 29 Sep 2020 08:36:00 GMT etag: - - '637332484239700000' + - '637369653600070000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -259,9 +259,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:04 GMT + - Tue, 29 Sep 2020 08:36:00 GMT etag: - - '637332484239700000' + - '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 142968d1c6c8..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:05Z + 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: - - Mon, 17 Aug 2020 08:07:05 GMT + - Tue, 29 Sep 2020 08:36:00 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-08-17T08:07:05Z2020-08-17T08:07:05Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:36:02Z2020-09-29T08:36:02Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:07:05.88Z2020-08-17T08:07:05.91ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:07:06 GMT + - Tue, 29 Sep 2020 08:36:01 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-08-17T08:07:06Z2020-08-17T08:07:06Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:36:02Z2020-09-29T08:36:02ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:07:06.7306538Z2020-08-17T08:07:06.7306538Z0001-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: - - Mon, 17 Aug 2020 08:07:06 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -125,7 +125,7 @@ interactions: xsi:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-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,7 +134,7 @@ interactions: Connection: - keep-alive Content-Length: - - '1765' + - '1816' Content-Type: - application/atom+xml User-Agent: @@ -143,9 +143,9 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-08-17T08:07:07Z2020-08-17T08:07:07Zhttps://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-08-17T08:07:07.3400234Ztest_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: - - Mon, 17 Aug 2020 08:07:07 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -187,9 +187,9 @@ interactions: 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://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12020-08-17T08:07:07Z2020-08-17T08:07:07Zsb://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-08-17T08:07:07.346407Ztest_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: - - Mon, 17 Aug 2020 08:07:07 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -222,7 +222,7 @@ interactions: Priority = @param120@param1str1str1truetest_rule_2' headers: Accept: @@ -232,7 +232,7 @@ interactions: Connection: - keep-alive Content-Length: - - '690' + - '741' Content-Type: - application/atom+xml User-Agent: @@ -241,21 +241,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-08-17T08:07:07Z2020-08-17T08:07:07Zhttps://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-08-17T08:07:07.6369359Ztest_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: - - Mon, 17 Aug 2020 08:07:07 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -280,21 +280,21 @@ interactions: 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://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22020-08-17T08:07:07Z2020-08-17T08:07:07Zsb://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-08-17T08:07:07.6419583Ztest_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: - - Mon, 17 Aug 2020 08:07:07 GMT + - Tue, 29 Sep 2020 08:36:02 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -328,19 +328,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-08-17T08:07:07Z2020-08-17T08:07:07Zhttps://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-08-17T08:07:07.8244391Ztest_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: - - Mon, 17 Aug 2020 08:07:07 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -365,19 +365,19 @@ interactions: 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://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32020-08-17T08:07:07Z2020-08-17T08:07:07Zsb://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-08-17T08:07:07.8138253Ztest_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: - - Mon, 17 Aug 2020 08:07:07 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -409,9 +409,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:07 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -441,9 +441,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:08 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -473,9 +473,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:08 GMT + - Tue, 29 Sep 2020 08:36:03 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -505,9 +505,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:08 GMT + - Tue, 29 Sep 2020 08:36:04 GMT etag: - - '637332484259100000' + - '637369653621200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -537,9 +537,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:08 GMT + - Tue, 29 Sep 2020 08:36:04 GMT etag: - - '637332484259100000' + - '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 7b4d583bf11d..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:10Z + 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: - - Mon, 17 Aug 2020 08:07:09 GMT + - Tue, 29 Sep 2020 08:36:06 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-08-17T08:07:10Z2020-08-17T08:07:10Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:36:06Z2020-09-29T08:36:06Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:07:10.893Z2020-08-17T08:07:10.93ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:07:10 GMT + - Tue, 29 Sep 2020 08:36:07 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-08-17T08:07:11Z2020-08-17T08:07:11Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:36:07Z2020-09-29T08:36:07ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:07:11.641507Z2020-08-17T08:07:11.641507Z0001-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: - - Mon, 17 Aug 2020 08:07:11 GMT + - Tue, 29 Sep 2020 08:36:07 GMT etag: - - '637332484309300000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -117,7 +117,7 @@ interactions: Priority = ''low''20Priority = ''low''20truerule' headers: Accept: @@ -127,7 +127,7 @@ interactions: Connection: - keep-alive Content-Length: - - '499' + - '550' Content-Type: - application/atom+xml User-Agent: @@ -136,20 +136,20 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-08-17T08:07:11Z2020-08-17T08:07:11Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-09-29T08:36:07Z2020-09-29T08:36:07ZPriority - = 'low'202020-08-17T08:07:11.938343Zrule + = 'low'20true2020-09-29T08:36:07.8587155Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:11 GMT + - Tue, 29 Sep 2020 08:36:07 GMT etag: - - '637332484309300000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -164,7 +164,7 @@ interactions: Priority = ''low''20Priority = ''low''20truerule' headers: Accept: @@ -174,7 +174,7 @@ interactions: Connection: - keep-alive Content-Length: - - '499' + - '550' Content-Type: - application/atom+xml User-Agent: @@ -184,15 +184,15 @@ interactions: response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo|rule' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:e6d88467-51c8-49b8-adb3-2c7bdc3b26f8_B11, - SystemTracker:NoSystemTracker, Timestamp:2020-08-17T08:07:12 + 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: - - Mon, 17 Aug 2020 08:07:12 GMT + - Tue, 29 Sep 2020 08:36:08 GMT etag: - - '637332484309300000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -224,9 +224,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:12 GMT + - Tue, 29 Sep 2020 08:36:08 GMT etag: - - '637332484309300000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -256,9 +256,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:12 GMT + - Tue, 29 Sep 2020 08:36:08 GMT etag: - - '637332484309300000' + - '637369653668630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -288,9 +288,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:13 GMT + - Tue, 29 Sep 2020 08:36:09 GMT etag: - - '637332484309300000' + - '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 d2404f164fd7..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:15Z + 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: - - Mon, 17 Aug 2020 08:07:14 GMT + - Tue, 29 Sep 2020 08:36:10 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-08-17T08:07:15Z2020-08-17T08:07:15Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:36:10Z2020-09-29T08:36:10Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:07:15.607Z2020-08-17T08:07:15.64ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:07:15 GMT + - Tue, 29 Sep 2020 08:36:11 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-08-17T08:07:16Z2020-08-17T08:07:16Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:36:11Z2020-09-29T08:36:11ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:07:16.2422848Z2020-08-17T08:07:16.2422848Z0001-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: - - Mon, 17 Aug 2020 08:07:16 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -127,21 +127,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:16Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-08-17T08:07:16Z2020-08-17T08:07:16ZRuleshttps://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-08-17T08:07:16.2440316Z$Default + i:type="EmptyRuleAction"/>2020-09-29T08:36:11.3692415Z$Default headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:16 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -156,7 +156,7 @@ interactions: Priority = ''low''20Priority = ''low''20truetest_rule_1' headers: Accept: @@ -166,7 +166,7 @@ interactions: Connection: - keep-alive Content-Length: - - '506' + - '557' Content-Type: - application/atom+xml User-Agent: @@ -175,20 +175,20 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-08-17T08:07:17Z2020-08-17T08:07:17Zhttps://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-08-17T08:07:17.1798057Ztest_rule_1 + = 'low'20true2020-09-29T08:36:11.6474939Ztest_rule_1 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:16 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,7 +203,7 @@ interactions: Priority = ''middle''20Priority = ''middle''20truetest_rule_2' headers: Accept: @@ -213,7 +213,7 @@ interactions: Connection: - keep-alive Content-Length: - - '509' + - '560' Content-Type: - application/atom+xml User-Agent: @@ -222,20 +222,20 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-08-17T08:07:17Z2020-08-17T08:07:17Zhttps://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-08-17T08:07:17.3048342Ztest_rule_2 + = 'middle'20true2020-09-29T08:36:11.7568947Ztest_rule_2 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:17 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -250,7 +250,7 @@ interactions: Priority = ''high''20Priority = ''high''20truetest_rule_3' headers: Accept: @@ -260,7 +260,7 @@ interactions: Connection: - keep-alive Content-Length: - - '507' + - '558' Content-Type: - application/atom+xml User-Agent: @@ -269,20 +269,20 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-08-17T08:07:17Z2020-08-17T08:07:17Zhttps://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-08-17T08:07:17.4923372Ztest_rule_3 + = 'high'20true2020-09-29T08:36:11.9443601Ztest_rule_3 headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:17 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -307,42 +307,42 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:17Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-08-17T08:07:16Z2020-08-17T08:07:16ZRuleshttps://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-08-17T08:07:16.2440316Z$Defaulthttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-08-17T08:07:17Z2020-08-17T08:07:17Z2020-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-08-17T08:07:17.1822982Ztest_rule_1https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-08-17T08:07:17Z2020-08-17T08:07:17Z20true2020-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-08-17T08:07:17.3073575Ztest_rule_2https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-08-17T08:07:17Z2020-08-17T08:07:17Z20true2020-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-08-17T08:07:17.4948299Ztest_rule_3 + = 'high'20true2020-09-29T08:36:11.9474045Ztest_rule_3 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:17 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -374,9 +374,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:17 GMT + - Tue, 29 Sep 2020 08:36:11 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -399,35 +399,35 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:18Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-08-17T08:07:16Z2020-08-17T08:07:16ZRuleshttps://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-08-17T08:07:16.2440316Z$Defaulthttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-08-17T08:07:17Z2020-08-17T08:07:17Z2020-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-08-17T08:07:17.1822982Ztest_rule_1https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-08-17T08:07:17Z2020-08-17T08:07:17Z20true2020-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-08-17T08:07:17.4948299Ztest_rule_3 + = 'high'20true2020-09-29T08:36:11.9474045Ztest_rule_3 headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:17 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -459,9 +459,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:17 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -491,9 +491,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:18 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -516,21 +516,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04 response: body: - string: Ruleshttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:18Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-08-17T08:07:16Z2020-08-17T08:07:16ZRuleshttps://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-08-17T08:07:16.2440316Z$Default + i:type="EmptyRuleAction"/>2020-09-29T08:36:11.3692415Z$Default headers: content-type: - application/atom+xml;type=feed;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:18 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -562,9 +562,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:18 GMT + - Tue, 29 Sep 2020 08:36:12 GMT etag: - - '637332484356400000' + - '637369653708270000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -594,9 +594,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:19 GMT + - Tue, 29 Sep 2020 08:36:13 GMT etag: - - '637332484356400000' + - '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 2e8534db48f8..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:20Z + 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: - - Mon, 17 Aug 2020 08:07:19 GMT + - Tue, 29 Sep 2020 08:36:13 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:07:21Z2020-08-17T08:07:21Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:36:15Z2020-09-29T08:36:15Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:07:21.03Z2020-08-17T08:07:21.06ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:07:20 GMT + - Tue, 29 Sep 2020 08:36:14 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T08:07:21Z2020-08-17T08:07:21Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:15Z2020-09-29T08:36:15ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:07:21.7773996Z2020-08-17T08:07:21.7773996Z0001-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: - - Mon, 17 Aug 2020 08:07:21 GMT + - Tue, 29 Sep 2020 08:36:15 GMT etag: - - '637332484410600000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -117,7 +117,7 @@ interactions: Priority = ''low''20Priority = ''low''20truerule' headers: Accept: @@ -127,7 +127,7 @@ interactions: Connection: - keep-alive Content-Length: - - '499' + - '550' Content-Type: - application/atom+xml User-Agent: @@ -136,20 +136,20 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-08-17T08:07:22Z2020-08-17T08:07:22Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:36:16Z2020-09-29T08:36:16ZPriority - = 'low'202020-08-17T08:07:22.1055211Zrule + = 'low'20true2020-09-29T08:36:16.2320398Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:21 GMT + - Tue, 29 Sep 2020 08:36:15 GMT etag: - - '637332484410600000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -174,20 +174,20 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-08-17T08:07:22Z2020-08-17T08:07:22Zsb://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-08-17T08:07:22.101271Zrule + = 'low'20true2020-09-29T08:36:16.2233001Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:21 GMT + - Tue, 29 Sep 2020 08:36:15 GMT etag: - - '637332484410600000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -202,8 +202,8 @@ interactions: Priority = ''low''202020-08-17T08:07:22.101271Ziewdm' + xsi:type="SqlFilter">Priority = ''low''20true2020-09-29T08:36:16.2233Ziewdm' headers: Accept: - application/xml @@ -212,7 +212,7 @@ interactions: Connection: - keep-alive Content-Length: - - '550' + - '599' Content-Type: - application/atom+xml If-Match: @@ -224,15 +224,15 @@ interactions: response: body: string: 404Entity 'servicebustestsbname:Topic:fjrui|eqkovc|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:ee8d2324-b900-4a80-bffc-5e7a6a8a1f94_B10, - SystemTracker:NoSystemTracker, Timestamp:2020-08-17T08:07:22 + 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: - - Mon, 17 Aug 2020 08:07:22 GMT + - Tue, 29 Sep 2020 08:36:16 GMT etag: - - '637332484410600000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -264,9 +264,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:22 GMT + - Tue, 29 Sep 2020 08:36:17 GMT etag: - - '637332484410600000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -296,9 +296,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:23 GMT + - Tue, 29 Sep 2020 08:36:17 GMT etag: - - '637332484410600000' + - '637369653750500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -328,9 +328,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:24 GMT + - Tue, 29 Sep 2020 08:36:17 GMT etag: - - '637332484410600000' + - '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 143f84c51a1c..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:07:25Z + 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: - - Mon, 17 Aug 2020 08:07:25 GMT + - Tue, 29 Sep 2020 08:36:18 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:07:26Z2020-08-17T08:07:26Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:36:20Z2020-09-29T08:36:20Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:07:26.443Z2020-08-17T08:07:26.47ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:07:26 GMT + - Tue, 29 Sep 2020 08:36:19 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T08:07:27Z2020-08-17T08:07:27Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:20Z2020-09-29T08:36:20ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T08:07:27.3010686Z2020-08-17T08:07:27.3010686Z0001-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: - - Mon, 17 Aug 2020 08:07:26 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637332484464700000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -117,7 +117,7 @@ interactions: Priority = ''low''20Priority = ''low''20truerule' headers: Accept: @@ -127,7 +127,7 @@ interactions: Connection: - keep-alive Content-Length: - - '499' + - '550' Content-Type: - application/atom+xml User-Agent: @@ -136,20 +136,20 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-08-17T08:07:27Z2020-08-17T08:07:27Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:36:21Z2020-09-29T08:36:21ZPriority - = 'low'202020-08-17T08:07:27.5041859Zrule + = 'low'20true2020-09-29T08:36:21.0830137Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:26 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637332484464700000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -174,20 +174,20 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-08-17T08:07:27Z2020-08-17T08:07:27Zsb://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-08-17T08:07:27.4989085Zrule + = 'low'20true2020-09-29T08:36:21.0877053Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:26 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637332484464700000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,7 +203,7 @@ interactions: testcidSET Priority = ''low''202020-08-17T08:07:27.498908Zrule' + xsi:type="SqlRuleAction">SET Priority = ''low''20true2020-09-29T08:36:21.087705Zrule' headers: Accept: - application/xml @@ -212,7 +212,7 @@ interactions: Connection: - keep-alive Content-Length: - - '604' + - '655' Content-Type: - application/atom+xml If-Match: @@ -223,19 +223,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-08-17T08:07:27Z2020-08-17T08:07:27Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-09-29T08:36:21Z2020-09-29T08:36:21ZtestcidSET Priority = 'low'202020-08-17T08:07:27.613572Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2020-09-29T08:36:21.3954996Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:26 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637332484464700000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -260,19 +260,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-08-17T08:07:27Z2020-08-17T08:07:27Zsb://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-08-17T08:07:27.4989085Zrule + i:type="SqlRuleAction">SET Priority = 'low'20true2020-09-29T08:36:21.0877053Zrule headers: content-type: - application/atom+xml;type=entry;charset=utf-8 date: - - Mon, 17 Aug 2020 08:07:27 GMT + - Tue, 29 Sep 2020 08:36:20 GMT etag: - - '637332484464700000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -304,9 +304,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:27 GMT + - Tue, 29 Sep 2020 08:36:21 GMT etag: - - '637332484464700000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -336,9 +336,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:27 GMT + - Tue, 29 Sep 2020 08:36:21 GMT etag: - - '637332484464700000' + - '637369653802100000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -368,9 +368,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:07:27 GMT + - Tue, 29 Sep 2020 08:36:22 GMT etag: - - '637332484464700000' + - '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 7a239601cc98..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:09Z + 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: - - Mon, 17 Aug 2020 17:53:09 GMT + - Tue, 29 Sep 2020 08:36:23 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-08-17T17:53:10Z2020-08-17T17:53:10Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:36:24Z2020-09-29T08:36:24Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:10.643Z2020-08-17T17:53:10.677ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:10 GMT + - Tue, 29 Sep 2020 08:36:24 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-08-17T17:53:11Z2020-08-17T17:53:11Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:36:25Z2020-09-29T08:36:25ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:11.2567629Z2020-08-17T17:53:11.2567629Z0001-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: - - Mon, 17 Aug 2020 17:53:11 GMT + - Tue, 29 Sep 2020 08:36:25 GMT etag: - - '637332835906770000' + - '637369653846670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -127,19 +127,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-08-17T17:53:11Z2020-08-17T17:53:11Zsb://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-08-17T17:53:11.2621645Z2020-08-17T17:53:11.2621645Z2020-08-17T17:53:11.263ZPT1MfalseP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:11 GMT + - Tue, 29 Sep 2020 08:36:26 GMT etag: - - '637332835906770000' + - '637369653846670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -171,9 +171,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:11 GMT + - Tue, 29 Sep 2020 08:36:26 GMT etag: - - '637332835906770000' + - '637369653846670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,9 +203,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:12 GMT + - Tue, 29 Sep 2020 08:36:26 GMT etag: - - '637332835906770000' + - '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 9a6d84792420..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:13Z + 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: - - Mon, 17 Aug 2020 17:53:12 GMT + - Tue, 29 Sep 2020 08:36:27 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-08-17T17:53:14Z2020-08-17T17:53:14Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:36:28Z2020-09-29T08:36:28Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:14.007Z2020-08-17T17:53:14.127ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:14 GMT + - Tue, 29 Sep 2020 08:36:28 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-08-17T17:53:14Z2020-08-17T17:53:14Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:36:29Z2020-09-29T08:36:29ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:14.8309408Z2020-08-17T17:53:14.8309408Z0001-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: - - Mon, 17 Aug 2020 17:53:14 GMT + - Tue, 29 Sep 2020 08:36:28 GMT etag: - - '637332835941270000' + - '637369653885430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -135,15 +135,15 @@ interactions: response: body: string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo' - already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:ddf0b787-7910-4850-8a14-071b333bec65_B12, - SystemTracker:NoSystemTracker, Timestamp:2020-08-17T17:53:15 + 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: - - Mon, 17 Aug 2020 17:53:15 GMT + - Tue, 29 Sep 2020 08:36:29 GMT etag: - - '637332835941270000' + - '637369653885430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -175,9 +175,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:16 GMT + - Tue, 29 Sep 2020 08:36:30 GMT etag: - - '637332835941270000' + - '637369653885430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -207,9 +207,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:16 GMT + - Tue, 29 Sep 2020 08:36:30 GMT etag: - - '637332835941270000' + - '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 bfc0706f4d9f..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:18Z + 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: - - Mon, 17 Aug 2020 17:53:18 GMT + - Tue, 29 Sep 2020 08:36:32 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-08-17T17:53:18Z2020-08-17T17:53:18Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:36:33Z2020-09-29T08:36:33Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:18.76Z2020-08-17T17:53:18.853ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:19 GMT + - Tue, 29 Sep 2020 08:36:33 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2020-08-17T17:53:19Z2020-08-17T17:53:19Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2020-09-29T08:36:33Z2020-09-29T08:36:33ZPT13StruePT11Mtruetrue014trueActive2020-08-17T17:53:19.4799703Z2020-08-17T17:53:19.4799703Z0001-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: - - Mon, 17 Aug 2020 17:53:19 GMT + - Tue, 29 Sep 2020 08:36:33 GMT etag: - - '637332835988530000' + - '637369653930400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -127,19 +127,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2020-08-17T17:53:19Z2020-08-17T17:53:19Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2020-09-29T08:36:33Z2020-09-29T08:36:33ZPT13StruePT11Mtruetrue014trueActive2020-08-17T17:53:19.4784974Z2020-08-17T17:53:19.4784974Z2020-08-17T17:53:19.48ZPT13StruePT11Mtruetrue014trueActive2020-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: - - Mon, 17 Aug 2020 17:53:19 GMT + - Tue, 29 Sep 2020 08:36:33 GMT etag: - - '637332835988530000' + - '637369653930400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -171,9 +171,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:19 GMT + - Tue, 29 Sep 2020 08:36:33 GMT etag: - - '637332835988530000' + - '637369653930400000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,9 +203,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:20 GMT + - Tue, 29 Sep 2020 08:36:34 GMT etag: - - '637332835988530000' + - '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 1a312c8aa628..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:21Z + 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: - - Mon, 17 Aug 2020 17:53:21 GMT + - Tue, 29 Sep 2020 08:36:34 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-08-17T17:53:22Z2020-08-17T17:53:22Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-09-29T08:36:35Z2020-09-29T08:36:35Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:22.57Z2020-08-17T17:53:22.603ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:22 GMT + - Tue, 29 Sep 2020 08:36:35 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-08-17T17:53:23Z2020-08-17T17:53:23Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:23.433373Z2020-08-17T17:53:23.433373Z0001-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: - - Mon, 17 Aug 2020 17:53:22 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637332836026030000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -127,21 +127,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:23Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-08-17T17:53:23Z2020-08-17T17:53:23ZSubscriptionshttps://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-08-17T17:53:23.424172Z2020-08-17T17:53:23.424172Z2020-08-17T17:53:23.424172ZPT1MfalseP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:23 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637332836026030000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -173,18 +173,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-08-17T17:53:23Z2020-08-17T17:53:23Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:23.8239722Z2020-08-17T17:53:23.8239722Z0001-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: - - Mon, 17 Aug 2020 17:53:23 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637332836026030000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -209,27 +209,27 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:24Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-08-17T17:53:23Z2020-08-17T17:53:23ZSubscriptionshttps://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-08-17T17:53:23.424172Z2020-08-17T17:53:23.424172Z2020-08-17T17:53:23.424172ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-08-17T17:53:23Z2020-08-17T17:53:23Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:23.814798Z2020-08-17T17:53:23.814798Z2020-08-17T17:53:23.814798ZPT1MfalseP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:23 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637332836026030000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -254,19 +254,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-08-17T17:53:23Z2020-08-17T17:53:23Zsb://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-08-17T17:53:23.424172Z2020-08-17T17:53:23.424172Z2020-08-17T17:53:23.424172ZPT1MfalseP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:23 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637332836026030000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -298,9 +298,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:23 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637332836026030000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -323,21 +323,21 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:24Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-08-17T17:53:23Z2020-08-17T17:53:23ZSubscriptionshttps://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-08-17T17:53:23.814798Z2020-08-17T17:53:23.814798Z2020-08-17T17:53:23.814798ZPT1MfalseP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:23 GMT + - Tue, 29 Sep 2020 08:36:36 GMT etag: - - '637332836026030000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -369,9 +369,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:24 GMT + - Tue, 29 Sep 2020 08:36:37 GMT etag: - - '637332836026030000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -394,15 +394,15 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:24Z + 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: - - Mon, 17 Aug 2020 17:53:24 GMT + - Tue, 29 Sep 2020 08:36:37 GMT etag: - - '637332836026030000' + - '637369653958830000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -434,9 +434,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:24 GMT + - Tue, 29 Sep 2020 08:36:37 GMT etag: - - '637332836026030000' + - '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 aa195f4d92b2..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:30Z + 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: - - Mon, 17 Aug 2020 17:53:29 GMT + - Tue, 29 Sep 2020 08:36:42 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-08-17T17:53:30Z2020-08-17T17:53:30Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-09-29T08:36:43Z2020-09-29T08:36:43Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:30.487Z2020-08-17T17:53:30.53ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:30 GMT + - Tue, 29 Sep 2020 08:36:43 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -84,15 +84,15 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:31Z + 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: - - Mon, 17 Aug 2020 17:53:30 GMT + - Tue, 29 Sep 2020 08:36:43 GMT etag: - - '637332836105300000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -124,18 +124,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-08-17T17:53:31Z2020-08-17T17:53:31Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:36:43Z2020-09-29T08:36:43ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:31.4130604Z2020-08-17T17:53:31.4130604Z0001-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: - - Mon, 17 Aug 2020 17:53:31 GMT + - Tue, 29 Sep 2020 08:36:43 GMT etag: - - '637332836105300000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -167,18 +167,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-08-17T17:53:31Z2020-08-17T17:53:31Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:36:44Z2020-09-29T08:36:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:31.7255848Z2020-08-17T17:53:31.7255848Z0001-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: - - Mon, 17 Aug 2020 17:53:31 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637332836105300000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -203,27 +203,27 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:32Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-08-17T17:53:31Z2020-08-17T17:53:31ZSubscriptionshttps://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-08-17T17:53:31.4079484Z2020-08-17T17:53:31.4079484Z2020-08-17T17:53:31.4079484ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:43.8908707Z2020-09-29T08:36:43.8908707Z2020-09-29T08:36:43.8908707Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-08-17T17:53:31Z2020-08-17T17:53:31Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:36:44Z2020-09-29T08:36:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:31.7204491Z2020-08-17T17:53:31.7204491Z2020-08-17T17:53:31.7204491ZPT1MfalseP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:31 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637332836105300000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -255,9 +255,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:32 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637332836105300000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -287,9 +287,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:32 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637332836105300000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -312,15 +312,15 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04 response: body: - string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:32Z + 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: - - Mon, 17 Aug 2020 17:53:32 GMT + - Tue, 29 Sep 2020 08:36:44 GMT etag: - - '637332836105300000' + - '637369654030770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -352,9 +352,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:32 GMT + - Tue, 29 Sep 2020 08:36:45 GMT etag: - - '637332836105300000' + - '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 cab99a7ca950..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:38Z + 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: - - Mon, 17 Aug 2020 17:53:38 GMT + - Tue, 29 Sep 2020 08:36:49 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-08-17T17:53:39Z2020-08-17T17:53:39Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:36:49Z2020-09-29T08:36:49Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:39.26Z2020-08-17T17:53:39.297ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:39 GMT + - Tue, 29 Sep 2020 08:36:50 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-08-17T17:53:40Z2020-08-17T17:53:40Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-09-29T08:36:50Z2020-09-29T08:36:50ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:40.0795374Z2020-08-17T17:53:40.0795374Z0001-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: - - Mon, 17 Aug 2020 17:53:40 GMT + - Tue, 29 Sep 2020 08:36:50 GMT etag: - - '637332836192970000' + - '637369654098800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -116,7 +116,7 @@ interactions: body: ' PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-08-17T17:53:40.079537Z2020-08-17T17:53:40.079537Z0001-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 @@ -137,15 +137,15 @@ interactions: response: body: string: 404Entity 'servicebustestsbname:Topic:dfjfj|iewdm' - was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:665084b5-e929-4a6a-ad9c-a69d45f10cbe_B5, - SystemTracker:NoSystemTracker, Timestamp:2020-08-17T17:53:40 + 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: - - Mon, 17 Aug 2020 17:53:41 GMT + - Tue, 29 Sep 2020 08:36:52 GMT etag: - - '637332836192970000' + - '637369654098800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -159,7 +159,7 @@ interactions: body: ' P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-08-17T17:53:40.079537Z2020-08-17T17:53:40.079537Z0001-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 @@ -185,15 +185,15 @@ interactions: Parameter name: LockDuration - Actual value was 25.00:00:00. TrackingId:00091d6a-fae2-441c-b275-ab2a4abf6fb4_G4, - SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-08-17T17:53:41' + 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: - - Mon, 17 Aug 2020 17:53:42 GMT + - Tue, 29 Sep 2020 08:36:53 GMT etag: - - '637332836192970000' + - '637369654098800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -225,9 +225,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:42 GMT + - Tue, 29 Sep 2020 08:36:53 GMT etag: - - '637332836192970000' + - '637369654098800000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -257,9 +257,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:43 GMT + - Tue, 29 Sep 2020 08:36:54 GMT etag: - - '637332836192970000' + - '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 41d6d4b457f8..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:44Z + 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: - - Mon, 17 Aug 2020 17:53:44 GMT + - Tue, 29 Sep 2020 08:36:54 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T17:53:45Z2020-08-17T17:53:45Zservicebustesteotyq3ucg7https://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:36:55Z2020-09-29T08:36:55Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:45.313Z2020-08-17T17:53:45.363ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:45 GMT + - Tue, 29 Sep 2020 08:36:55 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -91,18 +91,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T17:53:46Z2020-08-17T17:53:46Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:56Z2020-09-29T08:36:56ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:46.1465135Z2020-08-17T17:53:46.1465135Z0001-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: - - Mon, 17 Aug 2020 17:53:45 GMT + - Tue, 29 Sep 2020 08:36:56 GMT etag: - - '637332836253630000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -116,7 +116,7 @@ interactions: body: ' PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-08-17T17:53:46.146513Z2020-08-17T17:53:46.146513Z0001-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 @@ -136,18 +136,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T17:53:46Z2020-08-17T17:53:46Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:57Z2020-09-29T08:36:57ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-08-17T17:53:46.3808273Z2020-08-17T17:53:46.3808273Z0001-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: - - Mon, 17 Aug 2020 17:53:46 GMT + - Tue, 29 Sep 2020 08:36:56 GMT etag: - - '637332836253630000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -172,19 +172,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-08-17T17:53:46Z2020-08-17T17:53:46Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-09-29T08:36:56Z2020-09-29T08:36:57ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-08-17T17:53:46.1397396Z2020-08-17T17:53:46.4053647Z2020-08-17T17:53:46.14ZPT2MfalseP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 17:53:46 GMT + - Tue, 29 Sep 2020 08:36:57 GMT etag: - - '637332836253630000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -199,7 +199,7 @@ interactions: PT12SfalsePT11Mtruetrue014trueActive2020-08-17T17:53:46.139739Z2020-08-17T17:53:46.405364Z2020-08-17T17:53:46.140Z00000PT10MAvailable' + type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2020-09-29T08:36:56.631982Z2020-09-29T08:36:57.069482Z2020-09-29T08:36:56.633Z00000PT10MAvailable' headers: Accept: - application/xml @@ -219,18 +219,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04 response: body: - string: https://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-08-17T17:53:46Z2020-08-17T17:53:46Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-09-29T08:36:57Z2020-09-29T08:36:57ZPT12SfalsePT11Mtruetrue014trueActive2020-08-17T17:53:46.6152085Z2020-08-17T17:53:46.6152085Z0001-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: - - Mon, 17 Aug 2020 17:53:46 GMT + - Tue, 29 Sep 2020 08:36:57 GMT etag: - - '637332836253630000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -255,19 +255,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04 response: body: - string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-08-17T17:53:46Z2020-08-17T17:53:46Zsb://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2020-09-29T08:36:56Z2020-09-29T08:36:57ZPT12SfalsePT11Mtruetrue014trueActive2020-08-17T17:53:46.1397396Z2020-08-17T17:53:46.6241188Z2020-08-17T17:53:46.14ZPT12SfalsePT11Mtruetrue014trueActive2020-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: - - Mon, 17 Aug 2020 17:53:46 GMT + - Tue, 29 Sep 2020 08:36:57 GMT etag: - - '637332836253630000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -299,9 +299,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:46 GMT + - Tue, 29 Sep 2020 08:36:57 GMT etag: - - '637332836253630000' + - '637369654155770000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -331,9 +331,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 17:53:47 GMT + - Tue, 29 Sep 2020 08:36:58 GMT etag: - - '637332836253630000' + - '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 58802331a966..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:05Z + 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: - - Mon, 17 Aug 2020 08:08:04 GMT + - Tue, 29 Sep 2020 08:36:58 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-08-17T08:08:05Z2020-08-17T08:08:05Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:37:00Z2020-09-29T08:37:00Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:05.75Z2020-08-17T08:08:05.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: - - Mon, 17 Aug 2020 08:08:06 GMT + - Tue, 29 Sep 2020 08:37:00 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -84,19 +84,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-08-17T08:08:05Z2020-08-17T08:08:05Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-09-29T08:37:00Z2020-09-29T08:37:00Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:05.75Z2020-08-17T08:08:05.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: - - Mon, 17 Aug 2020 08:08:06 GMT + - Tue, 29 Sep 2020 08:37:01 GMT etag: - - '637332484858100000' + - '637369654204200000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:07 GMT + - Tue, 29 Sep 2020 08:37:01 GMT etag: - - '637332484858100000' + - '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 cbf1a354adeb..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:08Z + 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: - - Mon, 17 Aug 2020 08:08:07 GMT + - Tue, 29 Sep 2020 08:37:01 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-08-17T08:08:08Z2020-08-17T08:08:08Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:37:02Z2020-09-29T08:37:03Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:08.773Z2020-08-17T08:08:08.803ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:08:08 GMT + - Tue, 29 Sep 2020 08:37:02 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -93,15 +93,15 @@ interactions: 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:85b71f5e-1618-4c3d-8555-2a2091555677_G13, - SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-08-17T08:08:09 + 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: - - Mon, 17 Aug 2020 08:08:08 GMT + - Tue, 29 Sep 2020 08:37:02 GMT etag: - - '637332484888030000' + - '637369654230000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -133,9 +133,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:10 GMT + - Tue, 29 Sep 2020 08:37:03 GMT etag: - - '637332484888030000' + - '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 529f1ece11e3..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:11Z + 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: - - Mon, 17 Aug 2020 08:08:10 GMT + - Tue, 29 Sep 2020 08:37:05 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-08-17T08:08:11Z2020-08-17T08:08:11Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?api-version=2017-04iweidk2020-09-29T08:37:05Z2020-09-29T08:37:05Zservicebustestrm7a5oi5hkPT11M356352falsePT12Mtrue0falsetrueActive2020-08-17T08:08:11.573Z2020-08-17T08:08:11.683ZfalsePT10MtrueAvailabletruetrue + 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: - - Mon, 17 Aug 2020 08:08:11 GMT + - Tue, 29 Sep 2020 08:37:06 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -84,19 +84,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-08-17T08:08:11Z2020-08-17T08:08:11Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2020-09-29T08:37:05Z2020-09-29T08:37:05Zservicebustestrm7a5oi5hkPT11M356352falsePT12Mtrue0falsetrueActive2020-08-17T08:08:11.573Z2020-08-17T08:08:11.683Z0001-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: - - Mon, 17 Aug 2020 08:08:12 GMT + - Tue, 29 Sep 2020 08:37:06 GMT etag: - - '637332484916830000' + - '637369654258500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -128,9 +128,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:12 GMT + - Tue, 29 Sep 2020 08:37:07 GMT etag: - - '637332484916830000' + - '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 bccbc1236da5..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:14Z + 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: - - Mon, 17 Aug 2020 08:08:13 GMT + - Tue, 29 Sep 2020 08:37:07 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:08:14Z2020-08-17T08:08:14Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:14.77Z2020-08-17T08:08:14.807ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:08:15 GMT + - Tue, 29 Sep 2020 08:37:08 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -84,19 +84,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:15Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:08:14Z2020-08-17T08:08:14Zservicebustest32ip2wgoaaTopicshttps://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-08-17T08:08:14.77Z2020-08-17T08:08:14.807Z0001-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: - - Mon, 17 Aug 2020 08:08:15 GMT + - Tue, 29 Sep 2020 08:37:09 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -126,16 +126,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:08:16Z2020-08-17T08:08:16Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:16.643Z2020-08-17T08:08:16.673ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:08:17 GMT + - Tue, 29 Sep 2020 08:37:10 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -160,25 +160,25 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:17Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:08:14Z2020-08-17T08:08:14Zservicebustest32ip2wgoaaTopicshttps://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-08-17T08:08:14.77Z2020-08-17T08:08:14.807Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:08:16Z2020-08-17T08:08:16Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:16.643Z2020-08-17T08:08:16.673Z0001-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: - - Mon, 17 Aug 2020 08:08:17 GMT + - Tue, 29 Sep 2020 08:37:10 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -201,19 +201,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-08-17T08:08:14Z2020-08-17T08:08:14Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:14.77Z2020-08-17T08:08:14.807Z0001-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: - - Mon, 17 Aug 2020 08:08:17 GMT + - Tue, 29 Sep 2020 08:37:10 GMT etag: - - '637332484948070000' + - '637369654283630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -245,9 +245,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:18 GMT + - Tue, 29 Sep 2020 08:37:11 GMT etag: - - '637332484948070000' + - '637369654283630000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -270,19 +270,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:19Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-08-17T08:08:16Z2020-08-17T08:08:16Zservicebustest32ip2wgoaaTopicshttps://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-08-17T08:08:16.643Z2020-08-17T08:08:16.673Z0001-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: - - Mon, 17 Aug 2020 08:08:18 GMT + - Tue, 29 Sep 2020 08:37:11 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -305,19 +305,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-08-17T08:08:16Z2020-08-17T08:08:16Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:16.643Z2020-08-17T08:08:16.673Z0001-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: - - Mon, 17 Aug 2020 08:08:19 GMT + - Tue, 29 Sep 2020 08:37:12 GMT etag: - - '637332484966730000' + - '637369654299500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -349,9 +349,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:19 GMT + - Tue, 29 Sep 2020 08:37:12 GMT etag: - - '637332484966730000' + - '637369654299500000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -374,13 +374,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:20Z + 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: - - Mon, 17 Aug 2020 08:08:20 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 9a3095d006ac..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:23Z + 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: - - Mon, 17 Aug 2020 08:08:23 GMT + - Tue, 29 Sep 2020 08:37:17 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -43,13 +43,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:23Z + 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: - - Mon, 17 Aug 2020 08:08:23 GMT + - Tue, 29 Sep 2020 08:37:18 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -79,16 +79,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-08-17T08:08:24Z2020-08-17T08:08:24Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:37:18Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:24.653Z2020-08-17T08:08:24.683ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:08:24 GMT + - Tue, 29 Sep 2020 08:37:19 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -120,16 +120,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-08-17T08:08:25Z2020-08-17T08:08:25Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:37:19Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:25.87Z2020-08-17T08:08:25.91ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:08:26 GMT + - Tue, 29 Sep 2020 08:37:20 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -154,25 +154,25 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:26Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-08-17T08:08:24Z2020-08-17T08:08:24Zservicebustest32ip2wgoaaTopicshttps://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-08-17T08:08:24.653Z2020-08-17T08:08:24.683Z0001-01-01T00:00:00ZtrueP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:18.957Z2020-09-29T08:37:19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-08-17T08:08:25Z2020-08-17T08:08:25Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:37:19Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:25.87Z2020-08-17T08:08:25.91Z0001-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: - - Mon, 17 Aug 2020 08:08:26 GMT + - Tue, 29 Sep 2020 08:37:20 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -202,9 +202,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:27 GMT + - Tue, 29 Sep 2020 08:37:21 GMT etag: - - '637332485046830000' + - '637369654390000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -234,9 +234,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:27 GMT + - Tue, 29 Sep 2020 08:37:21 GMT etag: - - '637332485059100000' + - '637369654398430000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -259,13 +259,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:28Z + 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: - - Mon, 17 Aug 2020 08:08:28 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 7fd715793c61..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:34Z + 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: - - Mon, 17 Aug 2020 08:08:34 GMT + - Tue, 29 Sep 2020 08:37:28 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-08-17T08:08:34Z2020-08-17T08:08:34Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:37:28Z2020-09-29T08:37:28Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:34.657Z2020-08-17T08:08:34.727ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:08:35 GMT + - Tue, 29 Sep 2020 08:37:29 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: P10675199DT2H48M5.477539S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:34.657Z2020-08-17T08:08:34.727ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -96,13 +96,13 @@ interactions: body: string: 404SubCode=40400. Not Found. The Operation doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions. - . TrackingId:7dc8fcea-5aaa-417e-8a3f-557e1809cf4b_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm, - Timestamp:2020-08-17T08:08:35 + . 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: - - Mon, 17 Aug 2020 08:08:35 GMT + - Tue, 29 Sep 2020 08:37:29 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -117,7 +117,7 @@ interactions: P10675199DT2H48M5.477539S1024falseP25Dtrue0falsefalseActive2020-08-17T08:08:34.657Z2020-08-17T08:08:34.727ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -142,15 +142,15 @@ interactions: Parameter name: DuplicateDetectionHistoryTimeWindow - Actual value was 25.00:00:00. TrackingId:52fb362a-1d80-412e-a5b7-31215d12e2f9_G6, - SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-08-17T08:08:36' + 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: - - Mon, 17 Aug 2020 08:08:36 GMT + - Tue, 29 Sep 2020 08:37:30 GMT etag: - - '637332485147270000' + - '637369654489670000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -182,9 +182,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:36 GMT + - Tue, 29 Sep 2020 08:37:30 GMT etag: - - '637332485147270000' + - '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 91516278cb42..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 @@ -14,13 +14,13 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04 response: body: - string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:37Z + 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: - - Mon, 17 Aug 2020 08:08:36 GMT + - Tue, 29 Sep 2020 08:37:31 GMT server: - Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -50,16 +50,16 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:08:37Z2020-08-17T08:08:37Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:37:32Z2020-09-29T08:37:32Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:37.61Z2020-08-17T08:08:37.677ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:08:37 GMT + - Tue, 29 Sep 2020 08:37:32 GMT server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -74,7 +74,7 @@ interactions: PT2M1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:37.610Z2020-08-17T08:08:37.677ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' + />Active2020-09-29T08:37:32.027Z2020-09-29T08:37:32.093ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse' headers: Accept: - application/xml @@ -94,18 +94,18 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:08:38Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:37:32Zservicebustestrm7a5oi5hkPT2M1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:37.61Z2020-08-17T08:08:37.677ZtrueP10675199DT2H48M5.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: - - Mon, 17 Aug 2020 08:08:38 GMT + - Tue, 29 Sep 2020 08:37:32 GMT etag: - - '637332485176770000' + - '637369654520930000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -130,19 +130,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-08-17T08:08:37Z2020-08-17T08:08:38Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:37:32Z2020-09-29T08:37:32Zservicebustestrm7a5oi5hkPT2M1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:37.61Z2020-08-17T08:08:38.3Z0001-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: - - Mon, 17 Aug 2020 08:08:38 GMT + - Tue, 29 Sep 2020 08:37:32 GMT etag: - - '637332485183000000' + - '637369654526000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -158,7 +158,7 @@ interactions: PT11M3072falsePT12Mtrue0falsetrueActive2020-08-17T08:08:37.610Z2020-08-17T08:08:38.300Z0001-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 @@ -178,19 +178,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-08-17T08:08:38Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-09-29T08:37:33Zservicebustestrm7a5oi5hkPT11M3072falsePT12Mtrue0falsetrueActive2020-08-17T08:08:37.61Z2020-08-17T08:08:38.3Z0001-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: - - Mon, 17 Aug 2020 08:08:38 GMT + - Tue, 29 Sep 2020 08:37:32 GMT etag: - - '637332485183000000' + - '637369654526000000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -215,19 +215,19 @@ interactions: uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04 response: body: - string: https://servicebustest32ip2wgoaa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-08-17T08:08:37Z2020-08-17T08:08:38Zservicebustest32ip2wgoaahttps://servicebustestrm7a5oi5hk.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2020-09-29T08:37:32Z2020-09-29T08:37:33Zservicebustestrm7a5oi5hkPT11M3072falsePT12Mtrue0falsetrueActive2020-08-17T08:08:37.61Z2020-08-17T08:08:38.46Z0001-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: - - Mon, 17 Aug 2020 08:08:38 GMT + - Tue, 29 Sep 2020 08:37:32 GMT etag: - - '637332485184600000' + - '637369654530130000' server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -259,9 +259,9 @@ interactions: content-length: - '0' date: - - Mon, 17 Aug 2020 08:08:39 GMT + - Tue, 29 Sep 2020 08:37:33 GMT etag: - - '637332485184600000' + - '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 a584f343af49..505a94aaaaec 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') @@ -456,7 +456,7 @@ def test_mgmt_queue_get_runtime_properties_basic(self, servicebus_namespace_conn @CachedServiceBusNamespacePreparer(name_prefix='servicebustest') def test_mgmt_queue_get_runtime_properties_negative(self, servicebus_namespace_connection_string): mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string) - with pytest.raises(msrest.exceptions.ValidationError): + with pytest.raises(TypeError): mgmt_service.get_queue_runtime_properties(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 20b0baf75e0c..40b4a4cd82d0 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 db0a734a5161..19161a14e8e8 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 acda86871b86..efc7876ea5c4 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 @@ -177,13 +177,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