diff --git a/sdk/servicebus/azure-servicebus/CHANGELOG.md b/sdk/servicebus/azure-servicebus/CHANGELOG.md
index 89dfcc2c599b..028cf2049901 100644
--- a/sdk/servicebus/azure-servicebus/CHANGELOG.md
+++ b/sdk/servicebus/azure-servicebus/CHANGELOG.md
@@ -1,17 +1,27 @@
# Release History
-## 7.3.5 (Unreleased)
+## 7.4.0 (Unreleased)
### Features Added
-### Breaking Changes
+- Added support to create and update queues and topics of large message size to `ServiceBusAdministrationClient`. This feature is only available for Service Bus of Premium Tier.
+ - Methods`create_queue`, `create_topic`, `update_queue`, `update_topic` on `ServiceBusAdministrationClient` now take a new keyword argument `max_message_size_in_kilobytes`.
+ - `QueueProperties` and `TopicProperties` now have a new instance variable `max_message_size_in_kilobytes`.
+- The constructor of`ServiceBusAdministrationClient` as well as `ServiceBusAdministrationClient.from_connection_string` now take keyword argument `api_version` to configure the Service Bus API version. Supported service versions are "2021-05" and "2017-04".
+- Added new enum class `azure.servicebus.management.ApiVersion` to represent the supported Service Bus API versions.
### Bugs Fixed
- Fixed bug that `ServiceBusReceiver` can not connect to sessionful entity with session id being empty string.
- Fixed bug that `ServiceBusMessage.partition_key` can not parse empty string properly.
-### Other Changes
+## 7.4.0b1 (2021-10-06)
+
+### Features Added
+
+- Added support to create and update queues and topics of large message size to `ServiceBusAdministrationClient`. This feature is only available for Service Bus of Premium Tier.
+ - Methods`create_queue`, `create_topic`, `update_queue`, `update_topic` on `ServiceBusAdministrationClient` now take a new keyword argument `max_message_size_in_kilobytes`.
+ - `QueueProperties` and `TopicProperties` now have a new instance variable `max_message_size_in_kilobytes`.
## 7.3.4 (2021-10-06)
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/_version.py b/sdk/servicebus/azure-servicebus/azure/servicebus/_version.py
index a57ad9e4f954..810dff03b579 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/_version.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/_version.py
@@ -3,4 +3,4 @@
# Licensed under the MIT License.
# ------------------------------------
-VERSION = "7.3.5"
+VERSION = "7.4.0"
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_management_client_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_management_client_async.py
index da2c08ec1e5a..a30b92cf89c7 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
@@ -59,6 +59,7 @@
ServiceBusManagementClient as ServiceBusManagementClientImpl,
)
from ...management import _constants as constants
+from ...management._api_version import DEFAULT_VERSION
from ._shared_key_policy_async import AsyncServiceBusSharedKeyCredentialPolicy
from ...management._models import (
QueueRuntimeProperties,
@@ -96,6 +97,9 @@ class ServiceBusAdministrationClient: # pylint:disable=too-many-public-methods
:param str fully_qualified_namespace: The fully qualified host name for the Service Bus namespace.
:param credential: To authenticate to manage the entities of the ServiceBus namespace.
:type credential: AsyncTokenCredential
+ :keyword str api_version: The Service Bus API version to use for requests. Default value is the most
+ recent service version that is compatible with the current SDK. Setting to an older version may result
+ in reduced feature compatibility.
"""
def __init__(
@@ -106,6 +110,7 @@ def __init__(
) -> None:
self.fully_qualified_namespace = fully_qualified_namespace
+ self._api_version = kwargs.pop("api_version", DEFAULT_VERSION)
self._credential = credential
self._endpoint = "https://" + fully_qualified_namespace
self._config = ServiceBusManagementClientConfiguration(self._endpoint, **kwargs)
@@ -160,7 +165,7 @@ async def _get_entity_element(self, entity_name, enrich=False, **kwargs):
await self._impl.entity.get(
entity_name,
enrich=enrich,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
**kwargs
),
)
@@ -179,7 +184,7 @@ async def _get_subscription_element(
topic_name,
subscription_name,
enrich=enrich,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
**kwargs
),
)
@@ -201,7 +206,7 @@ async def _get_rule_element(
subscription_name,
rule_name,
enrich=False,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
**kwargs
),
)
@@ -238,6 +243,9 @@ def from_connection_string(
:param str conn_str: The connection string of the Service Bus Namespace.
:rtype: ~azure.servicebus.management.aio.ServiceBusAdministrationClient
+ :keyword str api_version: The Service Bus API version to use for requests. Default value is the most
+ recent service version that is compatible with the current SDK. Setting to an older version may result
+ in reduced feature compatibility.
"""
(
endpoint,
@@ -293,58 +301,63 @@ async def create_queue(self, queue_name: str, **kwargs) -> QueueProperties:
:param queue_name: Name of the queue.
:type queue_name: str
:keyword authorization_rules: Authorization rules for resource.
- :type authorization_rules: list[~azure.servicebus.management.AuthorizationRule]
+ :paramtype authorization_rules: list[~azure.servicebus.management.AuthorizationRule]
:keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the queue is
automatically deleted. The minimum duration is 5 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type auto_delete_on_idle: Union[~datetime.timedelta, str]
+ :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str]
:keyword dead_lettering_on_message_expiration: A value that indicates whether this queue has dead
letter support when a message expires.
- :type dead_lettering_on_message_expiration: bool
+ :paramtype dead_lettering_on_message_expiration: bool
:keyword default_message_time_to_live: ISO 8601 default message timespan to live value. This is
the duration after which the message expires, starting from when the message is sent to Service
Bus. This is the default value used when TimeToLive is not set on a message itself.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type default_message_time_to_live: Union[~datetime.timedelta, str]
+ :paramtype default_message_time_to_live: Union[~datetime.timedelta, str]
:keyword duplicate_detection_history_time_window: ISO 8601 timeSpan structure that defines the
duration of the duplicate detection history. The default value is 10 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type duplicate_detection_history_time_window: Union[~datetime.timedelta, str]
+ :paramtype duplicate_detection_history_time_window: Union[~datetime.timedelta, str]
:keyword enable_batched_operations: Value that indicates whether server-side batched operations
are enabled.
- :type enable_batched_operations: bool
+ :paramtype enable_batched_operations: bool
:keyword enable_express: A value that indicates whether Express Entities are enabled. An express
queue holds a message in memory temporarily before writing it to persistent storage.
- :type enable_express: bool
+ :paramtype enable_express: bool
:keyword enable_partitioning: A value that indicates whether the queue is to be partitioned
across multiple message brokers.
- :type enable_partitioning: bool
+ :paramtype enable_partitioning: bool
:keyword lock_duration: ISO 8601 timespan duration of a peek-lock; that is, the amount of time
that the message is locked for other receivers. The maximum value for LockDuration is 5
minutes; the default value is 1 minute.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type lock_duration: Union[~datetime.timedelta, str]
+ :paramtype lock_duration: Union[~datetime.timedelta, str]
:keyword max_delivery_count: The maximum delivery count. A message is automatically deadlettered
after this number of deliveries. Default value is 10.
- :type max_delivery_count: int
+ :paramtype max_delivery_count: int
:keyword max_size_in_megabytes: The maximum size of the queue in megabytes, which is the size of
memory allocated for the queue.
- :type max_size_in_megabytes: int
+ :paramtype max_size_in_megabytes: int
:keyword requires_duplicate_detection: A value indicating if this queue requires duplicate
detection.
- :type requires_duplicate_detection: bool
+ :paramtype requires_duplicate_detection: bool
:keyword requires_session: A value that indicates whether the queue supports the concept of
sessions.
- :type requires_session: bool
+ :paramtype requires_session: bool
:keyword forward_to: The name of the recipient entity to which all the messages sent to the queue
are forwarded to.
- :type forward_to: str
+ :paramtype forward_to: str
:keyword user_metadata: Custom metdata that user can associate with the description. Max length
is 1024 chars.
- :type user_metadata: str
+ :paramtype user_metadata: str
:keyword forward_dead_lettered_messages_to: The name of the recipient entity to which all the
dead-lettered messages of this subscription are forwarded to.
- :type forward_dead_lettered_messages_to: str
+ :paramtype forward_dead_lettered_messages_to: str
+ :keyword max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that
+ can be accepted by the queue. This feature is only available when using a Premium namespace
+ and Service Bus API version "2021-05" or higher.
+ The minimum allowed value is 1024 while the maximum allowed value is 102400. Default value is 1024.
+ :paramtype max_message_size_in_kilobytes: int
:rtype: ~azure.servicebus.management.QueueProperties
"""
@@ -385,6 +398,7 @@ async def create_queue(self, queue_name: str, **kwargs) -> QueueProperties:
forward_to=forward_to,
forward_dead_lettered_messages_to=forward_dead_lettered_messages_to,
user_metadata=kwargs.pop("user_metadata", None),
+ max_message_size_in_kilobytes=kwargs.pop("max_message_size_in_kilobytes", None)
)
to_create = queue._to_internal_entity(self.fully_qualified_namespace)
create_entity_body = CreateQueueBody(
@@ -400,7 +414,7 @@ async def create_queue(self, queue_name: str, **kwargs) -> QueueProperties:
await self._impl.entity.put(
queue_name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
**kwargs
),
)
@@ -443,7 +457,7 @@ async def update_queue(
await self._impl.entity.put(
queue.name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
if_match="*",
**kwargs
)
@@ -461,7 +475,7 @@ async def delete_queue(self, queue_name: str, **kwargs) -> None:
raise ValueError("queue_name must not be None or empty")
with _handle_response_error():
await self._impl.entity.delete(
- queue_name, api_version=constants.API_VERSION, **kwargs
+ queue_name, api_version=self._api_version, **kwargs
)
def list_queues(self, **kwargs: Any) -> AsyncItemPaged[QueueProperties]:
@@ -483,6 +497,7 @@ def entry_to_qd(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_entities, constants.ENTITY_TYPE_QUEUES),
+ api_version=self._api_version,
**kwargs
)
return AsyncItemPaged(get_next, extract_data)
@@ -508,6 +523,7 @@ def entry_to_qr(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_entities, constants.ENTITY_TYPE_QUEUES),
+ api_version=self._api_version,
**kwargs
)
return AsyncItemPaged(get_next, extract_data)
@@ -553,41 +569,46 @@ async def create_topic(self, topic_name: str, **kwargs) -> TopicProperties:
the duration after which the message expires, starting from when the message is sent to Service
Bus. This is the default value used when TimeToLive is not set on a message itself.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type default_message_time_to_live: Union[~datetime.timedelta, str]
+ :paramtype default_message_time_to_live: Union[~datetime.timedelta, str]
:keyword max_size_in_megabytes: The maximum size of the topic in megabytes, which is the size of
memory allocated for the topic.
- :type max_size_in_megabytes: long
+ :paramtype max_size_in_megabytes: long
:keyword requires_duplicate_detection: A value indicating if this topic requires duplicate
detection.
- :type requires_duplicate_detection: bool
+ :paramtype requires_duplicate_detection: bool
:keyword duplicate_detection_history_time_window: ISO 8601 timeSpan structure that defines the
duration of the duplicate detection history. The default value is 10 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type duplicate_detection_history_time_window: Union[~datetime.timedelta, str]
+ :paramtype duplicate_detection_history_time_window: Union[~datetime.timedelta, str]
:keyword enable_batched_operations: Value that indicates whether server-side batched operations
are enabled.
- :type enable_batched_operations: bool
+ :paramtype enable_batched_operations: bool
:keyword size_in_bytes: The size of the topic, in bytes.
- :type size_in_bytes: int
+ :paramtype size_in_bytes: int
:keyword filtering_messages_before_publishing: Filter messages before publishing.
- :type filtering_messages_before_publishing: bool
+ :paramtype filtering_messages_before_publishing: bool
:keyword authorization_rules: Authorization rules for resource.
- :type authorization_rules:
+ :paramtype authorization_rules:
list[~azure.servicebus.management.AuthorizationRule]
:keyword support_ordering: A value that indicates whether the topic supports ordering.
- :type support_ordering: bool
+ :paramtype support_ordering: bool
:keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the topic is
automatically deleted. The minimum duration is 5 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type auto_delete_on_idle: Union[~datetime.timedelta, str]
+ :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str]
:keyword enable_partitioning: A value that indicates whether the topic is to be partitioned
across multiple message brokers.
- :type enable_partitioning: bool
+ :paramtype enable_partitioning: bool
:keyword enable_express: A value that indicates whether Express Entities are enabled. An express
queue holds a message in memory temporarily before writing it to persistent storage.
- :type enable_express: bool
+ :paramtype enable_express: bool
:keyword user_metadata: Metadata associated with the topic.
- :type user_metadata: str
+ :paramtype user_metadata: str
+ :keyword max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that
+ can be accepted by the queue. This feature is only available when using a Premium namespace
+ and Service Bus API version "2021-05" or higher.
+ The minimum allowed value is 1024 while the maximum allowed value is 102400. Default value is 1024.
+ :paramtype max_message_size_in_kilobytes: int
:rtype: ~azure.servicebus.management.TopicProperties
"""
@@ -614,6 +635,7 @@ async def create_topic(self, topic_name: str, **kwargs) -> TopicProperties:
availability_status=None,
enable_express=kwargs.pop("enable_express", None),
user_metadata=kwargs.pop("user_metadata", None),
+ max_message_size_in_kilobytes=kwargs.pop("max_message_size_in_kilobytes", None)
)
to_create = topic._to_internal_entity()
@@ -629,7 +651,7 @@ async def create_topic(self, topic_name: str, **kwargs) -> TopicProperties:
await self._impl.entity.put(
topic_name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
**kwargs
),
)
@@ -670,7 +692,7 @@ async def update_topic(
await self._impl.entity.put(
topic.name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
if_match="*",
**kwargs
)
@@ -684,7 +706,7 @@ async def delete_topic(self, topic_name: str, **kwargs) -> None:
_validate_entity_name_type(topic_name)
await self._impl.entity.delete(
- topic_name, api_version=constants.API_VERSION, **kwargs
+ topic_name, api_version=self._api_version, **kwargs
)
def list_topics(self, **kwargs: Any) -> AsyncItemPaged[TopicProperties]:
@@ -706,6 +728,7 @@ def entry_to_topic(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_entities, constants.ENTITY_TYPE_TOPICS),
+ api_version=self._api_version,
**kwargs
)
return AsyncItemPaged(get_next, extract_data)
@@ -731,6 +754,7 @@ def entry_to_topic(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_entities, constants.ENTITY_TYPE_TOPICS),
+ api_version=self._api_version,
**kwargs
)
return AsyncItemPaged(get_next, extract_data)
@@ -796,40 +820,40 @@ async def create_subscription(
that the message is locked for other receivers. The maximum value for LockDuration is 5
minutes; the default value is 1 minute.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type lock_duration: Union[~datetime.timedelta, str]
+ :paramtype lock_duration: Union[~datetime.timedelta, str]
:keyword requires_session: A value that indicates whether the queue supports the concept of
sessions.
- :type requires_session: bool
+ :paramtype requires_session: bool
:keyword default_message_time_to_live: ISO 8601 default message timespan to live value. This is
the duration after which the message expires, starting from when the message is sent to Service
Bus. This is the default value used when TimeToLive is not set on a message itself.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type default_message_time_to_live: Union[~datetime.timedelta, str]
+ :paramtype default_message_time_to_live: Union[~datetime.timedelta, str]
:keyword dead_lettering_on_message_expiration: A value that indicates whether this subscription
has dead letter support when a message expires.
- :type dead_lettering_on_message_expiration: bool
+ :paramtype dead_lettering_on_message_expiration: bool
:keyword dead_lettering_on_filter_evaluation_exceptions: A value that indicates whether this
subscription has dead letter support when a message expires.
- :type dead_lettering_on_filter_evaluation_exceptions: bool
+ :paramtype dead_lettering_on_filter_evaluation_exceptions: bool
:keyword max_delivery_count: The maximum delivery count. A message is automatically deadlettered
after this number of deliveries. Default value is 10.
- :type max_delivery_count: int
+ :paramtype max_delivery_count: int
:keyword enable_batched_operations: Value that indicates whether server-side batched operations
are enabled.
- :type enable_batched_operations: bool
+ :paramtype enable_batched_operations: bool
:keyword forward_to: The name of the recipient entity to which all the messages sent to the
subscription are forwarded to.
- :type forward_to: str
+ :paramtype forward_to: str
:keyword user_metadata: Metadata associated with the subscription. Maximum number of characters
is 1024.
- :type user_metadata: str
+ :paramtype user_metadata: str
:keyword forward_dead_lettered_messages_to: The name of the recipient entity to which all the
messages sent to the subscription are forwarded to.
- :type forward_dead_lettered_messages_to: str
+ :paramtype forward_dead_lettered_messages_to: str
:keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the subscription is
automatically deleted. The minimum duration is 5 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type auto_delete_on_idle: Union[~datetime.timedelta, str]
+ :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str]
:rtype: ~azure.servicebus.management.SubscriptionProperties
"""
# pylint:disable=protected-access
@@ -882,7 +906,7 @@ async def create_subscription(
topic_name,
subscription_name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
**kwargs
),
)
@@ -931,7 +955,7 @@ async def update_subscription(
topic_name,
subscription.name,
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
if_match="*",
**kwargs
)
@@ -949,7 +973,7 @@ async def delete_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
+ topic_name, subscription_name, api_version=self._api_version, **kwargs
)
def list_subscriptions(
@@ -975,6 +999,7 @@ def entry_to_subscription(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_subscriptions, topic_name),
+ api_version=self._api_version,
**kwargs
)
return AsyncItemPaged(get_next, extract_data)
@@ -1002,6 +1027,7 @@ def entry_to_subscription(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_subscriptions, topic_name),
+ api_version=self._api_version,
**kwargs
)
return AsyncItemPaged(get_next, extract_data)
@@ -1047,10 +1073,10 @@ async def create_rule(
:param rule_name: Name of the rule.
:type rule_name: str
:keyword filter: The filter of the rule. The default value is ~azure.servicebus.management.TrueRuleFilter
- :type filter: Union[~azure.servicebus.management.CorrelationRuleFilter,
+ :paramtype filter: Union[~azure.servicebus.management.CorrelationRuleFilter,
~azure.servicebus.management.SqlRuleFilter]
:keyword action: The action of the rule.
- :type action: Optional[~azure.servicebus.management.SqlRuleAction]
+ :paramtype action: Optional[~azure.servicebus.management.SqlRuleAction]
:rtype: ~azure.servicebus.management.RuleProperties
"""
@@ -1077,7 +1103,7 @@ async def create_rule(
subscription_name, # type: ignore
rule_name,
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
**kwargs
)
entry = RuleDescriptionEntry.deserialize(entry_ele)
@@ -1130,7 +1156,7 @@ async def update_rule(
subscription_name,
rule.name,
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
if_match="*",
**kwargs
)
@@ -1154,7 +1180,7 @@ async def delete_rule(
topic_name,
subscription_name,
rule_name,
- api_version=constants.API_VERSION,
+ api_version=self._api_version,
**kwargs
)
@@ -1188,6 +1214,7 @@ def entry_to_rule(ele, entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_rules, topic_name, subscription_name),
+ api_version=self._api_version,
**kwargs
)
return AsyncItemPaged(get_next, extract_data)
@@ -1198,7 +1225,7 @@ async def get_namespace_properties(self, **kwargs) -> NamespaceProperties:
:rtype: ~azure.servicebus.management.NamespaceProperties
"""
entry_el = await self._impl.namespace.get(
- api_version=constants.API_VERSION, **kwargs
+ api_version=self._api_version, **kwargs
)
namespace_entry = NamespacePropertiesEntry.deserialize(entry_el)
return NamespaceProperties._from_internal_entity(
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_utils.py b/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_utils.py
index 0660b05a3a05..345bc93f0966 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_utils.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/aio/management/_utils.py
@@ -9,6 +9,7 @@
import urllib.parse as urlparse
from ...management import _constants as constants
+from ...management._api_version import DEFAULT_VERSION
from ...management._handle_response_error import _handle_response_error
# This module defines functions get_next_template and extract_data_template.
@@ -126,7 +127,7 @@ async def get_next_template(
XML ElementTree to call a partial function created from `extrat_data_template`.
"""
- api_version = constants.API_VERSION
+ api_version = kwargs.pop("api_version", DEFAULT_VERSION)
if args[0]: # It's next link. It's None for the first page.
queries = urlparse.parse_qs(urlparse.urlparse(args[0]).query)
start_index = int(queries[constants.LIST_OP_SKIP][0])
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/__init__.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/__init__.py
index 2739203efe63..4bd28cbff9c1 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/__init__.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/__init__.py
@@ -12,6 +12,7 @@
MessagingSku,
NamespaceType,
)
+from ._api_version import ApiVersion
from ._models import (
QueueRuntimeProperties,
@@ -52,4 +53,5 @@
"NamespaceProperties",
"MessagingSku",
"NamespaceType",
+ "ApiVersion"
]
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_api_version.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_api_version.py
new file mode 100644
index 000000000000..b96e2772455a
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_api_version.py
@@ -0,0 +1,14 @@
+# --------------------------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for license information.
+# --------------------------------------------------------------------------------------------
+
+from enum import Enum
+
+
+class ApiVersion(str, Enum):
+ V2021_05 = "2021-05"
+ V2017_04 = "2017-04"
+
+
+DEFAULT_VERSION = ApiVersion.V2021_05
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_constants.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_constants.py
index 77b31fadf5b1..d0bd53acd911 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_constants.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_constants.py
@@ -5,7 +5,6 @@
# Generated API parameters
API_VERSION_PARAM_NAME = "api-version"
-API_VERSION = "2017-04"
ENTITY_TYPE_QUEUES = "queues"
ENTITY_TYPE_TOPICS = "topics"
LIST_OP_SKIP = "$skip"
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/_version.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/_version.py
index 3b38af7aff9b..d1e365c2c71f 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/_version.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/_version.py
@@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------
-VERSION = "2017-04"
+VERSION = "2021-05"
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py
index 8eacacacd5de..a45b77527d1f 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_entity_operations_async.py
@@ -43,7 +43,7 @@ async def get(
self,
entity_name: str,
enrich: Optional[bool] = False,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> object:
"""Get the details about the Queue or Topic with the given entityName.
@@ -106,7 +106,7 @@ async def put(
self,
entity_name: str,
request_body: object,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
if_match: Optional[str] = None,
**kwargs
) -> object:
@@ -183,7 +183,7 @@ async def put(
async def delete(
self,
entity_name: str,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> object:
"""Delete the Queue or Topic with the given entityName.
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_namespace_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_namespace_operations_async.py
index d8fa5d686223..1f46fcbc42f3 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_namespace_operations_async.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_namespace_operations_async.py
@@ -41,7 +41,7 @@ def __init__(self, client, config, serializer, deserializer) -> None:
async def get(
self,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> "models.NamespacePropertiesEntry":
"""Get the details about the Service Bus namespace.
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_rule_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_rule_operations_async.py
index 5e00dba3c5c4..69538ab2d515 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_rule_operations_async.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_rule_operations_async.py
@@ -45,7 +45,7 @@ async def get(
subscription_name: str,
rule_name: str,
enrich: Optional[bool] = False,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> object:
"""Get the details about the rule of a subscription of a topic.
@@ -116,7 +116,7 @@ async def put(
subscription_name: str,
rule_name: str,
request_body: object,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
if_match: Optional[str] = None,
**kwargs
) -> object:
@@ -201,7 +201,7 @@ async def delete(
topic_name: str,
subscription_name: str,
rule_name: str,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> object:
"""Delete the rule with the given topicName, subscriptionName and ruleName.
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_service_bus_management_client_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_service_bus_management_client_operations_async.py
index 21cdba787565..70dd61415d1d 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_service_bus_management_client_operations_async.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_service_bus_management_client_operations_async.py
@@ -24,7 +24,7 @@ async def list_subscriptions(
topic_name: str,
skip: Optional[int] = 0,
top: Optional[int] = 100,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> object:
"""Get the details about the subscriptions of the given topic.
@@ -93,7 +93,7 @@ async def list_rules(
subscription_name: str,
skip: Optional[int] = 0,
top: Optional[int] = 100,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> object:
"""Get the details about the rules of the given topic subscription.
@@ -164,7 +164,7 @@ async def list_entities(
entity_type: str,
skip: Optional[int] = 0,
top: Optional[int] = 100,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> object:
"""Get the details about the entities of the given Service Bus namespace.
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_subscription_operations_async.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_subscription_operations_async.py
index 1a7117c61ce9..5d758424aa17 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_subscription_operations_async.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/aio/operations_async/_subscription_operations_async.py
@@ -44,7 +44,7 @@ async def get(
topic_name: str,
subscription_name: str,
enrich: Optional[bool] = False,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> object:
"""Get the details about the subscription of a topic.
@@ -111,7 +111,7 @@ async def put(
topic_name: str,
subscription_name: str,
request_body: object,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
if_match: Optional[str] = None,
**kwargs
) -> object:
@@ -192,7 +192,7 @@ async def delete(
self,
topic_name: str,
subscription_name: str,
- api_version: Optional[str] = "2017_04",
+ api_version: Optional[str] = "2021_05",
**kwargs
) -> object:
"""Delete the subscription with the given topicName and subscriptionName.
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models.py
index bc5a8b1d5438..578ba06fcc35 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models.py
@@ -20,7 +20,7 @@ class AuthorizationRule(msrest.serialization.Model):
:param claim_value: The claim value.
:type claim_value: str
:param rights: Access rights of the entity. Values are 'Send', 'Listen', or 'Manage'.
- :type rights: list[str]
+ :type rights: list[str or ~azure.servicebus.management._generated.models.AccessRights]
:param created_time: The date and time when the authorization rule was created.
:type created_time: ~datetime.datetime
:param modified_time: The date and time when the authorization rule was modified.
@@ -757,6 +757,9 @@ class QueueDescription(msrest.serialization.Model):
:param forward_dead_lettered_messages_to: The name of the recipient entity to which all the
dead-lettered messages of this subscription are forwarded to.
:type forward_dead_lettered_messages_to: str
+ :param max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that can
+ be accepted by the queue.
+ :type max_message_size_in_kilobytes: int
"""
_attribute_map = {
@@ -786,6 +789,7 @@ class QueueDescription(msrest.serialization.Model):
'entity_availability_status': {'key': 'entityAvailabilityStatus', 'type': 'str', 'xml': {'name': 'EntityAvailabilityStatus', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
'enable_express': {'key': 'enableExpress', 'type': 'bool', 'xml': {'name': 'EnableExpress', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
'forward_dead_lettered_messages_to': {'key': 'forwardDeadLetteredMessagesTo', 'type': 'str', 'xml': {'name': 'ForwardDeadLetteredMessagesTo', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
+ 'max_message_size_in_kilobytes': {'key': 'maxMessageSizeInKilobytes', 'type': 'int', 'xml': {'name': 'MaxMessageSizeInKilobytes', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
}
_xml_map = {
'name': 'QueueDescription', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'
@@ -822,6 +826,7 @@ def __init__(
self.entity_availability_status = kwargs.get('entity_availability_status', None)
self.enable_express = kwargs.get('enable_express', None)
self.forward_dead_lettered_messages_to = kwargs.get('forward_dead_lettered_messages_to', None)
+ self.max_message_size_in_kilobytes = kwargs.get('max_message_size_in_kilobytes', None)
class QueueDescriptionEntry(msrest.serialization.Model):
@@ -1468,6 +1473,9 @@ class TopicDescription(msrest.serialization.Model):
:type enable_express: bool
:param user_metadata: Metadata associated with the topic.
:type user_metadata: str
+ :param max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that can
+ be accepted by the topic.
+ :type max_message_size_in_kilobytes: int
"""
_attribute_map = {
@@ -1493,6 +1501,7 @@ class TopicDescription(msrest.serialization.Model):
'enable_subscription_partitioning': {'key': 'enableSubscriptionPartitioning', 'type': 'bool', 'xml': {'name': 'EnableSubscriptionPartitioning', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
'enable_express': {'key': 'enableExpress', 'type': 'bool', 'xml': {'name': 'EnableExpress', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
'user_metadata': {'key': 'userMetadata', 'type': 'str', 'xml': {'name': 'UserMetadata', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
+ 'max_message_size_in_kilobytes': {'key': 'maxMessageSizeInKilobytes', 'type': 'int', 'xml': {'name': 'MaxMessageSizeInKilobytes', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
}
_xml_map = {
'name': 'TopicDescription', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'
@@ -1525,6 +1534,7 @@ def __init__(
self.enable_subscription_partitioning = kwargs.get('enable_subscription_partitioning', None)
self.enable_express = kwargs.get('enable_express', None)
self.user_metadata = kwargs.get('user_metadata', None)
+ self.max_message_size_in_kilobytes = kwargs.get('max_message_size_in_kilobytes', None)
class TopicDescriptionEntry(msrest.serialization.Model):
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models_py3.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models_py3.py
index 656f86cc8284..f5fb21d3c4a9 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models_py3.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/models/_models_py3.py
@@ -25,7 +25,7 @@ class AuthorizationRule(msrest.serialization.Model):
:param claim_value: The claim value.
:type claim_value: str
:param rights: Access rights of the entity. Values are 'Send', 'Listen', or 'Manage'.
- :type rights: list[str]
+ :type rights: list[str or ~azure.servicebus.management._generated.models.AccessRights]
:param created_time: The date and time when the authorization rule was created.
:type created_time: ~datetime.datetime
:param modified_time: The date and time when the authorization rule was modified.
@@ -59,7 +59,7 @@ def __init__(
type: Optional[str] = None,
claim_type: Optional[str] = None,
claim_value: Optional[str] = None,
- rights: Optional[List[str]] = None,
+ rights: Optional[List[Union[str, "AccessRights"]]] = None,
created_time: Optional[datetime.datetime] = None,
modified_time: Optional[datetime.datetime] = None,
key_name: Optional[str] = None,
@@ -839,6 +839,9 @@ class QueueDescription(msrest.serialization.Model):
:param forward_dead_lettered_messages_to: The name of the recipient entity to which all the
dead-lettered messages of this subscription are forwarded to.
:type forward_dead_lettered_messages_to: str
+ :param max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that can
+ be accepted by the queue.
+ :type max_message_size_in_kilobytes: int
"""
_attribute_map = {
@@ -868,6 +871,7 @@ class QueueDescription(msrest.serialization.Model):
'entity_availability_status': {'key': 'entityAvailabilityStatus', 'type': 'str', 'xml': {'name': 'EntityAvailabilityStatus', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
'enable_express': {'key': 'enableExpress', 'type': 'bool', 'xml': {'name': 'EnableExpress', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
'forward_dead_lettered_messages_to': {'key': 'forwardDeadLetteredMessagesTo', 'type': 'str', 'xml': {'name': 'ForwardDeadLetteredMessagesTo', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
+ 'max_message_size_in_kilobytes': {'key': 'maxMessageSizeInKilobytes', 'type': 'int', 'xml': {'name': 'MaxMessageSizeInKilobytes', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
}
_xml_map = {
'name': 'QueueDescription', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'
@@ -902,6 +906,7 @@ def __init__(
entity_availability_status: Optional[Union[str, "EntityAvailabilityStatus"]] = None,
enable_express: Optional[bool] = None,
forward_dead_lettered_messages_to: Optional[str] = None,
+ max_message_size_in_kilobytes: Optional[int] = None,
**kwargs
):
super(QueueDescription, self).__init__(**kwargs)
@@ -931,6 +936,7 @@ def __init__(
self.entity_availability_status = entity_availability_status
self.enable_express = enable_express
self.forward_dead_lettered_messages_to = forward_dead_lettered_messages_to
+ self.max_message_size_in_kilobytes = max_message_size_in_kilobytes
class QueueDescriptionEntry(msrest.serialization.Model):
@@ -1664,6 +1670,9 @@ class TopicDescription(msrest.serialization.Model):
:type enable_express: bool
:param user_metadata: Metadata associated with the topic.
:type user_metadata: str
+ :param max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that can
+ be accepted by the topic.
+ :type max_message_size_in_kilobytes: int
"""
_attribute_map = {
@@ -1689,6 +1698,7 @@ class TopicDescription(msrest.serialization.Model):
'enable_subscription_partitioning': {'key': 'enableSubscriptionPartitioning', 'type': 'bool', 'xml': {'name': 'EnableSubscriptionPartitioning', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
'enable_express': {'key': 'enableExpress', 'type': 'bool', 'xml': {'name': 'EnableExpress', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
'user_metadata': {'key': 'userMetadata', 'type': 'str', 'xml': {'name': 'UserMetadata', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
+ 'max_message_size_in_kilobytes': {'key': 'maxMessageSizeInKilobytes', 'type': 'int', 'xml': {'name': 'MaxMessageSizeInKilobytes', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'}},
}
_xml_map = {
'name': 'TopicDescription', 'ns': 'http://schemas.microsoft.com/netservices/2010/10/servicebus/connect'
@@ -1719,6 +1729,7 @@ def __init__(
enable_subscription_partitioning: Optional[bool] = None,
enable_express: Optional[bool] = None,
user_metadata: Optional[str] = None,
+ max_message_size_in_kilobytes: Optional[int] = None,
**kwargs
):
super(TopicDescription, self).__init__(**kwargs)
@@ -1744,6 +1755,7 @@ def __init__(
self.enable_subscription_partitioning = enable_subscription_partitioning
self.enable_express = enable_express
self.user_metadata = user_metadata
+ self.max_message_size_in_kilobytes = max_message_size_in_kilobytes
class TopicDescriptionEntry(msrest.serialization.Model):
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_entity_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_entity_operations.py
index 521e710dc2cf..37d66d8f5896 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_entity_operations.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_entity_operations.py
@@ -47,7 +47,7 @@ def get(
self,
entity_name, # type: str
enrich=False, # type: Optional[bool]
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> object
@@ -111,7 +111,7 @@ def put(
self,
entity_name, # type: str
request_body, # type: object
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
if_match=None, # type: Optional[str]
**kwargs # type: Any
):
@@ -189,7 +189,7 @@ def put(
def delete(
self,
entity_name, # type: str
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> object
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_namespace_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_namespace_operations.py
index 99947994be8c..204489b3a447 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_namespace_operations.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_namespace_operations.py
@@ -45,7 +45,7 @@ def __init__(self, client, config, serializer, deserializer):
def get(
self,
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> "models.NamespacePropertiesEntry"
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_rule_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_rule_operations.py
index 4bf126c0d286..b058cbeba2ea 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_rule_operations.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_rule_operations.py
@@ -49,7 +49,7 @@ def get(
subscription_name, # type: str
rule_name, # type: str
enrich=False, # type: Optional[bool]
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> object
@@ -121,7 +121,7 @@ def put(
subscription_name, # type: str
rule_name, # type: str
request_body, # type: object
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
if_match=None, # type: Optional[str]
**kwargs # type: Any
):
@@ -207,7 +207,7 @@ def delete(
topic_name, # type: str
subscription_name, # type: str
rule_name, # type: str
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> object
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_service_bus_management_client_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_service_bus_management_client_operations.py
index 367c39a964b4..acedc853c957 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_service_bus_management_client_operations.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_service_bus_management_client_operations.py
@@ -28,7 +28,7 @@ def list_subscriptions(
topic_name, # type: str
skip=0, # type: Optional[int]
top=100, # type: Optional[int]
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> object
@@ -98,7 +98,7 @@ def list_rules(
subscription_name, # type: str
skip=0, # type: Optional[int]
top=100, # type: Optional[int]
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> object
@@ -170,7 +170,7 @@ def list_entities(
entity_type, # type: str
skip=0, # type: Optional[int]
top=100, # type: Optional[int]
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> object
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_subscription_operations.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_subscription_operations.py
index 9b26a472a70f..ae03fb550741 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_subscription_operations.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_generated/operations/_subscription_operations.py
@@ -48,7 +48,7 @@ def get(
topic_name, # type: str
subscription_name, # type: str
enrich=False, # type: Optional[bool]
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> object
@@ -116,7 +116,7 @@ def put(
topic_name, # type: str
subscription_name, # type: str
request_body, # type: object
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
if_match=None, # type: Optional[str]
**kwargs # type: Any
):
@@ -198,7 +198,7 @@ def delete(
self,
topic_name, # type: str
subscription_name, # type: str
- api_version="2017_04", # type: Optional[str]
+ api_version="2021_05", # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> object
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py
index cad49cee7372..f7545396270a 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_management_client.py
@@ -71,6 +71,7 @@
ServiceBusManagementClient as ServiceBusManagementClientImpl,
)
from . import _constants as constants
+from ._api_version import DEFAULT_VERSION
from ._models import (
QueueRuntimeProperties,
QueueProperties,
@@ -96,11 +97,15 @@ class ServiceBusAdministrationClient: # pylint:disable=too-many-public-methods
:param str fully_qualified_namespace: The fully qualified host name for the Service Bus namespace.
:param credential: To authenticate to manage the entities of the ServiceBus namespace.
:type credential: TokenCredential
+ :keyword str api_version: The Service Bus API version to use for requests. Default value is the most
+ recent service version that is compatible with the current SDK. Setting to an older version may result
+ in reduced feature compatibility.
"""
def __init__(self, fully_qualified_namespace, credential, **kwargs):
# type: (str, TokenCredential, Dict[str, Any]) -> None
self.fully_qualified_namespace = fully_qualified_namespace
+ self._api_version = kwargs.pop("api_version", DEFAULT_VERSION)
self._credential = credential
self._endpoint = "https://" + fully_qualified_namespace
self._config = ServiceBusManagementClientConfiguration(self._endpoint, **kwargs)
@@ -155,7 +160,7 @@ def _get_entity_element(self, entity_name, enrich=False, **kwargs):
self._impl.entity.get(
entity_name,
enrich=enrich,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
**kwargs
),
)
@@ -173,7 +178,7 @@ def _get_subscription_element(
topic_name,
subscription_name,
enrich=enrich,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
**kwargs
),
)
@@ -193,7 +198,7 @@ def _get_rule_element(self, topic_name, subscription_name, rule_name, **kwargs):
subscription_name,
rule_name,
enrich=False,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
**kwargs
),
)
@@ -228,6 +233,9 @@ def from_connection_string(cls, conn_str, **kwargs):
"""Create a client from connection string.
:param str conn_str: The connection string of the Service Bus Namespace.
+ :keyword str api_version: The Service Bus API version to use for requests. Default value is the most
+ recent service version that is compatible with the current SDK. Setting to an older version may result
+ in reduced feature compatibility.
:rtype: ~azure.servicebus.management.ServiceBusAdministrationClient
"""
(
@@ -285,58 +293,63 @@ def create_queue(self, queue_name, **kwargs):
:param queue_name: Name of the queue.
:type queue_name: str
:keyword authorization_rules: Authorization rules for resource.
- :type authorization_rules: list[~azure.servicebus.management.AuthorizationRule]
+ :paramtype authorization_rules: list[~azure.servicebus.management.AuthorizationRule]
:keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the queue is
automatically deleted. The minimum duration is 5 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type auto_delete_on_idle: Union[~datetime.timedelta, str]
+ :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str]
:keyword dead_lettering_on_message_expiration: A value that indicates whether this queue has dead
letter support when a message expires.
- :type dead_lettering_on_message_expiration: bool
+ :paramtype dead_lettering_on_message_expiration: bool
:keyword default_message_time_to_live: ISO 8601 default message timespan to live value. This is
the duration after which the message expires, starting from when the message is sent to Service
Bus. This is the default value used when TimeToLive is not set on a message itself.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type default_message_time_to_live: Union[~datetime.timedelta, str]
+ :paramtype default_message_time_to_live: Union[~datetime.timedelta, str]
:keyword duplicate_detection_history_time_window: ISO 8601 timeSpan structure that defines the
duration of the duplicate detection history. The default value is 10 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type duplicate_detection_history_time_window: Union[~datetime.timedelta, str]
+ :paramtype duplicate_detection_history_time_window: Union[~datetime.timedelta, str]
:keyword enable_batched_operations: Value that indicates whether server-side batched operations
are enabled.
- :type enable_batched_operations: bool
+ :paramtype enable_batched_operations: bool
:keyword enable_express: A value that indicates whether Express Entities are enabled. An express
queue holds a message in memory temporarily before writing it to persistent storage.
- :type enable_express: bool
+ :paramtype enable_express: bool
:keyword enable_partitioning: A value that indicates whether the queue is to be partitioned
across multiple message brokers.
- :type enable_partitioning: bool
+ :paramtype enable_partitioning: bool
:keyword lock_duration: ISO 8601 timespan duration of a peek-lock; that is, the amount of time
that the message is locked for other receivers. The maximum value for LockDuration is 5
minutes; the default value is 1 minute.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type lock_duration: Union[~datetime.timedelta, str]
+ :paramtype lock_duration: Union[~datetime.timedelta, str]
:keyword max_delivery_count: The maximum delivery count. A message is automatically deadlettered
after this number of deliveries. Default value is 10.
- :type max_delivery_count: int
+ :paramtype max_delivery_count: int
:keyword max_size_in_megabytes: The maximum size of the queue in megabytes, which is the size of
memory allocated for the queue.
- :type max_size_in_megabytes: int
+ :paramtype max_size_in_megabytes: int
:keyword requires_duplicate_detection: A value indicating if this queue requires duplicate
detection.
- :type requires_duplicate_detection: bool
+ :paramtype requires_duplicate_detection: bool
:keyword requires_session: A value that indicates whether the queue supports the concept of
sessions.
- :type requires_session: bool
+ :paramtype requires_session: bool
:keyword forward_to: The name of the recipient entity to which all the messages sent to the queue
are forwarded to.
- :type forward_to: str
+ :paramtype forward_to: str
:keyword user_metadata: Custom metdata that user can associate with the description. Max length
is 1024 chars.
- :type user_metadata: str
+ :paramtype user_metadata: str
:keyword forward_dead_lettered_messages_to: The name of the recipient entity to which all the
dead-lettered messages of this subscription are forwarded to.
- :type forward_dead_lettered_messages_to: str
+ :paramtype forward_dead_lettered_messages_to: str
+ :keyword max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that
+ can be accepted by the queue. This feature is only available when using a Premium namespace
+ and Service Bus API version "2021-05" or higher.
+ The minimum allowed value is 1024 while the maximum allowed value is 102400. Default value is 1024.
+ :paramtype max_message_size_in_kilobytes: int
:rtype: ~azure.servicebus.management.QueueProperties
"""
@@ -377,6 +390,7 @@ def create_queue(self, queue_name, **kwargs):
forward_to=forward_to,
forward_dead_lettered_messages_to=forward_dead_lettered_messages_to,
user_metadata=kwargs.pop("user_metadata", None),
+ max_message_size_in_kilobytes=kwargs.pop("max_message_size_in_kilobytes", None)
)
to_create = queue._to_internal_entity(self.fully_qualified_namespace)
create_entity_body = CreateQueueBody(
@@ -392,7 +406,7 @@ def create_queue(self, queue_name, **kwargs):
self._impl.entity.put(
queue_name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
**kwargs
),
)
@@ -434,7 +448,7 @@ def update_queue(self, queue, **kwargs):
self._impl.entity.put(
queue.name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
if_match="*",
**kwargs
)
@@ -453,7 +467,7 @@ def delete_queue(self, queue_name, **kwargs):
raise ValueError("queue_name must not be None or empty")
with _handle_response_error():
self._impl.entity.delete(
- queue_name, api_version=constants.API_VERSION, **kwargs # type: ignore
+ queue_name, api_version=self._api_version, **kwargs # type: ignore
)
def list_queues(self, **kwargs):
@@ -476,6 +490,7 @@ def entry_to_qd(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_entities, constants.ENTITY_TYPE_QUEUES),
+ api_version=self._api_version, # type: ignore
**kwargs
)
return ItemPaged(get_next, extract_data)
@@ -500,6 +515,7 @@ def entry_to_qr(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_entities, constants.ENTITY_TYPE_QUEUES),
+ api_version=self._api_version, # type: ignore
**kwargs
)
return ItemPaged(get_next, extract_data)
@@ -546,41 +562,46 @@ def create_topic(self, topic_name, **kwargs):
the duration after which the message expires, starting from when the message is sent to Service
Bus. This is the default value used when TimeToLive is not set on a message itself.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type default_message_time_to_live: Union[~datetime.timedelta, str]
+ :paramtype default_message_time_to_live: Union[~datetime.timedelta, str]
:keyword max_size_in_megabytes: The maximum size of the topic in megabytes, which is the size of
memory allocated for the topic.
- :type max_size_in_megabytes: long
+ :paramtype max_size_in_megabytes: long
:keyword requires_duplicate_detection: A value indicating if this topic requires duplicate
detection.
- :type requires_duplicate_detection: bool
+ :paramtype requires_duplicate_detection: bool
:keyword duplicate_detection_history_time_window: ISO 8601 timeSpan structure that defines the
duration of the duplicate detection history. The default value is 10 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type duplicate_detection_history_time_window: Union[~datetime.timedelta, str]
+ :paramtype duplicate_detection_history_time_window: Union[~datetime.timedelta, str]
:keyword enable_batched_operations: Value that indicates whether server-side batched operations
are enabled.
- :type enable_batched_operations: bool
+ :paramtype enable_batched_operations: bool
:keyword size_in_bytes: The size of the topic, in bytes.
- :type size_in_bytes: int
+ :paramtype size_in_bytes: int
:keyword filtering_messages_before_publishing: Filter messages before publishing.
- :type filtering_messages_before_publishing: bool
+ :paramtype filtering_messages_before_publishing: bool
:keyword authorization_rules: Authorization rules for resource.
- :type authorization_rules:
+ :paramtype authorization_rules:
list[~azure.servicebus.management.AuthorizationRule]
:keyword support_ordering: A value that indicates whether the topic supports ordering.
- :type support_ordering: bool
+ :paramtype support_ordering: bool
:keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the topic is
automatically deleted. The minimum duration is 5 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type auto_delete_on_idle: Union[~datetime.timedelta, str]
+ :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str]
:keyword enable_partitioning: A value that indicates whether the topic is to be partitioned
across multiple message brokers.
- :type enable_partitioning: bool
+ :paramtype enable_partitioning: bool
:keyword enable_express: A value that indicates whether Express Entities are enabled. An express
queue holds a message in memory temporarily before writing it to persistent storage.
- :type enable_express: bool
+ :paramtype enable_express: bool
:keyword user_metadata: Metadata associated with the topic.
- :type user_metadata: str
+ :paramtype user_metadata: str
+ :keyword max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that
+ can be accepted by the queue. This feature is only available when using a Premium namespace
+ and Service Bus API version "2021-05" or higher.
+ The minimum allowed value is 1024 while the maximum allowed value is 102400. Default value is 1024.
+ :paramtype max_message_size_in_kilobytes: int
:rtype: ~azure.servicebus.management.TopicProperties
"""
@@ -606,6 +627,7 @@ def create_topic(self, topic_name, **kwargs):
availability_status=None,
enable_express=kwargs.pop("enable_express", None),
user_metadata=kwargs.pop("user_metadata", None),
+ max_message_size_in_kilobytes=kwargs.pop("max_message_size_in_kilobytes", None)
)
to_create = topic._to_internal_entity()
@@ -621,7 +643,7 @@ def create_topic(self, topic_name, **kwargs):
self._impl.entity.put(
topic_name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
**kwargs
),
)
@@ -661,7 +683,7 @@ def update_topic(self, topic, **kwargs):
self._impl.entity.put(
topic.name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
if_match="*",
**kwargs
)
@@ -676,7 +698,7 @@ def delete_topic(self, topic_name, **kwargs):
_validate_entity_name_type(topic_name)
self._impl.entity.delete(
- topic_name, api_version=constants.API_VERSION, **kwargs
+ topic_name, api_version=self._api_version, **kwargs # type: ignore
)
def list_topics(self, **kwargs):
@@ -699,6 +721,7 @@ def entry_to_topic(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_entities, constants.ENTITY_TYPE_TOPICS),
+ api_version=self._api_version, # type: ignore
**kwargs
)
return ItemPaged(get_next, extract_data)
@@ -723,6 +746,7 @@ def entry_to_topic(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_entities, constants.ENTITY_TYPE_TOPICS),
+ api_version=self._api_version, # type: ignore
**kwargs
)
return ItemPaged(get_next, extract_data)
@@ -787,40 +811,40 @@ def create_subscription(self, topic_name, subscription_name, **kwargs):
that the message is locked for other receivers. The maximum value for LockDuration is 5
minutes; the default value is 1 minute.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type lock_duration: Union[~datetime.timedelta, str]
+ :paramtype lock_duration: Union[~datetime.timedelta, str]
:keyword requires_session: A value that indicates whether the queue supports the concept of
sessions.
- :type requires_session: bool
+ :paramtype requires_session: bool
:keyword default_message_time_to_live: ISO 8601 default message timespan to live value. This is
the duration after which the message expires, starting from when the message is sent to Service
Bus. This is the default value used when TimeToLive is not set on a message itself.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type default_message_time_to_live: Union[~datetime.timedelta, str]
+ :paramtype default_message_time_to_live: Union[~datetime.timedelta, str]
:keyword dead_lettering_on_message_expiration: A value that indicates whether this subscription
has dead letter support when a message expires.
- :type dead_lettering_on_message_expiration: bool
+ :paramtype dead_lettering_on_message_expiration: bool
:keyword dead_lettering_on_filter_evaluation_exceptions: A value that indicates whether this
subscription has dead letter support when a message expires.
- :type dead_lettering_on_filter_evaluation_exceptions: bool
+ :paramtype dead_lettering_on_filter_evaluation_exceptions: bool
:keyword max_delivery_count: The maximum delivery count. A message is automatically deadlettered
after this number of deliveries. Default value is 10.
- :type max_delivery_count: int
+ :paramtype max_delivery_count: int
:keyword enable_batched_operations: Value that indicates whether server-side batched operations
are enabled.
- :type enable_batched_operations: bool
+ :paramtype enable_batched_operations: bool
:keyword forward_to: The name of the recipient entity to which all the messages sent to the
subscription are forwarded to.
- :type forward_to: str
+ :paramtype forward_to: str
:keyword user_metadata: Metadata associated with the subscription. Maximum number of characters
is 1024.
- :type user_metadata: str
+ :paramtype user_metadata: str
:keyword forward_dead_lettered_messages_to: The name of the recipient entity to which all the
messages sent to the subscription are forwarded to.
- :type forward_dead_lettered_messages_to: str
+ :paramtype forward_dead_lettered_messages_to: str
:keyword auto_delete_on_idle: ISO 8601 timeSpan idle interval after which the subscription is
automatically deleted. The minimum duration is 5 minutes.
Input value of either type ~datetime.timedelta or string in ISO 8601 duration format like "PT300S" is accepted.
- :type auto_delete_on_idle: Union[~datetime.timedelta, str]
+ :paramtype auto_delete_on_idle: Union[~datetime.timedelta, str]
:rtype: ~azure.servicebus.management.SubscriptionProperties
"""
_validate_entity_name_type(topic_name, display_name="topic_name")
@@ -872,7 +896,7 @@ def create_subscription(self, topic_name, subscription_name, **kwargs):
topic_name,
subscription_name, # type: ignore
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
**kwargs
),
)
@@ -918,7 +942,7 @@ def update_subscription(self, topic_name, subscription, **kwargs):
topic_name,
subscription.name,
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
if_match="*",
**kwargs
)
@@ -935,7 +959,7 @@ def delete_subscription(self, topic_name, subscription_name, **kwargs):
_validate_topic_and_subscription_types(topic_name, subscription_name)
self._impl.subscription.delete(
- topic_name, subscription_name, api_version=constants.API_VERSION, **kwargs
+ topic_name, subscription_name, api_version=self._api_version, **kwargs # type: ignore
)
def list_subscriptions(self, topic_name, **kwargs):
@@ -960,6 +984,7 @@ def entry_to_subscription(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_subscriptions, topic_name),
+ api_version=self._api_version, # type: ignore
**kwargs
)
return ItemPaged(get_next, extract_data)
@@ -986,6 +1011,7 @@ def entry_to_subscription(entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_subscriptions, topic_name),
+ api_version=self._api_version, # type: ignore
**kwargs
)
return ItemPaged(get_next, extract_data)
@@ -1029,10 +1055,10 @@ def create_rule(self, topic_name, subscription_name, rule_name, **kwargs):
:param rule_name: Name of the rule.
:type rule_name: str
:keyword filter: The filter of the rule. The default value is ~azure.servicebus.management.TrueRuleFilter
- :type filter: Union[~azure.servicebus.management.CorrelationRuleFilter,
+ :paramtype filter: Union[~azure.servicebus.management.CorrelationRuleFilter,
~azure.servicebus.management.SqlRuleFilter]
:keyword action: The action of the rule.
- :type action: Optional[~azure.servicebus.management.SqlRuleAction]
+ :paramtype action: Optional[~azure.servicebus.management.SqlRuleAction]
:rtype: ~azure.servicebus.management.RuleProperties
"""
_validate_topic_and_subscription_types(topic_name, subscription_name)
@@ -1058,7 +1084,7 @@ def create_rule(self, topic_name, subscription_name, rule_name, **kwargs):
subscription_name, # type: ignore
rule_name,
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
**kwargs
)
entry = RuleDescriptionEntry.deserialize(entry_ele)
@@ -1107,7 +1133,7 @@ def update_rule(self, topic_name, subscription_name, rule, **kwargs):
subscription_name,
rule.name,
request_body,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
if_match="*",
**kwargs
)
@@ -1130,7 +1156,7 @@ def delete_rule(self, topic_name, subscription_name, rule_name, **kwargs):
topic_name,
subscription_name,
rule_name,
- api_version=constants.API_VERSION,
+ api_version=self._api_version, # type: ignore
**kwargs
)
@@ -1163,6 +1189,7 @@ def entry_to_rule(ele, entry):
get_next = functools.partial(
get_next_template,
functools.partial(self._impl.list_rules, topic_name, subscription_name),
+ api_version=self._api_version, # type: ignore
**kwargs
)
return ItemPaged(get_next, extract_data)
@@ -1173,7 +1200,7 @@ def get_namespace_properties(self, **kwargs):
:rtype: ~azure.servicebus.management.NamespaceProperties
"""
- entry_el = self._impl.namespace.get(api_version=constants.API_VERSION, **kwargs)
+ entry_el = self._impl.namespace.get(api_version=self._api_version, **kwargs) # type: ignore
namespace_entry = NamespacePropertiesEntry.deserialize(entry_el)
return NamespaceProperties._from_internal_entity(
namespace_entry.title, namespace_entry.content.namespace_properties
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_model_workaround.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_model_workaround.py
index 6d34fec88df7..32b5176a9dff 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_model_workaround.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_model_workaround.py
@@ -128,6 +128,7 @@
"forward_to",
"user_metadata",
"forward_dead_lettered_messages_to",
+ "max_message_size_in_kilobytes",
),
QueueDescriptionEntry: (
"base",
@@ -214,6 +215,7 @@
"enable_subscription_partitioning",
"enable_express",
"user_metadata",
+ "max_message_size_in_kilobytes",
),
TopicDescriptionEntry: (
"base",
@@ -235,6 +237,7 @@
"requires_preprocessing",
),
} # type: Dict[Type[Model], Tuple[str, ...]]
+
### End of code generated by the script.
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_models.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_models.py
index a121efe5c6b8..ce8536abafd7 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_models.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_models.py
@@ -245,6 +245,10 @@ class QueueProperties(DictMixin): # pylint:disable=too-many-instance-attributes
:ivar forward_dead_lettered_messages_to: The name of the recipient entity to which all the
dead-lettered messages of this subscription are forwarded to.
:type forward_dead_lettered_messages_to: str
+ :ivar max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that
+ can be accepted by the queue. This feature is only available when using a Premium namespace
+ and Service Bus API version "2021-05" or higher.
+ :type max_message_size_in_kilobytes: int
"""
def __init__(self, name, **kwargs):
@@ -285,6 +289,7 @@ def __init__(self, name, **kwargs):
self.forward_dead_lettered_messages_to = extract_kwarg(
"forward_dead_lettered_messages_to"
)
+ self.max_message_size_in_kilobytes = extract_kwarg("max_message_size_in_kilobytes")
validate_extraction_missing_args(extraction_missing_args)
@@ -316,7 +321,9 @@ def _from_internal_entity(cls, name, internal_qd):
forward_to=internal_qd.forward_to,
forward_dead_lettered_messages_to=internal_qd.forward_dead_lettered_messages_to,
user_metadata=internal_qd.user_metadata,
+ max_message_size_in_kilobytes=internal_qd.max_message_size_in_kilobytes
)
+
qd._internal_qd = deepcopy(internal_qd) # pylint:disable=protected-access
return qd
@@ -377,6 +384,10 @@ def _to_internal_entity(self, fully_qualified_namespace, kwargs=None):
)
self._internal_qd.user_metadata = kwargs.pop("user_metadata", self.user_metadata)
+ self._internal_qd.max_message_size_in_kilobytes = kwargs.pop(
+ "max_message_size_in_kilobytes",
+ self.max_message_size_in_kilobytes
+ )
return self._internal_qd
@@ -538,6 +549,10 @@ class TopicProperties(DictMixin): # pylint:disable=too-many-instance-attributes
:type enable_express: bool
:ivar user_metadata: Metadata associated with the topic.
:type user_metadata: str
+ :ivar max_message_size_in_kilobytes: The maximum size in kilobytes of message payload that
+ can be accepted by the topic. This feature is only available when using a Premium namespace
+ and Service Bus API version "2021-05" or higher.
+ :type max_message_size_in_kilobytes: int
"""
def __init__(self, name, **kwargs):
@@ -570,6 +585,7 @@ def __init__(self, name, **kwargs):
self.availability_status = extract_kwarg("availability_status")
self.enable_express = extract_kwarg("enable_express")
self.user_metadata = extract_kwarg("user_metadata")
+ self.max_message_size_in_kilobytes = extract_kwarg("max_message_size_in_kilobytes")
validate_extraction_missing_args(extraction_missing_args)
@@ -597,6 +613,7 @@ def _from_internal_entity(cls, name, internal_td):
availability_status=internal_td.entity_availability_status,
enable_express=internal_td.enable_express,
user_metadata=internal_td.user_metadata,
+ max_message_size_in_kilobytes=internal_td.max_message_size_in_kilobytes
)
td._internal_td = deepcopy(internal_td)
return td
@@ -637,6 +654,10 @@ def _to_internal_entity(self, kwargs=None):
self._internal_td.entity_availability_status = kwargs.pop("availability_status", self.availability_status)
self._internal_td.enable_express = kwargs.pop("enable_express", self.enable_express)
self._internal_td.user_metadata = kwargs.pop("user_metadata", self.user_metadata)
+ self._internal_td.max_message_size_in_kilobytes = kwargs.pop(
+ "max_message_size_in_kilobytes",
+ self.max_message_size_in_kilobytes
+ )
return self._internal_td
diff --git a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py
index 311b1a61277f..fbf5e8fbd755 100644
--- a/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py
+++ b/sdk/servicebus/azure-servicebus/azure/servicebus/management/_utils.py
@@ -9,6 +9,7 @@
import six
from . import _constants as constants
+from ._api_version import DEFAULT_VERSION
from ._handle_response_error import _handle_response_error
if TYPE_CHECKING:
@@ -84,7 +85,7 @@ def get_next_template(list_func, *args, **kwargs):
"""
start_index = kwargs.pop("start_index", 0)
max_page_size = kwargs.pop("max_page_size", 100)
- api_version = constants.API_VERSION
+ api_version = kwargs.pop("api_version", DEFAULT_VERSION)
if args[0]:
queries = urlparse.parse_qs(urlparse.urlparse(args[0]).query)
start_index = int(queries[constants.LIST_OP_SKIP][0])
diff --git a/sdk/servicebus/azure-servicebus/swagger/README.md b/sdk/servicebus/azure-servicebus/swagger/README.md
index dad62935f625..b940005b6e95 100644
--- a/sdk/servicebus/azure-servicebus/swagger/README.md
+++ b/sdk/servicebus/azure-servicebus/swagger/README.md
@@ -16,5 +16,5 @@ no-namespace-folders: true
license-header: MICROSOFT_MIT_NO_VERSION
clear-output-folder: true
python: true
-package-version: "2017-04"
+package-version: "2021-05"
```
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_namespaces_async.test_async_mgmt_namespace_get_properties.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_namespaces_async.test_async_mgmt_namespace_get_properties.yaml
index 95e5f4453e1b..7bd823583762 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_namespaces_async.test_async_mgmt_namespace_get_properties.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_namespaces_async.test_async_mgmt_namespace_get_properties.yaml
@@ -5,23 +5,23 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$namespaceinfo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$namespaceinfo?api-version=2021-05
response:
body:
- string: https://servicebustesttcenhmsucx.servicebus.windows.net/$namespaceinfo?api-version=2017-04servicebustesttcenhmsucx2020-08-19T23:03:55Zservicebustesttcenhmsucxhttps://servicebustestkjdemkkogk.servicebus.windows.net/$namespaceinfo?api-version=2021-05servicebustestkjdemkkogk2021-10-21T05:19:15Zservicebustestkjdemkkogk2020-08-19T23:02:52.63ZStandard2020-08-19T23:02:52.63ZservicebustesttcenhmsucxMessaging
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">2021-10-21T05:18:14.32ZStandard2021-10-21T05:18:14.32ZservicebustestkjdemkkogkMessaging
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Wed, 19 Aug 2020 23:03:54 GMT
+ date: Thu, 21 Oct 2021 05:19:15 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustesttcenhmsucx.servicebus.windows.net/$namespaceinfo?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$namespaceinfo?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_basic_v2017_04.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_basic_v2017_04.yaml
new file mode 100644
index 000000000000..9335772efadf
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_basic_v2017_04.yaml
@@ -0,0 +1,356 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:19:16Z
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:15 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T05:19:16Z2021-10-21T05:19:16ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:16.73Z2021-10-21T05:19:16.84ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:16 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 201
+ message: Created
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:19:17Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T05:19:16Z2021-10-21T05:19:16ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:16.73Z2021-10-21T05:19:16.84Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:17 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.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/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2021-10-21T05:19:16Z2021-10-21T05:19:16ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:16.73Z2021-10-21T05:19:16.84Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:17 GMT
+ etag: '637703903568400000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 21 Oct 2021 05:19:17 GMT
+ etag: '637703903568400000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:19:18Z
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:18 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/queue_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'QueueDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:f70e5d6a-28bf-44e6-b744-3f893b6fb006_G3, SystemTracker:servicebustestsbname.servicebus.windows.net:queue_can_not_be_created,
+ Timestamp:2021-10-21T05:19:19
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:18 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue_can_not_be_created?api-version=2017-04
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T05:19:19Z2021-10-21T05:19:19ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:19.527Z2021-10-21T05:19:19.577ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:19 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 201
+ message: Created
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:19:20Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T05:19:19Z2021-10-21T05:19:19ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:19.527Z2021-10-21T05:19:19.577Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:20 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.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/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2021-10-21T05:19:19Z2021-10-21T05:19:19ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:19.527Z2021-10-21T05:19:19.577Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:20 GMT
+ etag: '637703903595770000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 21 Oct 2021 05:19:20 GMT
+ etag: '637703903595770000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:19:21Z
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:20 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/queue_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'QueueDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:7c4fad60-72c2-4e89-824b-b249c5cf3f14_G8, SystemTracker:servicebustestsbname.servicebus.windows.net:queue_can_not_be_created,
+ Timestamp:2021-10-21T05:19:21
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:21 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue_can_not_be_created?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_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_by_name.yaml
index 6b4eb5677309..dd4949a8c4b8 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_by_name.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_by_name.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:21Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:22Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:20 GMT
+ date: Thu, 21 Oct 2021 05:19:21 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,74 +34,74 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04eidk2020-09-29T08:32:21Z2020-09-29T08:32:21Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/eidk?api-version=2021-05eidk2021-10-21T05:19:22Z2021-10-21T05:19:22ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:21.71Z2020-09-29T08:32:21.78ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:22.737Z2021-10-21T05:19:22.787ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:21 GMT
+ date: Thu, 21 Oct 2021 05:19:22 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/eidk?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/eidk?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/eidk?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?enrich=false&api-version=2017-04eidk2020-09-29T08:32:21Z2020-09-29T08:32:21Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/eidk?enrich=false&api-version=2021-05eidk2021-10-21T05:19:22Z2021-10-21T05:19:22ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:21.71Z2020-09-29T08:32:21.78Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:22.737Z2021-10-21T05:19:22.787Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:21 GMT
- etag: '637369651417800000'
+ date: Thu, 21 Oct 2021 05:19:22 GMT
+ etag: '637703903627870000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/eidk?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/eidk?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:22 GMT
- etag: '637369651417800000'
+ date: Thu, 21 Oct 2021 05:19:23 GMT
+ etag: '637703903627870000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eidk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/eidk?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_duplicate.yaml
index ce1dff5913df..d9aefbe5d676 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_duplicate.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_duplicate.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:23Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:24Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:22 GMT
+ date: Thu, 21 Oct 2021 05:19:23 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04eriodk2020-09-29T08:32:24Z2020-09-29T08:32:24Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/eriodk?api-version=2021-05eriodk2021-10-21T05:19:24Z2021-10-21T05:19:24ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:24.047Z2020-09-29T08:32:24.077ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:24.627Z2021-10-21T05:19:24.68ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:23 GMT
+ date: Thu, 21 Oct 2021 05:19:24 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/eriodk?api-version=2021-05
- request:
body: '
@@ -67,46 +67,46 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2021-05
response:
body:
string: 409SubCode=40900. Conflict. You're requesting
an operation that isn't allowed in the resource's current state. To know more
- visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:08c6afea-e944-4a70-bfb3-b3d1a611082b_G13,
- SystemTracker:servicebustestsbname.servicebus.windows.net:eriodk, Timestamp:2020-09-29T08:32:24
+ visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:ea187417-ac0e-4c17-825e-90b0883d1ca6_G2,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:eriodk, Timestamp:2021-10-21T05:19:25
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:32:24 GMT
- etag: '637369651440770000'
+ date: Thu, 21 Oct 2021 05:19:24 GMT
+ etag: '637703903646800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 409
message: Conflict
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/eriodk?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/eriodk?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:24 GMT
- etag: '637369651440770000'
+ date: Thu, 21 Oct 2021 05:19:25 GMT
+ etag: '637703903646800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/eriodk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/eriodk?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_with_queue_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_with_queue_description.yaml
index c5d991097eee..abd17d22ff04 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_with_queue_description.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_create_with_queue_description.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestxcs2frcdh7.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-15T16:02:44Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:26Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 15 Apr 2021 16:02:43 GMT
+ date: Thu, 21 Oct 2021 05:19:25 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestxcs2frcdh7.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,31 +34,31 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2021-05
response:
body:
- string: https://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh?api-version=2017-04aghadh2021-04-15T16:02:44Z2021-04-15T16:02:44Zservicebustestxcs2frcdh7https://servicebustestkjdemkkogk.servicebus.windows.net/aghadh?api-version=2021-05aghadh2021-10-21T05:19:26Z2021-10-21T05:19:26ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T16:02:44.943Z2021-04-15T16:02:44.977ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:19:26.623Z2021-10-21T05:19:26.72ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:02:44 GMT
+ date: Thu, 21 Oct 2021 05:19:26 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/aghadh?api-version=2021-05
- request:
body: '
PT13S3072truePT11MtruePT12M14truePT10Mtruetruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh'
+ type="application/xml">PT13S3072truePT11MtruePT12M14truePT10Mtruetruesb://servicebustestkjdemkkogk.servicebus.windows.net/aghadhsb://servicebustestkjdemkkogk.servicebus.windows.net/aghadh'
headers:
Accept:
- application/xml
@@ -67,35 +67,35 @@ interactions:
Content-Type:
- application/atom+xml
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestxcs2frcdh7.servicebus.windows.net%2Faghadh&sig=WnSx7o9h5TDEmP9uRTd6Dh5jREIMWqDE8ZG53lI6NCk%3d&se=1618506165&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Faghadh&sig=AdvDn42GchdSInXh54DvvJ6Chknd9mbKPEScBAJi2DY%3d&se=1634797167&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestxcs2frcdh7.servicebus.windows.net%2Faghadh&sig=WnSx7o9h5TDEmP9uRTd6Dh5jREIMWqDE8ZG53lI6NCk%3d&se=1618506165&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Faghadh&sig=AdvDn42GchdSInXh54DvvJ6Chknd9mbKPEScBAJi2DY%3d&se=1634797167&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2021-05
response:
body:
- string: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?api-version=2017-04dkldf2021-04-15T16:02:46Z2021-04-15T16:02:46Zservicebustestxcs2frcdh7https://servicebustestkjdemkkogk.servicebus.windows.net/dkldf?api-version=2021-05dkldf2021-10-21T05:19:27Z2021-10-21T05:19:27ZservicebustestkjdemkkogkPT13S49152falsetruePT11MtruePT12M14true00falseActive2021-04-15T16:02:46.143Z2021-04-15T16:02:46.31ZfalsePT10MtrueAvailabletruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-10-21T05:19:27.56Z2021-10-21T05:19:27.683ZfalsePT10MtrueAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/aghadhsb://servicebustestkjdemkkogk.servicebus.windows.net/aghadh256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:02:46 GMT
+ date: Thu, 21 Oct 2021 05:19:27 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkldf?api-version=2021-05
- request:
body: '
PT13S3072truePT11M2StruePT12M3S14truePT10M1Struetruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh'
+ type="application/xml">PT13S3072truePT11M2StruePT12M3S14truePT10M1Struetruesb://servicebustestkjdemkkogk.servicebus.windows.net/aghadhsb://servicebustestkjdemkkogk.servicebus.windows.net/aghadh'
headers:
Accept:
- application/xml
@@ -104,150 +104,181 @@ interactions:
Content-Type:
- application/atom+xml
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestxcs2frcdh7.servicebus.windows.net%2Faghadh&sig=oFix%2bVTm63gjawaXkPgmmvvssHMIoNJ5HEyVRBr14mg%3d&se=1618506167&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Faghadh&sig=3YmxM%2fokSIKZqSN01FibydIH6nBzNz3xh6eku0j%2byZg%3d&se=1634797168&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestxcs2frcdh7.servicebus.windows.net%2Faghadh&sig=oFix%2bVTm63gjawaXkPgmmvvssHMIoNJ5HEyVRBr14mg%3d&se=1618506167&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Faghadh&sig=3YmxM%2fokSIKZqSN01FibydIH6nBzNz3xh6eku0j%2byZg%3d&se=1634797168&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05
response:
body:
- string: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?api-version=2017-04vjiqjx2021-04-15T16:02:47Z2021-04-15T16:02:47Zservicebustestxcs2frcdh7https://servicebustestkjdemkkogk.servicebus.windows.net/vjiqjx?api-version=2021-05vjiqjx2021-10-21T05:19:28Z2021-10-21T05:19:28ZservicebustestkjdemkkogkPT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-04-15T16:02:47.267Z2021-04-15T16:02:47.55ZfalsePT10M1StrueAvailabletruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:19:28.45Z2021-10-21T05:19:28.56ZfalsePT10M1StrueAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/aghadhsb://servicebustestkjdemkkogk.servicebus.windows.net/aghadh256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:02:47 GMT
+ date: Thu, 21 Oct 2021 05:19:28 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/vjiqjx?api-version=2021-05
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/clpqza?api-version=2021-05
+ response:
+ body:
+ string: 400SubCode=40000. Bad Request. To know more
+ visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:25ba2d0a-0ad9-425c-8527-bbd013e471e9_G7,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:clpqza, Timestamp:2021-10-21T05:19:29
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:19:28 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/clpqza?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04dkldf2021-04-15T16:02:46Z2021-04-15T16:02:46Zservicebustestxcs2frcdh7https://servicebustestkjdemkkogk.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05dkldf2021-10-21T05:19:27Z2021-10-21T05:19:27ZservicebustestkjdemkkogkPT13S49152falsetruePT11MtruePT12M14true00falseActive2021-04-15T16:02:46.143Z2021-04-15T16:02:46.31Z0001-01-01T00:00:00Zfalse00000PT10MtrueAvailabletruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-10-21T05:19:27.56Z2021-10-21T05:19:27.683Z0001-01-01T00:00:00Zfalse00000PT10MtrueAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/aghadhsb://servicebustestkjdemkkogk.servicebus.windows.net/aghadh256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:02:47 GMT
- etag: '637540993663100000'
+ date: Thu, 21 Oct 2021 05:19:28 GMT
+ etag: '637703903676830000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?enrich=false&api-version=2017-04vjiqjx2021-04-15T16:02:47Z2021-04-15T16:02:47Zservicebustestxcs2frcdh7https://servicebustestkjdemkkogk.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05vjiqjx2021-10-21T05:19:28Z2021-10-21T05:19:28ZservicebustestkjdemkkogkPT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-04-15T16:02:47.267Z2021-04-15T16:02:47.55Z0001-01-01T00:00:00Zfalse00000PT10M1StrueAvailabletruesb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadhsb://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:19:28.45Z2021-10-21T05:19:28.56Z0001-01-01T00:00:00Zfalse00000PT10M1StrueAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/aghadhsb://servicebustestkjdemkkogk.servicebus.windows.net/aghadh256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:02:47 GMT
- etag: '637540993675500000'
+ date: Thu, 21 Oct 2021 05:19:28 GMT
+ etag: '637703903685600000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 16:02:48 GMT
- etag: '637540993663100000'
+ date: Thu, 21 Oct 2021 05:19:29 GMT
+ etag: '637703903676830000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestxcs2frcdh7.servicebus.windows.net/dkldf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkldf?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 16:02:49 GMT
- etag: '637540993675500000'
+ date: Thu, 21 Oct 2021 05:19:29 GMT
+ etag: '637703903685600000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestxcs2frcdh7.servicebus.windows.net/vjiqjx?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/vjiqjx?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 16:02:50 GMT
- etag: '637540993649770000'
+ date: Thu, 21 Oct 2021 05:19:30 GMT
+ etag: '637703903667200000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestxcs2frcdh7.servicebus.windows.net/aghadh?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/aghadh?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_basic.yaml
index 810106f4049c..5f15fe1c50dc 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_basic.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:29Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:31Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:28 GMT
+ date: Thu, 21 Oct 2021 05:19:31 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,54 +34,54 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:29Z2020-09-29T08:32:29Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:32Z2021-10-21T05:19:32ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:32.157Z2021-10-21T05:19:32.227ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:29 GMT
+ date: Thu, 21 Oct 2021 05:19:32 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:30Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:29Z2020-09-29T08:32:29Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:33Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:32Z2021-10-21T05:19:32ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:32.157Z2021-10-21T05:19:32.227Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:29 GMT
+ date: Thu, 21 Oct 2021 05:19:32 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -95,152 +95,152 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:19:33Z2021-10-21T05:19:33ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:31.363Z2020-09-29T08:32:31.41ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:33.537Z2021-10-21T05:19:33.77ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:30 GMT
+ date: Thu, 21 Oct 2021 05:19:33 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:32Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:29Z2020-09-29T08:32:29Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:34Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:32Z2021-10-21T05:19:32ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:29.727Z2020-09-29T08:32:29.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:32.157Z2021-10-21T05:19:32.227Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:19:33Z2021-10-21T05:19:33ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:31.363Z2020-09-29T08:32:31.41Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:33.537Z2021-10-21T05:19:33.77Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:31 GMT
+ date: Thu, 21 Oct 2021 05:19:33 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:32 GMT
- etag: '637369651497530000'
+ date: Thu, 21 Oct 2021 05:19:34 GMT
+ etag: '637703903722270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:33Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:32:31Z2020-09-29T08:32:31Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:35Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:19:33Z2021-10-21T05:19:33ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:31.363Z2020-09-29T08:32:31.41Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:33.537Z2021-10-21T05:19:33.77Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:32 GMT
+ date: Thu, 21 Oct 2021 05:19:34 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:33 GMT
- etag: '637369651514100000'
+ date: Thu, 21 Oct 2021 05:19:35 GMT
+ etag: '637703903737700000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:34Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:36Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:33 GMT
+ date: Thu, 21 Oct 2021 05:19:35 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_negtive.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_negtive.yaml
index baf647215210..d163dd2cb14b 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_negtive.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_negtive.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:35Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:37Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:34 GMT
+ date: Thu, 21 Oct 2021 05:19:36 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,144 +34,144 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:35Z2020-09-29T08:32:35Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:37Z2021-10-21T05:19:37ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:35.837Z2020-09-29T08:32:35.867ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:37.47Z2021-10-21T05:19:37.553ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:35 GMT
+ date: Thu, 21 Oct 2021 05:19:37 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:36Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:32:35Z2020-09-29T08:32:35Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:38Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:37Z2021-10-21T05:19:37ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:35.837Z2020-09-29T08:32:35.867Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:37.47Z2021-10-21T05:19:37.553Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:36 GMT
+ date: Thu, 21 Oct 2021 05:19:38 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:36 GMT
- etag: '637369651558670000'
+ date: Thu, 21 Oct 2021 05:19:38 GMT
+ etag: '637703903775530000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:38Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:39Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:37 GMT
+ date: Thu, 21 Oct 2021 05:19:39 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: 404No service is hosted at the specified
- address. TrackingId:274f5eea-9b59-42c9-969f-d5c670dd776d_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue,
- Timestamp:2020-09-29T08:32:38
+ address. TrackingId:09747ac3-3365-4f22-bf59-c4172ae6343d_G9, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue,
+ Timestamp:2021-10-21T05:19:39
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:32:37 GMT
+ date: Thu, 21 Oct 2021 05:19:39 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 404
message: Not Found
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2021-05
response:
body:
string: 404No service is hosted at the specified
- address. TrackingId:30371188-eeff-4660-9047-2cdb1e571a50_G5, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue,
- Timestamp:2020-09-29T08:32:39
+ address. TrackingId:e3faf94c-4e5a-490d-aa59-b729aef6ae48_G9, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue,
+ Timestamp:2021-10-21T05:19:40
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:32:38 GMT
+ date: Thu, 21 Oct 2021 05:19:40 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 404
message: Not Found
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/non_existing_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/non_existing_queue?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_one_and_check_not_existing.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_one_and_check_not_existing.yaml
index de6db8711b87..fdb215b7fc6b 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_one_and_check_not_existing.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_delete_one_and_check_not_existing.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:40Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:40Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:39 GMT
+ date: Thu, 21 Oct 2021 05:19:40 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04queue02020-09-29T08:32:40Z2020-09-29T08:32:40Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue0?api-version=2021-05queue02021-10-21T05:19:41Z2021-10-21T05:19:41ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:40.46Z2020-09-29T08:32:40.487ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:41.113Z2021-10-21T05:19:41.187ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:40 GMT
+ date: Thu, 21 Oct 2021 05:19:41 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue0?api-version=2021-05
- request:
body: '
@@ -67,26 +67,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:32:41Z2020-09-29T08:32:41Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue1?api-version=2021-05queue12021-10-21T05:19:42Z2021-10-21T05:19:42ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:41.367Z2020-09-29T08:32:41.4ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:42.017Z2021-10-21T05:19:42.083ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:41 GMT
+ date: Thu, 21 Oct 2021 05:19:42 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue1?api-version=2021-05
- request:
body: '
@@ -100,26 +100,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:32:42Z2020-09-29T08:32:42Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue2?api-version=2021-05queue22021-10-21T05:19:42Z2021-10-21T05:19:43ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:42.31Z2020-09-29T08:32:42.387ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:42.92Z2021-10-21T05:19:43.127ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:42 GMT
+ date: Thu, 21 Oct 2021 05:19:43 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue2?api-version=2021-05
- request:
body: '
@@ -133,26 +133,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:32:43Z2020-09-29T08:32:43Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue3?api-version=2021-05queue32021-10-21T05:19:44Z2021-10-21T05:19:44ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:43.293Z2020-09-29T08:32:43.323ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:44.06Z2021-10-21T05:19:44.11ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:43 GMT
+ date: Thu, 21 Oct 2021 05:19:44 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue3?api-version=2021-05
- request:
body: '
@@ -166,26 +166,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:32:44Z2020-09-29T08:32:44Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue4?api-version=2021-05queue42021-10-21T05:19:44Z2021-10-21T05:19:45ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:44.133Z2020-09-29T08:32:44.163ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:44.96Z2021-10-21T05:19:45.087ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:44 GMT
+ date: Thu, 21 Oct 2021 05:19:45 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue4?api-version=2021-05
- request:
body: '
@@ -199,26 +199,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue5?api-version=2021-05queue52021-10-21T05:19:45Z2021-10-21T05:19:45ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.087Z2020-09-29T08:32:45.12ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:45.853Z2021-10-21T05:19:45.893ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:45 GMT
+ date: Thu, 21 Oct 2021 05:19:46 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue5?api-version=2021-05
- request:
body: '
@@ -232,26 +232,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue6?api-version=2021-05queue62021-10-21T05:19:46Z2021-10-21T05:19:46ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.957Z2020-09-29T08:32:45.987ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:46.733Z2021-10-21T05:19:46.783ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:46 GMT
+ date: Thu, 21 Oct 2021 05:19:46 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue6?api-version=2021-05
- request:
body: '
@@ -265,26 +265,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:32:47Z2020-09-29T08:32:47Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue7?api-version=2021-05queue72021-10-21T05:19:47Z2021-10-21T05:19:47ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:47.053Z2020-09-29T08:32:47.123ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:47.653Z2021-10-21T05:19:47.707ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:47 GMT
+ date: Thu, 21 Oct 2021 05:19:47 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue7?api-version=2021-05
- request:
body: '
@@ -298,26 +298,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:32:48Z2020-09-29T08:32:48Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue8?api-version=2021-05queue82021-10-21T05:19:48Z2021-10-21T05:19:48ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:48.303Z2020-09-29T08:32:48.397ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:48.607Z2021-10-21T05:19:48.643ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:48 GMT
+ date: Thu, 21 Oct 2021 05:19:48 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue8?api-version=2021-05
- request:
body: '
@@ -331,342 +331,342 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:32:49Z2020-09-29T08:32:49Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue9?api-version=2021-05queue92021-10-21T05:19:49Z2021-10-21T05:19:49ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:49.18Z2020-09-29T08:32:49.233ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:49.473Z2021-10-21T05:19:49.507ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:49 GMT
+ date: Thu, 21 Oct 2021 05:19:49 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue9?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:50 GMT
- etag: '637369651604870000'
+ date: Thu, 21 Oct 2021 05:19:50 GMT
+ etag: '637703903811870000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue0?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:51Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:32:41Z2020-09-29T08:32:41Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:50Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/queue1?api-version=2021-05queue12021-10-21T05:19:42Z2021-10-21T05:19:42ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:41.367Z2020-09-29T08:32:41.4Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:32:42Z2020-09-29T08:32:42Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:42.0250261Z2021-10-21T05:19:42.0250261Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/queue2?api-version=2021-05queue22021-10-21T05:19:42Z2021-10-21T05:19:43ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:42.31Z2020-09-29T08:32:42.387Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:32:43Z2020-09-29T08:32:43Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:42.92Z2021-10-21T05:19:43.127Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/queue3?api-version=2021-05queue32021-10-21T05:19:44Z2021-10-21T05:19:44ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:43.2970843Z2020-09-29T08:32:43.2970843Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:32:44Z2020-09-29T08:32:44Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:44.06Z2021-10-21T05:19:44.11Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/queue4?api-version=2021-05queue42021-10-21T05:19:44Z2021-10-21T05:19:45ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:44.1411433Z2020-09-29T08:32:44.1411433Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:44.9648137Z2021-10-21T05:19:44.9648137Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/queue5?api-version=2021-05queue52021-10-21T05:19:45Z2021-10-21T05:19:45ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.087Z2020-09-29T08:32:45.12Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:32:45Z2020-09-29T08:32:45Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:45.853Z2021-10-21T05:19:45.893Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/queue6?api-version=2021-05queue62021-10-21T05:19:46Z2021-10-21T05:19:46ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:45.957Z2020-09-29T08:32:45.987Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:32:47Z2020-09-29T08:32:47Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:46.7374422Z2021-10-21T05:19:46.7374422Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/queue7?api-version=2021-05queue72021-10-21T05:19:47Z2021-10-21T05:19:47ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:47.053Z2020-09-29T08:32:47.123Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:32:48Z2020-09-29T08:32:48Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:47.653Z2021-10-21T05:19:47.707Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/queue8?api-version=2021-05queue82021-10-21T05:19:48Z2021-10-21T05:19:48ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:48.303Z2020-09-29T08:32:48.397Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:32:49Z2020-09-29T08:32:49Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:48.607Z2021-10-21T05:19:48.643Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/queue9?api-version=2021-05queue92021-10-21T05:19:49Z2021-10-21T05:19:49ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:32:49.18Z2020-09-29T08:32:49.233Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:49.473Z2021-10-21T05:19:49.507Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:50 GMT
+ date: Thu, 21 Oct 2021 05:19:50 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:51 GMT
- etag: '637369651614000000'
+ date: Thu, 21 Oct 2021 05:19:51 GMT
+ etag: '637703903820830000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue1?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:51 GMT
- etag: '637369651623870000'
+ date: Thu, 21 Oct 2021 05:19:51 GMT
+ etag: '637703903831270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue2?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:52 GMT
- etag: '637369651633230000'
+ date: Thu, 21 Oct 2021 05:19:52 GMT
+ etag: '637703903841100000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue3?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:53 GMT
- etag: '637369651641630000'
+ date: Thu, 21 Oct 2021 05:19:52 GMT
+ etag: '637703903850870000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue4?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:53 GMT
- etag: '637369651651200000'
+ date: Thu, 21 Oct 2021 05:19:53 GMT
+ etag: '637703903858930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue5?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:54 GMT
- etag: '637369651659870000'
+ date: Thu, 21 Oct 2021 05:19:53 GMT
+ etag: '637703903867830000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue6?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:54 GMT
- etag: '637369651671230000'
+ date: Thu, 21 Oct 2021 05:19:54 GMT
+ etag: '637703903877070000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue7?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:55 GMT
- etag: '637369651683970000'
+ date: Thu, 21 Oct 2021 05:19:54 GMT
+ etag: '637703903886430000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue8?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:32:56 GMT
- etag: '637369651692330000'
+ date: Thu, 21 Oct 2021 05:19:55 GMT
+ etag: '637703903895070000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/queue9?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:32:56Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:55Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:32:56 GMT
+ date: Thu, 21 Oct 2021 05:19:55 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_basic.yaml
index aaac23e10f1a..38b1640dedef 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_basic.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:00Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:56Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:00 GMT
+ date: Thu, 21 Oct 2021 05:19:55 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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,74 +34,74 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:01Z2020-08-17T08:04:01Zservicebustest32ip2wgoaahttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:56Z2021-10-21T05:19:56ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:01.617Z2020-08-17T08:04:01.647ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:56.617Z2021-10-21T05:19:56.657ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:01 GMT
+ date: Thu, 21 Oct 2021 05:19:56 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://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2020-08-17T08:04:01Z2020-08-17T08:04:01Zservicebustest32ip2wgoaahttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05test_queue2021-10-21T05:19:56Z2021-10-21T05:19:56ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:01.617Z2020-08-17T08:04:01.647Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:56.617Z2021-10-21T05:19:56.657Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:01 GMT
- etag: '637332482416470000'
+ date: Thu, 21 Oct 2021 05:19:56 GMT
+ etag: '637703903966570000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 17 Aug 2020 08:04:02 GMT
- etag: '637332482416470000'
+ date: Thu, 21 Oct 2021 05:19:57 GMT
+ etag: '637703903966570000'
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://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_negative.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_negative.yaml
index 7102a991620a..25eb7b4b6f81 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_negative.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_get_runtime_properties_negative.yaml
@@ -5,23 +5,23 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2021-05
response:
body:
string: Publicly
Listed ServicesThis is the list of publicly-listed
- services currently available.uuid:e4e29a83-4283-42c2-b898-651ab270db36;id=334962020-08-17T08:04:04ZService
+ services currently available.uuid:1f9fd359-4818-4e6a-919f-e14a8506e396;id=194412021-10-21T05:19:58ZService
Bus 1.1
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:04 GMT
+ date: Thu, 21 Oct 2021 05:19:57 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustest32ip2wgoaa.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_basic.yaml
index 175c98ab2025..3a1cdc603237 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_basic.yaml
@@ -5,44 +5,44 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:01Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:58Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:01 GMT
+ date: Thu, 21 Oct 2021 05:19:58 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:02Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:59Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:02 GMT
+ date: Thu, 21 Oct 2021 05:19:59 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -56,120 +56,120 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:02Z2020-09-29T08:33:02Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:59Z2021-10-21T05:19:59ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:02.85Z2020-09-29T08:33:02.88ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:59.81Z2021-10-21T05:19:59.863ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:03 GMT
+ date: Thu, 21 Oct 2021 05:20:00 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:03Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:02Z2020-09-29T08:33:02Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:00Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:59Z2021-10-21T05:19:59ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:02.85Z2020-09-29T08:33:02.88Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:59.81Z2021-10-21T05:19:59.863Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:03 GMT
+ date: Thu, 21 Oct 2021 05:20:00 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:04 GMT
- etag: '637369651828800000'
+ date: Thu, 21 Oct 2021 05:20:01 GMT
+ etag: '637703903998630000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:04Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:01Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:04 GMT
+ date: Thu, 21 Oct 2021 05:20:01 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:05Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:02Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:04 GMT
+ date: Thu, 21 Oct 2021 05:20:01 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -183,96 +183,96 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:05Z2020-09-29T08:33:05Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:20:02Z2021-10-21T05:20:02ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:05.77Z2020-09-29T08:33:05.8ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:20:02.667Z2021-10-21T05:20:02.69ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:05 GMT
+ date: Thu, 21 Oct 2021 05:20:02 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:06Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:33:05Z2020-09-29T08:33:05Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:03Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:20:02Z2021-10-21T05:20:02ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:05.77Z2020-09-29T08:33:05.8Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:20:02.667Z2021-10-21T05:20:02.69Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:05 GMT
+ date: Thu, 21 Oct 2021 05:20:03 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:06 GMT
- etag: '637369651858000000'
+ date: Thu, 21 Oct 2021 05:20:03 GMT
+ etag: '637703904026900000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:07Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:04Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:07 GMT
+ date: Thu, 21 Oct 2021 05:20:04 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_properties_basic.yaml
index fee1c62fbae2..958d81c25429 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_properties_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_runtime_properties_basic.yaml
@@ -5,66 +5,66 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:12Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:05Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:11 GMT
+ date: Thu, 21 Oct 2021 05:20: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:12Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:05Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:12 GMT
+ date: Thu, 21 Oct 2021 05:20: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:13Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:06Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:12 GMT
+ date: Thu, 21 Oct 2021 05:20: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -78,124 +78,124 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:13Z2020-08-17T08:04:13Zservicebustest32ip2wgoaahttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:20:06Z2021-10-21T05:20:06ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:13.727Z2020-08-17T08:04:13.753ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:20:06.49Z2021-10-21T05:20:06.567ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:13 GMT
+ date: Thu, 21 Oct 2021 05:20:07 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://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:14Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:13Z2020-08-17T08:04:13Zservicebustest32ip2wgoaaQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:07Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:20:06Z2021-10-21T05:20:06ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:13.727Z2020-08-17T08:04:13.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:20:06.49Z2021-10-21T05:20:06.567Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:14 GMT
+ date: Thu, 21 Oct 2021 05:20: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:15Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:04:13Z2020-08-17T08:04:13Zservicebustest32ip2wgoaaQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:08Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:20:06Z2021-10-21T05:20:06ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:04:13.727Z2020-08-17T08:04:13.753Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:20:06.49Z2021-10-21T05:20:06.567Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:14 GMT
+ date: Thu, 21 Oct 2021 05:20: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 17 Aug 2020 08:04:15 GMT
- etag: '637332482537530000'
+ date: Thu, 21 Oct 2021 05:20:08 GMT
+ etag: '637703904065670000'
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://servicebustestkjdemkkogk.servicebus.windows.net/test_queue?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:04:16Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:08Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:04:15 GMT
+ date: Thu, 21 Oct 2021 05:20:08 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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_negative_credential.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_negative_credential.yaml
index 408ef8577f83..f3526e64367b 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_negative_credential.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_negative_credential.yaml
@@ -5,46 +5,46 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: 401claim is empty or token is invalid. TrackingId:bf0e040b-8d63-4468-9cc8-421273cd3c59_G4,
+ string: 401claim is empty or token is invalid. TrackingId:521db8a3-19e3-4cca-a399-03d036526ac7_G2,
SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues,
- Timestamp:2020-09-29T08:33:13
+ Timestamp:2021-10-21T05:20:09
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:33:12 GMT
+ date: Thu, 21 Oct 2021 05:20:08 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 401
message: Unauthorized
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: 401claim is empty or token is invalid. TrackingId:ce4339ff-254a-4730-b12a-af0a240533c3_G1,
+ string: 401claim is empty or token is invalid. TrackingId:eb5ecd4a-e351-47ff-addb-b7f7390470ca_G10,
SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues,
- Timestamp:2020-09-29T08:33:13
+ Timestamp:2021-10-21T05:20:09
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:33:13 GMT
+ date: Thu, 21 Oct 2021 05:20:08 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 401
message: Unauthorized
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_special_chars.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_special_chars.yaml
index c1f11bc641ea..472046f5f225 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_special_chars.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_list_with_special_chars.yaml
@@ -5,44 +5,44 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:14Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:10Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:14 GMT
+ date: Thu, 21 Oct 2021 05:20:09 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:15Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:10Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:14 GMT
+ date: Thu, 21 Oct 2021 05:20:09 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -56,96 +56,96 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:33:15Z2020-09-29T08:33:15Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:20:10Z2021-10-21T05:20:11ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:15.657Z2020-09-29T08:33:15.693ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:20:10.963Z2021-10-21T05:20:11.03ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:15 GMT
+ date: Thu, 21 Oct 2021 05:20:10 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:16Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:33:15Z2020-09-29T08:33:15Zservicebustestrm7a5oi5hkQueueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:11Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:20:10Z2021-10-21T05:20:11ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:15.657Z2020-09-29T08:33:15.693Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:20:10.963Z2021-10-21T05:20:11.03Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:16 GMT
+ date: Thu, 21 Oct 2021 05:20:11 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:17 GMT
- etag: '637369651956930000'
+ date: Thu, 21 Oct 2021 05:20:11 GMT
+ etag: '637703904110300000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:17Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:12Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:17 GMT
+ date: Thu, 21 Oct 2021 05:20:12 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_premium_create_with_queue_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_premium_create_with_queue_description.yaml
new file mode 100644
index 000000000000..7e44e2192c01
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_premium_create_with_queue_description.yaml
@@ -0,0 +1,329 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
+ response:
+ body:
+ string: Queueshttps://servicebustestruiyxx3yqv.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:47Z
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:21:46 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
+- request:
+ body: '
+
+ PT13S3072truePT11MtruePT12M14truePT10M12345'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '790'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkldf?api-version=2021-05dkldf2021-10-21T05:21:48Z2021-10-21T05:21:48Zservicebustestruiyxx3yqvPT13S3072falsetruePT11MtruePT12M14true00falseActive2021-10-21T05:21:48.193Z2021-10-21T05:21:48.977ZtruePT10MfalseAvailablefalse12345
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:21:48 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 201
+ message: Created
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkldf?api-version=2021-05
+- request:
+ body: '
+
+ PT13S3072truePT11M2StruePT12M3S14truePT10M1S'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '736'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/vjiqjx?api-version=2021-05vjiqjx2021-10-21T05:21:49Z2021-10-21T05:21:49Zservicebustestruiyxx3yqvPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:49.723Z2021-10-21T05:21:49.8ZtruePT10M1SfalseAvailablefalse1024
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:21:50 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 201
+ message: Created
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/vjiqjx?api-version=2021-05
+- request:
+ body: '
+
+ 1023'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05
+ response:
+ body:
+ string: '400SubCode=40000. The property value for
+ ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace
+ ''servicebustestsbname'' is using ''Premium'' tier.
+
+ Parameter name: MaxMessageSizeInKilobytes
+
+ Actual value was 1023. TrackingId:0fd82403-1958-4856-8223-aa468255e064_G12,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-10-21T05:21:50'
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:21:50 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/rekocd?api-version=2021-05
+- request:
+ body: '
+
+ 102401'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '326'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05
+ response:
+ body:
+ string: '400SubCode=40000. The property value for
+ ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace
+ ''servicebustestsbname'' is using ''Premium'' tier.
+
+ Parameter name: MaxMessageSizeInKilobytes
+
+ Actual value was 102401. TrackingId:5e061b5e-b6b0-4883-8edb-977414f906e7_G12,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-10-21T05:21:51'
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:21:50 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/rekocd?api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05dkldf2021-10-21T05:21:48Z2021-10-21T05:21:48Zservicebustestruiyxx3yqvPT13S3072falsetruePT11MtruePT12M14true00falseActive2021-10-21T05:21:48.3585622Z2021-10-21T05:21:48.4210578Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailablefalse12345
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:21:50 GMT
+ etag: '637703905089770000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkldf?enrich=false&api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05vjiqjx2021-10-21T05:21:49Z2021-10-21T05:21:49Zservicebustestruiyxx3yqvPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:49.723Z2021-10-21T05:21:49.8Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse1024
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:21:50 GMT
+ etag: '637703905098000000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05
+- request:
+ body: '
+
+ PT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:49.723Z2021-10-21T05:21:49.800Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailablefalse54321'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '1743'
+ Content-Type:
+ - application/atom+xml
+ If-Match:
+ - '*'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/vjiqjx?api-version=2021-05vjiqjx2021-10-21T05:21:51Zservicebustestruiyxx3yqvPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:49.723Z2021-10-21T05:21:49.8Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse54321
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:21:51 GMT
+ etag: '637703905098000000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/vjiqjx?api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05vjiqjx2021-10-21T05:21:49Z2021-10-21T05:21:51Zservicebustestruiyxx3yqvPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:49.723Z2021-10-21T05:21:51.22Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse54321
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:21:51 GMT
+ etag: '637703905112200000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/vjiqjx?enrich=false&api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/dkldf?api-version=2021-05
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 21 Oct 2021 05:21:51 GMT
+ etag: '637703905089770000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkldf?api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/vjiqjx?api-version=2021-05
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 21 Oct 2021 05:21:52 GMT
+ etag: '637703905112200000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/vjiqjx?api-version=2021-05
+version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_invalid.yaml
index 05b8eea0024c..e8f6cc177e0f 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_invalid.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_invalid.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:18Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:53Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:18 GMT
+ date: Thu, 21 Oct 2021 05:21:52 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,116 +34,116 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04vbmfm2020-09-29T08:33:19Z2020-09-29T08:33:19Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/vbmfm?api-version=2021-05vbmfm2021-10-21T05:21:53Z2021-10-21T05:21:53ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:21:53.887Z2021-10-21T05:21:53.927ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:19 GMT
+ date: Thu, 21 Oct 2021 05:21:53 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/vbmfm?api-version=2021-05
- request:
body: '
PT1M1024falsetrueP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:53.887Z2021-10-21T05:21:53.927ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1264'
+ - '1322'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2021-05
response:
body:
string: 400SubCode=40000. The value for the RequiresSession
property of an existing Queue cannot be changed. To know more visit https://aka.ms/sbResourceMgrExceptions.
- . TrackingId:75d6d8e8-691c-4947-a92a-9fd571da1825_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm,
- Timestamp:2020-09-29T08:33:19
+ . TrackingId:29da31f9-84d9-4622-a43b-56378369c5c7_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm,
+ Timestamp:2021-10-21T05:21:54
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:33:19 GMT
- etag: '637369651991870000'
+ date: Thu, 21 Oct 2021 05:21:53 GMT
+ etag: '637703905139270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 400
message: Bad Request
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/vbmfm?api-version=2021-05
- request:
body: '
PT1M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:53.887Z2021-10-21T05:21:53.927ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1265'
+ - '1323'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkfrgx?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkfrgx?api-version=2021-05
response:
body:
string: 404SubCode=40400. Not Found. The Operation
doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions.
- . TrackingId:217e54d3-cce5-43a5-8551-93d74a12423d_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:dkfrgx,
- Timestamp:2020-09-29T08:33:20
+ . TrackingId:fd6e32ee-9036-4ed1-a376-9dd1276492dd_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:dkfrgx,
+ Timestamp:2021-10-21T05:21:55
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:33:20 GMT
+ date: Thu, 21 Oct 2021 05:21:54 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 404
message: Not Found
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dkfrgx?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkfrgx?api-version=2021-05
- request:
body: '
P25D1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2020-09-29T08:33:19.117Z2020-09-29T08:33:19.187ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:53.887Z2021-10-21T05:21:53.927ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1265'
+ - '1323'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2021-05
response:
body:
string: '400SubCode=40000. The supplied lock time
@@ -152,39 +152,39 @@ interactions:
Parameter name: LockDuration
- Actual value was 25.00:00:00. TrackingId:c2f92936-a8b8-4678-96ec-7201b03856cd_G15,
- SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, Timestamp:2020-09-29T08:33:20'
+ Actual value was 25.00:00:00. TrackingId:3b39bf7d-7335-4fb5-bfef-566fb12963dc_G6,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:vbmfm, Timestamp:2021-10-21T05:21:55'
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:33:20 GMT
- etag: '637369651991870000'
+ date: Thu, 21 Oct 2021 05:21:54 GMT
+ etag: '637703905139270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 400
message: Bad Request
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/vbmfm?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vbmfm?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:21 GMT
- etag: '637369651991870000'
+ date: Thu, 21 Oct 2021 05:21:55 GMT
+ etag: '637703905139270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/vbmfm?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/vbmfm?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_success.yaml
index 871653e6bc3a..c850d8f11dcb 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_async_mgmt_queue_update_success.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestfqnwzqws3j.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-22T14:22:02Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:56Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:01 GMT
+ date: Thu, 21 Oct 2021 05:21:56 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:03Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-10-21T05:21:56Z2021-10-21T05:21:57ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:03.523ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:57ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:03 GMT
+ date: Thu, 21 Oct 2021 05:21:56 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05
- request:
body: '
@@ -67,480 +67,480 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkfjaks?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkfjaks?api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks?api-version=2017-04dkfjaks2021-04-22T14:22:04Z2021-04-22T14:22:04Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/dkfjaks?api-version=2021-05dkfjaks2021-10-21T05:21:57Z2021-10-21T05:21:57ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:22:04.643Z2021-04-22T14:22:04.68ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:57.873Z2021-10-21T05:21:57.9ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:04 GMT
+ date: Thu, 21 Oct 2021 05:21:57 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkfjaks?api-version=2021-05
- request:
body: '
PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:03.523ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:56.967Z2021-10-21T05:21:57.000ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1265'
+ - '1323'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:05Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-10-21T05:21:58ZservicebustestkjdemkkogkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:03.523ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:57ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:04 GMT
- etag: '637546981235230000'
+ date: Thu, 21 Oct 2021 05:21:57 GMT
+ etag: '637703905170000000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:05Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-10-21T05:21:56Z2021-10-21T05:21:58ZservicebustestkjdemkkogkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.357Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:58.343Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:04 GMT
- etag: '637546981253570000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905183430000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
- request:
body: '
PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.357Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjakssb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks'
+ />Active2021-10-21T05:21:56.967Z2021-10-21T05:21:58.343Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestkjdemkkogk.servicebus.windows.net/dkfjakssb://servicebustestkjdemkkogk.servicebus.windows.net/dkfjaks256'
headers:
Accept:
- application/xml
Content-Length:
- - '1924'
+ - '1982'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fdkfjaks&sig=9eCE6EFfh7DCGTxM2%2b%2fQW8QH9QvIaswfeuAwb5zuC7A%3d&se=1619104925&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fdkfjaks&sig=bM%2b4UvG5iC6uRhYymI8nyZzyk5RcXkaalilV2D2Zqqo%3d&se=1634797318&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fdkfjaks&sig=9eCE6EFfh7DCGTxM2%2b%2fQW8QH9QvIaswfeuAwb5zuC7A%3d&se=1619104925&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fdkfjaks&sig=bM%2b4UvG5iC6uRhYymI8nyZzyk5RcXkaalilV2D2Zqqo%3d&se=1634797318&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:05Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-10-21T05:21:58ZservicebustestkjdemkkogkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.357Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjakssb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:58.343Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestkjdemkkogk.servicebus.windows.net/dkfjakssb://servicebustestkjdemkkogk.servicebus.windows.net/dkfjaks256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:04 GMT
- etag: '637546981253570000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905183430000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:05Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-10-21T05:21:56Z2021-10-21T05:21:58ZservicebustestkjdemkkogkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.87Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjakssb://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:58.567Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestkjdemkkogk.servicebus.windows.net/dkfjakssb://servicebustestkjdemkkogk.servicebus.windows.net/dkfjaks256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:05 GMT
- etag: '637546981258700000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905185670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
- request:
body: '
PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.870Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:56.967Z2021-10-21T05:21:58.567Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1718'
+ - '1776'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:06Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-10-21T05:21:58ZservicebustestkjdemkkogkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:05.87Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:58.567Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:05 GMT
- etag: '637546981258700000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905185670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:06Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-10-21T05:21:56Z2021-10-21T05:21:58ZservicebustestkjdemkkogkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.417Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:58.78Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:05 GMT
- etag: '637546981264170000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905187800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
- request:
body: '
PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.417Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj'
+ />Active2021-10-21T05:21:56.967Z2021-10-21T05:21:58.780Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfjsb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj256'
headers:
Accept:
- application/xml
Content-Length:
- - '1883'
+ - '1941'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fewuidfj&sig=d6X10PaSTT9Rj98yJXEjUPA7tr5zYppaLVFDLPJJ97U%3d&se=1619104927&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fewuidfj&sig=QnHw0tpL6Ril7Bm%2biaBl17pSNUgoVKwrgUuGJuioa60%3d&se=1634797319&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fewuidfj&sig=d6X10PaSTT9Rj98yJXEjUPA7tr5zYppaLVFDLPJJ97U%3d&se=1619104927&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fewuidfj&sig=QnHw0tpL6Ril7Bm%2biaBl17pSNUgoVKwrgUuGJuioa60%3d&se=1634797319&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:06Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-10-21T05:21:59ZservicebustestkjdemkkogkPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.417Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:58.78Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfjsb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:06 GMT
- etag: '637546981264170000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905187800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:06Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-10-21T05:21:56Z2021-10-21T05:21:59ZservicebustestkjdemkkogkPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.97Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:59.01Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfjsb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:06 GMT
- etag: '637546981269700000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905190100000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
- request:
body: '
PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.970Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj'
+ />Active2021-10-21T05:21:56.967Z2021-10-21T05:21:59.010Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfjsb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj256'
headers:
Accept:
- application/xml
Content-Length:
- - '1889'
+ - '1947'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fewuidfj&sig=d6X10PaSTT9Rj98yJXEjUPA7tr5zYppaLVFDLPJJ97U%3d&se=1619104927&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fewuidfj&sig=QnHw0tpL6Ril7Bm%2biaBl17pSNUgoVKwrgUuGJuioa60%3d&se=1634797319&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestfqnwzqws3j.servicebus.windows.net%2Fewuidfj&sig=d6X10PaSTT9Rj98yJXEjUPA7tr5zYppaLVFDLPJJ97U%3d&se=1619104927&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fewuidfj&sig=QnHw0tpL6Ril7Bm%2biaBl17pSNUgoVKwrgUuGJuioa60%3d&se=1634797319&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:07Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-10-21T05:21:59ZservicebustestkjdemkkogkPT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:06.97Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:59.01Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfjsb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:06 GMT
- etag: '637546981269700000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905190100000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:07Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-10-21T05:21:56Z2021-10-21T05:21:59ZservicebustestkjdemkkogkPT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:07.697Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfjsb://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:59.233Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfjsb://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:06 GMT
- etag: '637546981276970000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905192330000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
- request:
body: '
PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:07.697Z0001-01-01T00:00:00.000Ztrue00000PT15MfalseAvailablefalse'
+ />Active2021-10-21T05:21:56.967Z2021-10-21T05:21:59.233Z0001-01-01T00:00:00.000Ztrue00000PT15MfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1680'
+ - '1738'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04ewuidfj2021-04-22T14:22:08Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05ewuidfj2021-10-21T05:21:59ZservicebustestkjdemkkogkPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:07.697Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:59.233Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:08 GMT
- etag: '637546981276970000'
+ date: Thu, 21 Oct 2021 05:21:58 GMT
+ etag: '637703905192330000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04ewuidfj2021-04-22T14:22:03Z2021-04-22T14:22:08Zservicebustestfqnwzqws3jhttps://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05ewuidfj2021-10-21T05:21:56Z2021-10-21T05:21:59ZservicebustestkjdemkkogkPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-04-22T14:22:03.453Z2021-04-22T14:22:08.21Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-10-21T05:21:56.967Z2021-10-21T05:21:59.45Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:22:08 GMT
- etag: '637546981282100000'
+ date: Thu, 21 Oct 2021 05:21:59 GMT
+ etag: '637703905194500000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/ewuidfj?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 14:22:09 GMT
- etag: '637546981282100000'
+ date: Thu, 21 Oct 2021 05:21:59 GMT
+ etag: '637703905194500000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/ewuidfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/ewuidfj?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dkfjaks?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkfjaks?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 14:22:10 GMT
- etag: '637546981246800000'
+ date: Thu, 21 Oct 2021 05:22:00 GMT
+ etag: '637703905179000000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestfqnwzqws3j.servicebus.windows.net/dkfjaks?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkfjaks?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_error.yaml
index 94ade4d1a544..008b8ba6953c 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_error.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_error.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestppoxgfmrp5.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:46:31Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:01Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 19 Apr 2021 17:46:31 GMT
+ date: Thu, 21 Oct 2021 05:22:00 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestppoxgfmrp5.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,46 +34,46 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestppoxgfmrp5.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-19T17:46:32Z2021-04-19T17:46:32Zservicebustestppoxgfmrp5https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:01Z2021-10-21T05:22:01ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:46:32.093Z2021-04-19T17:46:32.17ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:22:01.573Z2021-10-21T05:22:01.637ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 19 Apr 2021 17:46:32 GMT
+ date: Thu, 21 Oct 2021 05:22:01 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestppoxgfmrp5.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 19 Apr 2021 17:46:33 GMT
- etag: '637544511921700000'
+ date: Thu, 21 Oct 2021 05:22:02 GMT
+ etag: '637703905216370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestppoxgfmrp5.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_success.yaml
index 2d786c784b2c..dc1c8356191d 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_queues_async.test_mgmt_queue_async_update_dict_success.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestpwknnldq6x.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-22T14:24:03Z
+ string: Queueshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:03Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 22 Apr 2021 14:24:02 GMT
+ date: Thu, 21 Oct 2021 05:22:03 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpwknnldq6x.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,245 +34,245 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:24:04Z2021-04-22T14:24:04Zservicebustestpwknnldq6xhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:03Z2021-10-21T05:22:03ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-22T14:24:04.273Z2021-04-22T14:24:04.33ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:22:03.513Z2021-10-21T05:22:03.54ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:24:03 GMT
+ date: Thu, 21 Oct 2021 05:22:03 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: '
PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />ActiveP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1022'
+ - '1080'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:24:05Zservicebustestpwknnldq6xhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:04ZservicebustestkjdemkkogkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:24:05 GMT
- etag: '637546982443300000'
+ date: Thu, 21 Oct 2021 05:22:03 GMT
+ etag: '637703905235400000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:24:04Z2021-04-22T14:24:05Zservicebustestpwknnldq6xhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:22:03Z2021-10-21T05:22:04ZservicebustestkjdemkkogkPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-22T14:24:04.273Z2021-04-22T14:24:05.08Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:22:03.513Z2021-10-21T05:22:04Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:24:05 GMT
- etag: '637546982450800000'
+ date: Thu, 21 Oct 2021 05:22:04 GMT
+ etag: '637703905240000000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
- request:
body: '
PT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestpwknnldq6x.servicebus.windows.net/fjruidsb://servicebustestpwknnldq6x.servicebus.windows.net/fjruid'
+ />ActivePT10MfalseAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/fjruidsb://servicebustestkjdemkkogk.servicebus.windows.net/fjruid256'
headers:
Accept:
- application/xml
Content-Length:
- - '1185'
+ - '1243'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpwknnldq6x.servicebus.windows.net%2Ffjruid&sig=fooyG%2bHIrDxXJWrBUlW%2fdOywD2yeOOcK0Kg%2frvIq1mM%3d&se=1619105045&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Ffjruid&sig=C76yHIGGCMFHAsxmihXYadRVA6OFnrMslHfX1RLqitg%3d&se=1634797324&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpwknnldq6x.servicebus.windows.net%2Ffjruid&sig=fooyG%2bHIrDxXJWrBUlW%2fdOywD2yeOOcK0Kg%2frvIq1mM%3d&se=1619105045&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Ffjruid&sig=C76yHIGGCMFHAsxmihXYadRVA6OFnrMslHfX1RLqitg%3d&se=1634797324&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:24:05Zservicebustestpwknnldq6xhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:04ZservicebustestkjdemkkogkPT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestpwknnldq6x.servicebus.windows.net/fjruidsb://servicebustestpwknnldq6x.servicebus.windows.net/fjruid
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/fjruidsb://servicebustestkjdemkkogk.servicebus.windows.net/fjruid256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:24:05 GMT
- etag: '637546982450800000'
+ date: Thu, 21 Oct 2021 05:22:04 GMT
+ etag: '637703905240000000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:24:04Z2021-04-22T14:24:05Zservicebustestpwknnldq6xhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:22:03Z2021-10-21T05:22:04ZservicebustestkjdemkkogkPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-04-22T14:24:04.273Z2021-04-22T14:24:05.717Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestpwknnldq6x.servicebus.windows.net/fjruidsb://servicebustestpwknnldq6x.servicebus.windows.net/fjruid
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-10-21T05:22:03.513Z2021-10-21T05:22:04.25Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestkjdemkkogk.servicebus.windows.net/fjruidsb://servicebustestkjdemkkogk.servicebus.windows.net/fjruid256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:24:05 GMT
- etag: '637546982457170000'
+ date: Thu, 21 Oct 2021 05:22:04 GMT
+ etag: '637703905242500000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
- request:
body: '
PT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse'
+ />ActivePT15MfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '984'
+ - '1042'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:24:06Zservicebustestpwknnldq6xhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:04ZservicebustestkjdemkkogkPT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:24:06 GMT
- etag: '637546982457170000'
+ date: Thu, 21 Oct 2021 05:22:04 GMT
+ etag: '637703905242500000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:24:04Z2021-04-22T14:24:06Zservicebustestpwknnldq6xhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:22:03Z2021-10-21T05:22:04ZservicebustestkjdemkkogkPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-04-22T14:24:04.273Z2021-04-22T14:24:06.25Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-10-21T05:22:03.513Z2021-10-21T05:22:04.483Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:24:06 GMT
- etag: '637546982462500000'
+ date: Thu, 21 Oct 2021 05:22:04 GMT
+ etag: '637703905244830000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 14:24:07 GMT
- etag: '637546982462500000'
+ date: Thu, 21 Oct 2021 05:22:05 GMT
+ etag: '637703905244830000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestpwknnldq6x.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create.yaml
index f296a6b9cef8..f1eb09873f51 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestllhlzps6iq.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T17:03:27Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:05Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:26 GMT
+ date: Thu, 21 Oct 2021 05:22:05 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
- string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2021-04-15T17:03:27Z2021-04-15T17:03:27Zservicebustestllhlzps6iqhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-10-21T05:22:06Z2021-10-21T05:22:06ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T17:03:27.837Z2021-04-15T17:03:27.883ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:06.037Z2021-10-21T05:22:06.067ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:27 GMT
+ date: Thu, 21 Oct 2021 05:22:06 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05
- request:
body: '
@@ -67,27 +67,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
- string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2021-04-15T17:03:28Z2021-04-15T17:03:28Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-10-21T05:22:06Z2021-10-21T05:22:06ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-15T17:03:28.5296322Z2021-04-15T17:03:28.5296322Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:06.7391026Z2021-10-21T05:22:06.7391026Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:28 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
- request:
body: '
@@ -110,14 +110,14 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
response:
body:
- string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12021-04-15T17:03:28Z2021-04-15T17:03:28Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-10-21T05:22:06Z2021-10-21T05:22:06Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13true2021-04-15T17:03:28.9515195Ztest_rule_1
+ i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2021-10-21T05:22:06.8483967Ztest_rule_1
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:28 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12021-04-15T17:03:28Z2021-04-15T17:03:28Zsb://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05test_rule_12021-10-21T05:22:06Z2021-10-21T05:22:06Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13true2021-04-15T17:03:28.9417589Ztest_rule_1
+ i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2021-10-21T05:22:06.8496532Ztest_rule_1
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:28 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05
- request:
body: '
@@ -191,62 +191,62 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
response:
body:
- string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22021-04-15T17:03:29Z2021-04-15T17:03:29Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-10-21T05:22:07Z2021-10-21T05:22:07ZPriority
= @param1 AND Level = @param220@param1str1@param21true2021-04-15T17:03:29.5139946Ztest_rule_2
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:07.0358966Ztest_rule_2
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:28 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22021-04-15T17:03:29Z2021-04-15T17:03:29Zsb://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05test_rule_22021-10-21T05:22:07Z2021-10-21T05:22:07ZPriority
= @param1 AND Level = @param220@param1str1@param21true2021-04-15T17:03:29.5198982Ztest_rule_2
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:07.037185Ztest_rule_2
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:29 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05
- request:
body: '
@@ -262,56 +262,56 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
response:
body:
- string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32021-04-15T17:03:30Z2021-04-15T17:03:30Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-10-21T05:22:07Z2021-10-21T05:22:07Z1=1202021-04-15T17:03:30.0452175Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:07.1296571Ztest_rule_3
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:29 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32021-04-15T17:03:30Z2021-04-15T17:03:30Zsb://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05test_rule_32021-10-21T05:22:07Z2021-10-21T05:22:07Z1=1202021-04-15T17:03:30.0605402Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:07.1153114Ztest_rule_3
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:29 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05
- request:
body: '
@@ -327,186 +327,186 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05
response:
body:
- string: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04test_rule_42021-04-15T17:03:30Z2021-04-15T17:03:30Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05test_rule_42021-10-21T05:22:07Z2021-10-21T05:22:07Z1=1202021-04-15T17:03:30.607722Ztest_rule_4
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:07.1921451Ztest_rule_4
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:29 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04test_rule_42021-04-15T17:03:30Z2021-04-15T17:03:30Zsb://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05test_rule_42021-10-21T05:22:07Z2021-10-21T05:22:07Z1=1202021-04-15T17:03:30.607381Ztest_rule_4
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:07.1934095Ztest_rule_4
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 17:03:30 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 17:03:30 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 17:03:30 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:06 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 17:03:31 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:07 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 17:03:31 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:07 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 17:03:31 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:07 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 17:03:32 GMT
- etag: '637541030078830000'
+ date: Thu, 21 Oct 2021 05:22:07 GMT
+ etag: '637703905260670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestllhlzps6iq.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create_duplicate.yaml
index a8604ad90164..d2405a4554b4 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create_duplicate.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_create_duplicate.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:33Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:08Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:32 GMT
+ date: Thu, 21 Oct 2021 05:22:07 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-11-23T20:27:33Z2020-11-23T20:27:33Zservicebustestebgplp6kllhttps://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-10-21T05:22:08Z2021-10-21T05:22:08ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:33.63Z2020-11-23T20:27:33.68ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:08.907Z2021-10-21T05:22:08.943ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:33 GMT
+ date: Thu, 21 Oct 2021 05:22:08 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05
- request:
body: '
@@ -67,27 +67,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-11-23T20:27:34Z2020-11-23T20:27:34Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05kkaqo2021-10-21T05:22:09Z2021-10-21T05:22:09ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:34.1368312Z2020-11-23T20:27:34.1368312Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:09.4328275Z2021-10-21T05:22:09.4328275Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:33 GMT
- etag: '637417600536800000'
+ date: Thu, 21 Oct 2021 05:22:08 GMT
+ etag: '637703905289430000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
- request:
body: '
@@ -103,29 +103,29 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-11-23T20:27:34Z2020-11-23T20:27:34Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05rule2021-10-21T05:22:09Z2021-10-21T05:22:09ZPriority
= 'low'20true2020-11-23T20:27:34.4180924Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:09.5109257Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:33 GMT
- etag: '637417600536800000'
+ date: Thu, 21 Oct 2021 05:22:08 GMT
+ etag: '637703905289430000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05
- request:
body: '
@@ -141,89 +141,89 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05
response:
body:
string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo|rule'
- already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:45ade154-b11b-4ed8-af3d-d19ad487cae4_B5,
- SystemTracker:NoSystemTracker, Timestamp:2020-11-23T20:27:34
+ already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:33cda021-b7b2-4408-9f6b-868fd244a7ce_B12,
+ SystemTracker:NoSystemTracker, Timestamp:2021-10-21T05:22:09
headers:
content-type: application/xml; charset=utf-8
- date: Mon, 23 Nov 2020 20:27:34 GMT
- etag: '637417600536800000'
+ date: Thu, 21 Oct 2021 05:22:10 GMT
+ etag: '637703905289430000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 409
message: Conflict
- url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:34 GMT
- etag: '637417600536800000'
+ date: Thu, 21 Oct 2021 05:22:10 GMT
+ etag: '637703905289430000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:34 GMT
- etag: '637417600536800000'
+ date: Thu, 21 Oct 2021 05:22:10 GMT
+ etag: '637703905289430000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:35 GMT
- etag: '637417600536800000'
+ date: Thu, 21 Oct 2021 05:22:10 GMT
+ etag: '637703905289430000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/dqkodq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_list_and_delete.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_list_and_delete.yaml
index 27d7de6606d1..660555d80250 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_list_and_delete.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_list_and_delete.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:36Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:11Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:36 GMT
+ date: Thu, 21 Oct 2021 05:22:11 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-11-23T20:27:37Z2020-11-23T20:27:37Zservicebustestebgplp6kllhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-10-21T05:22:12Z2021-10-21T05:22:12ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:37.197Z2020-11-23T20:27:37.23ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:12.33Z2021-10-21T05:22:12.397ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:36 GMT
+ date: Thu, 21 Oct 2021 05:22:12 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05
- request:
body: '
@@ -67,57 +67,57 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-11-23T20:27:37Z2020-11-23T20:27:37Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-10-21T05:22:12Z2021-10-21T05:22:12ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:37.7041461Z2020-11-23T20:27:37.7041461Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:12.9139879Z2021-10-21T05:22:12.9139879Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:37 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:12 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Ruleshttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Zhttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:37Z2020-11-23T20:27:37ZRuleshttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:13Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-10-21T05:22:12Z2021-10-21T05:22:12Z1=1202020-11-23T20:27:37.7015327Z$Default
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:12.9264077Z$Default
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:37 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:12 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -133,29 +133,29 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:38Z2020-11-23T20:27:38Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-10-21T05:22:13Z2021-10-21T05:22:13ZPriority
= 'low'20true2020-11-23T20:27:38.0635456Ztest_rule_1
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:13.101491Ztest_rule_1
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:37 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:12 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
- request:
body: '
@@ -171,29 +171,29 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-11-23T20:27:38Z2020-11-23T20:27:38Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-10-21T05:22:13Z2021-10-21T05:22:13ZPriority
= 'middle'20true2020-11-23T20:27:38.1572806Ztest_rule_2
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:13.1959551Ztest_rule_2
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:37 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:12 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
- request:
body: '
@@ -209,262 +209,262 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:38Z2020-11-23T20:27:38Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-10-21T05:22:13Z2021-10-21T05:22:13ZPriority
= 'high'20true2020-11-23T20:27:38.2198002Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:13.2733777Ztest_rule_3
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:37 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:13 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Ruleshttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Zhttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:37Z2020-11-23T20:27:37ZRuleshttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:13Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-10-21T05:22:12Z2021-10-21T05:22:12Z1=1202020-11-23T20:27:37.7015327Z$Defaulthttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-10-21T05:22:12.9264077Z$Defaulthttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-10-21T05:22:13Z2021-10-21T05:22:13ZPriority
= 'low'20true2020-11-23T20:27:38.076549Ztest_rule_1https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-10-21T05:22:13.1138971Ztest_rule_1https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-10-21T05:22:13Z2021-10-21T05:22:13ZPriority
= 'middle'20true2020-11-23T20:27:38.1546443Ztest_rule_2https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-10-21T05:22:13.2076802Ztest_rule_2https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-10-21T05:22:13Z2021-10-21T05:22:13ZPriority
= 'high'20true2020-11-23T20:27:38.2171666Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:13.2701773Ztest_rule_3
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:37 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:13 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:37 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:13 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Ruleshttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Zhttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:37Z2020-11-23T20:27:37ZRuleshttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:14Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-10-21T05:22:12Z2021-10-21T05:22:12Z1=1202020-11-23T20:27:37.7015327Z$Defaulthttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-10-21T05:22:12.9264077Z$Defaulthttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-10-21T05:22:13Z2021-10-21T05:22:13ZPriority
= 'low'20true2020-11-23T20:27:38.076549Ztest_rule_1https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:38Z2020-11-23T20:27:38Z2021-10-21T05:22:13.1138971Ztest_rule_1https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-10-21T05:22:13Z2021-10-21T05:22:13ZPriority
= 'high'20true2020-11-23T20:27:38.2171666Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:13.2701773Ztest_rule_3
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:37 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:13 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:37 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:13 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:38 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:14 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Ruleshttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Zhttps://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:37Z2020-11-23T20:27:37ZRuleshttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:14Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-10-21T05:22:12Z2021-10-21T05:22:12Z1=1202020-11-23T20:27:37.7015327Z$Default
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:12.9264077Z$Default
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:38 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:14 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:38 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:14 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:38 GMT
- etag: '637417600572300000'
+ date: Thu, 21 Oct 2021 05:22:14 GMT
+ etag: '637703905323970000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_invalid.yaml
index 7285d9502a63..5b44e2691f8b 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_invalid.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_invalid.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:39Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:15Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:39 GMT
+ date: Thu, 21 Oct 2021 05:22:15 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-11-23T20:27:40Z2020-11-23T20:27:40Zservicebustestebgplp6kllhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:16Z2021-10-21T05:22:16ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:40.33Z2020-11-23T20:27:40.37ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:16.237Z2021-10-21T05:22:16.307ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:40 GMT
+ date: Thu, 21 Oct 2021 05:22:16 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: '
@@ -67,27 +67,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-11-23T20:27:40Z2020-11-23T20:27:40Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:16Z2021-10-21T05:22:16ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:40.897403Z2020-11-23T20:27:40.897403Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:16.8182648Z2021-10-21T05:22:16.8182648Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:40 GMT
- etag: '637417600603700000'
+ date: Thu, 21 Oct 2021 05:22:16 GMT
+ etag: '637703905363070000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: '
@@ -103,65 +103,65 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-11-23T20:27:41Z2020-11-23T20:27:41Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-10-21T05:22:17Z2021-10-21T05:22:17ZPriority
= 'low'20true2020-11-23T20:27:41.1473956Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:17.0682789Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:40 GMT
- etag: '637417600603700000'
+ date: Thu, 21 Oct 2021 05:22:16 GMT
+ etag: '637703905363070000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-11-23T20:27:41Z2020-11-23T20:27:41Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:22:17Z2021-10-21T05:22:17ZPriority
= 'low'20true2020-11-23T20:27:41.1421572Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:17.0771954Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 23 Nov 2020 20:27:40 GMT
- etag: '637417600603700000'
+ date: Thu, 21 Oct 2021 05:22:16 GMT
+ etag: '637703905363070000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
- request:
body: '
Priority = ''low''20true2020-11-23T20:27:41.142157Ziewdm'
+ xsi:type="EmptyRuleAction" />2021-10-21T05:22:17.077195Ziewdm'
headers:
Accept:
- application/xml
@@ -172,89 +172,89 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2021-05
response:
body:
string: 404Entity 'servicebustestsbname:Topic:fjrui|eqkovc|iewdm'
- was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:4beeadcc-d035-4a7f-a5a3-8d64f5f8a431_B0,
- SystemTracker:NoSystemTracker, Timestamp:2020-11-23T20:27:41
+ was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:2bb344c3-3703-4643-a3db-26136ed85af1_B7,
+ SystemTracker:NoSystemTracker, Timestamp:2021-10-21T05:22:17
headers:
content-type: application/xml; charset=utf-8
- date: Mon, 23 Nov 2020 20:27:41 GMT
- etag: '637417600603700000'
+ date: Thu, 21 Oct 2021 05:22:17 GMT
+ etag: '637703905363070000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 404
message: Not Found
- url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:41 GMT
- etag: '637417600603700000'
+ date: Thu, 21 Oct 2021 05:22:17 GMT
+ etag: '637703905363070000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:41 GMT
- etag: '637417600603700000'
+ date: Thu, 21 Oct 2021 05:22:17 GMT
+ etag: '637703905363070000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 23 Nov 2020 20:27:42 GMT
- etag: '637417600603700000'
+ date: Thu, 21 Oct 2021 05:22:18 GMT
+ etag: '637703905363070000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestebgplp6kll.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_success.yaml
index e9ad6cd55c6c..9c5561fe7cd5 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_async_mgmt_rule_update_success.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestm4fqorp5pk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:23:27Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:19Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 22 Apr 2021 15:23:27 GMT
+ date: Thu, 21 Oct 2021 05:22:18 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:23:28Z2021-04-22T15:23:28Zservicebustestm4fqorp5pkhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:19Z2021-10-21T05:22:19ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:23:28.647Z2021-04-22T15:23:28.787ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:19.69Z2021-10-21T05:22:19.727ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:23:28 GMT
+ date: Thu, 21 Oct 2021 05:22:19 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: '
@@ -67,27 +67,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:23:29Z2021-04-22T15:23:29Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:20Z2021-10-21T05:22:20ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:23:29.4839628Z2021-04-22T15:23:29.4839628Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:20.1411203Z2021-10-21T05:22:20.1411203Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:23:29 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:20 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: '
@@ -103,65 +103,65 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:23:29Z2021-04-22T15:23:29Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-10-21T05:22:20Z2021-10-21T05:22:20ZPriority
= 'low'20true2021-04-22T15:23:29.9058414Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:20.4380038Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:23:29 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:20 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:23:30Z2021-04-22T15:23:30Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:22:20Z2021-10-21T05:22:20ZPriority
= 'low'20true2021-04-22T15:23:30.0491327Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:20.4304741Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:23:29 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:20 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
- request:
body: '
testcidSET Priority = ''low''20true2021-04-22T15:23:30.049132Zrule'
+ xsi:type="SqlRuleAction">SET Priority = ''low''20true2021-10-21T05:22:20.430474Zrule'
headers:
Accept:
- application/xml
@@ -172,63 +172,63 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:23:30Z2021-04-22T15:23:30Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-10-21T05:22:20Z2021-10-21T05:22:20ZtestcidSET Priority = 'low'20true2021-04-22T15:23:30.5621563Zrule
+ i:type="SqlRuleAction">SET Priority = 'low'20true2021-10-21T05:22:20.6098887Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:23:30 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:20 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:23:30Z2021-04-22T15:23:30Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:22:20Z2021-10-21T05:22:20ZtestcidSET Priority = 'low'20true2021-04-22T15:23:30.0491327Zrule
+ i:type="SqlRuleAction">SET Priority = 'low'20true2021-10-21T05:22:20.4304741Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:23:30 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:20 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
- request:
body: '
updatedcid2021-04-22T15:23:30.049132Zrule'
+ xsi:type="EmptyRuleAction" />2021-10-21T05:22:20.430474Zrule'
headers:
Accept:
- application/xml
@@ -239,120 +239,120 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:23:31Z2021-04-22T15:23:31Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-10-21T05:22:20Z2021-10-21T05:22:20Zupdatedcid2021-04-22T15:23:31.1871446Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:20.8442742Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:23:30 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:20 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:23:30Z2021-04-22T15:23:30Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:22:20Z2021-10-21T05:22:20Zupdatedcid2021-04-22T15:23:30.0491327Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:20.4304741Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:23:30 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:20 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:23:31 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:20 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:23:31 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:20 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:23:32 GMT
- etag: '637547018087870000'
+ date: Thu, 21 Oct 2021 05:22:21 GMT
+ etag: '637703905397270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestm4fqorp5pk.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_error.yaml
index 39562de3b06c..e84d49e098de 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_error.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_error.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest7unr4yo2aa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:55:12Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:22Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 02 Mar 2021 19:55:12 GMT
+ date: Thu, 21 Oct 2021 05:22:21 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustest7unr4yo2aa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-03-02T19:55:13Z2021-03-02T19:55:13Zservicebustest7unr4yo2aahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:22Z2021-10-21T05:22:22ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:55:13.237Z2021-03-02T19:55:13.32ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:22.56Z2021-10-21T05:22:22.617ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 02 Mar 2021 19:55:13 GMT
+ date: Thu, 21 Oct 2021 05:22:22 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: '
@@ -67,27 +67,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-03-02T19:55:13Z2021-03-02T19:55:13Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:23Z2021-10-21T05:22:23ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-03-02T19:55:13.9089858Z2021-03-02T19:55:13.9089858Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:23.1050927Z2021-10-21T05:22:23.1050927Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 02 Mar 2021 19:55:13 GMT
- etag: '637503117133200000'
+ date: Thu, 21 Oct 2021 05:22:22 GMT
+ etag: '637703905426170000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: '
@@ -103,93 +103,93 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-03-02T19:55:14Z2021-03-02T19:55:14Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-10-21T05:22:23Z2021-10-21T05:22:23ZPriority
= 'low'20true2021-03-02T19:55:14.1589554Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:23.3081969Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 02 Mar 2021 19:55:14 GMT
- etag: '637503117133200000'
+ date: Thu, 21 Oct 2021 05:22:22 GMT
+ etag: '637703905426170000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 02 Mar 2021 19:55:14 GMT
- etag: '637503117133200000'
+ date: Thu, 21 Oct 2021 05:22:22 GMT
+ etag: '637703905426170000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 02 Mar 2021 19:55:14 GMT
- etag: '637503117133200000'
+ date: Thu, 21 Oct 2021 05:22:22 GMT
+ etag: '637703905426170000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 02 Mar 2021 19:55:14 GMT
- etag: '637503117133200000'
+ date: Thu, 21 Oct 2021 05:22:23 GMT
+ etag: '637703905426170000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustest7unr4yo2aa.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_success.yaml
index 94fe920c9e37..b6818bc7bc7c 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_rules_async.test_mgmt_rule_async_update_dict_success.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestpp6oahyffj.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:25:00Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:24Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 22 Apr 2021 15:25:00 GMT
+ date: Thu, 21 Oct 2021 05:22:24 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T15:25:01Z2021-04-22T15:25:01Zservicebustestpp6oahyffjhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:25Z2021-10-21T05:22:25ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:25:01.13Z2021-04-22T15:25:01.46ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:25.167Z2021-10-21T05:22:25.327ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:25:01 GMT
+ date: Thu, 21 Oct 2021 05:22:25 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: '
@@ -67,27 +67,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
- string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:25:02Z2021-04-22T15:25:02Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-10-21T05:22:25Z2021-10-21T05:22:25ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:25:02.148507Z2021-04-22T15:25:02.148507Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:25.7744059Z2021-10-21T05:22:25.7744059Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:25:02 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:25 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
- request:
body: '
@@ -103,65 +103,65 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:25:02Z2021-04-22T15:25:02Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-10-21T05:22:26Z2021-10-21T05:22:26ZPriority
= 'low'20true2021-04-22T15:25:02.648539Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:26.0712521Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:25:02 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:26 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:25:02Z2021-04-22T15:25:02Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:22:26Z2021-10-21T05:22:26ZPriority
= 'low'20true2021-04-22T15:25:02.6481931Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:26.0773354Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:25:02 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:26 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05
- request:
body: '
testcidSET Priority = ''low''20true2021-04-22T15:25:02.648193Zrule'
+ xsi:type="SqlRuleAction">SET Priority = ''low''20true2021-10-21T05:22:26.077335Zrule'
headers:
Accept:
- application/xml
@@ -172,63 +172,63 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:25:03Z2021-04-22T15:25:03Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-10-21T05:22:26Z2021-10-21T05:22:26ZtestcidSET Priority = 'low'20true2021-04-22T15:25:03.3516678Zrule
+ i:type="SqlRuleAction">SET Priority = 'low'20true2021-10-21T05:22:26.2431566Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:25:03 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:26 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:25:02Z2021-04-22T15:25:02Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:22:26Z2021-10-21T05:22:26ZtestcidSET Priority = 'low'20true2021-04-22T15:25:02.6481931Zrule
+ i:type="SqlRuleAction">SET Priority = 'low'20true2021-10-21T05:22:26.0773354Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:25:03 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:26 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05
- request:
body: '
updatedcid2021-04-22T15:25:02.648193Zrule'
+ xsi:type="EmptyRuleAction" />2021-10-21T05:22:26.077335Zrule'
headers:
Accept:
- application/xml
@@ -239,120 +239,120 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:25:03Z2021-04-22T15:25:03Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-10-21T05:22:26Z2021-10-21T05:22:26Zupdatedcid2021-04-22T15:25:03.8829356Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:26.3525571Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:25:03 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:26 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:25:02Z2021-04-22T15:25:02Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:22:26Z2021-10-21T05:22:26Zupdatedcid2021-04-22T15:25:02.6481931Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:22:26.0773354Zrule
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:25:03 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:26 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:25:04 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:26 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:25:04 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:26 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:25:05 GMT
- etag: '637547019014600000'
+ date: Thu, 21 Oct 2021 05:22:26 GMT
+ etag: '637703905453270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestpp6oahyffj.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_by_name.yaml
index b588440670af..e6b710a0131b 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_by_name.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_by_name.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:45Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:27Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:45 GMT
+ date: Thu, 21 Oct 2021 05:22:27 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:33:46Z2020-09-29T08:33:46Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-10-21T05:22:27Z2021-10-21T05:22:27ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:46.497Z2020-09-29T08:33:46.537ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:27.837Z2021-10-21T05:22:27.91ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:46 GMT
+ date: Thu, 21 Oct 2021 05:22:28 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05
- request:
body: '
@@ -67,97 +67,97 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:33:47Z2020-09-29T08:33:47Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-10-21T05:22:28Z2021-10-21T05:22:28ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:47.1916711Z2020-09-29T08:33:47.1916711Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:28.3319395Z2021-10-21T05:22:28.3319395Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:46 GMT
- etag: '637369652265370000'
+ date: Thu, 21 Oct 2021 05:22:28 GMT
+ etag: '637703905479100000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-09-29T08:33:47Z2020-09-29T08:33:47Zsb://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05sub_testkkk2021-10-21T05:22:28Z2021-10-21T05:22:28ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:47.1938309Z2020-09-29T08:33:47.1938309Z2020-09-29T08:33:47.1938309Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:28.3433166Z2021-10-21T05:22:28.3433166Z2021-10-21T05:22:28.3433166Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:46 GMT
- etag: '637369652265370000'
+ date: Thu, 21 Oct 2021 05:22:28 GMT
+ etag: '637703905479100000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:47 GMT
- etag: '637369652265370000'
+ date: Thu, 21 Oct 2021 05:22:28 GMT
+ etag: '637703905479100000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:47 GMT
- etag: '637369652265370000'
+ date: Thu, 21 Oct 2021 05:22:28 GMT
+ etag: '637703905479100000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_duplicate.yaml
index 58dff8841e87..f2ac4683302b 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_duplicate.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_duplicate.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:48Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:29Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:47 GMT
+ date: Thu, 21 Oct 2021 05:22:28 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:33:49Z2020-09-29T08:33:49Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-10-21T05:22:29Z2021-10-21T05:22:30ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:49.483Z2020-09-29T08:33:49.523ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:29.92Z2021-10-21T05:22:30.02ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:49 GMT
+ date: Thu, 21 Oct 2021 05:22:29 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05
- request:
body: '
@@ -67,27 +67,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:33:50Z2020-09-29T08:33:50Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05kkaqo2021-10-21T05:22:30Z2021-10-21T05:22:30ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:50.0143397Z2020-09-29T08:33:50.0143397Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:30.5012606Z2021-10-21T05:22:30.5012606Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:50 GMT
- etag: '637369652295230000'
+ date: Thu, 21 Oct 2021 05:22:30 GMT
+ etag: '637703905500200000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
- request:
body: '
@@ -101,67 +101,67 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo'
- already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:660ba8cc-f5ad-4117-96a0-8563e03dc190_B5,
- SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:33:50
+ already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:afea0647-4d40-4b7f-b3b1-0c8919e8658c_B9,
+ SystemTracker:NoSystemTracker, Timestamp:2021-10-21T05:22:30
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:33:51 GMT
- etag: '637369652295230000'
+ date: Thu, 21 Oct 2021 05:22:31 GMT
+ etag: '637703905500200000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 409
message: Conflict
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:51 GMT
- etag: '637369652295230000'
+ date: Thu, 21 Oct 2021 05:22:31 GMT
+ etag: '637703905500200000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:52 GMT
- etag: '637369652295230000'
+ date: Thu, 21 Oct 2021 05:22:31 GMT
+ etag: '637703905500200000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_forward_to.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_forward_to.yaml
index 20e074694f75..9f3aa3ba6e40 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_forward_to.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_forward_to.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestm3q2ijv25y.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-19T22:25:20Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:32Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Fri, 19 Mar 2021 22:25:19 GMT
+ date: Thu, 21 Oct 2021 05:22:32 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestm3q2ijv25y.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2021-05
response:
body:
- string: https://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj?api-version=2017-04dkfthj2021-03-19T22:25:20Z2021-03-19T22:25:20Zservicebustestm3q2ijv25yhttps://servicebustestkjdemkkogk.servicebus.windows.net/dkfthj?api-version=2021-05dkfthj2021-10-21T05:22:33Z2021-10-21T05:22:33ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-03-19T22:25:20.877Z2021-03-19T22:25:20.947ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:22:33.113Z2021-10-21T05:22:33.177ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Fri, 19 Mar 2021 22:25:20 GMT
+ date: Thu, 21 Oct 2021 05:22:33 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkfthj?api-version=2021-05
- request:
body: '
@@ -67,31 +67,31 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2021-05
response:
body:
- string: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward?api-version=2017-04iweidkforward2021-03-19T22:25:21Z2021-03-19T22:25:21Zservicebustestm3q2ijv25yhttps://servicebustestkjdemkkogk.servicebus.windows.net/iweidkforward?api-version=2021-05iweidkforward2021-10-21T05:22:34Z2021-10-21T05:22:34ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-19T22:25:21.827Z2021-03-19T22:25:21.86ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:34.017Z2021-10-21T05:22:34.123ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Fri, 19 Mar 2021 22:25:21 GMT
+ date: Thu, 21 Oct 2021 05:22:34 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidkforward?api-version=2021-05
- request:
body: '
sb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthjsb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj'
+ type="application/xml">sb://servicebustestkjdemkkogk.servicebus.windows.net/dkfthjsb://servicebustestkjdemkkogk.servicebus.windows.net/dkfthj'
headers:
Accept:
- application/xml
@@ -100,123 +100,123 @@ interactions:
Content-Type:
- application/atom+xml
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestm3q2ijv25y.servicebus.windows.net%2Fdkfthj&sig=j0qQnDxabjf3RVq5k52fLg9slEMyiUT0kwgCd7quW2s%3d&se=1616196322&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fdkfthj&sig=Fmy07jH4Pn1I6hCVR7d44wPbnHA%2fr8KbaG8hzivie%2bw%3d&se=1634797354&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestm3q2ijv25y.servicebus.windows.net%2Fdkfthj&sig=j0qQnDxabjf3RVq5k52fLg9slEMyiUT0kwgCd7quW2s%3d&se=1616196322&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fdkfthj&sig=Fmy07jH4Pn1I6hCVR7d44wPbnHA%2fr8KbaG8hzivie%2bw%3d&se=1634797354&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05
response:
body:
- string: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04kdosakoforward2021-03-19T22:25:22Z2021-03-19T22:25:22Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05kdosakoforward2021-10-21T05:22:34Z2021-10-21T05:22:34ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj2021-03-19T22:25:22.4148155Z2021-03-19T22:25:22.4148155Z0001-01-01T00:00:00sb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/dkfthj2021-10-21T05:22:34.6199863Z2021-10-21T05:22:34.6199863Z0001-01-01T00:00:00sb://servicebustestkjdemkkogk.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Fri, 19 Mar 2021 22:25:21 GMT
- etag: '637517895218600000'
+ date: Thu, 21 Oct 2021 05:22:34 GMT
+ etag: '637703905541230000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04kdosakoforward2021-03-19T22:25:22Z2021-03-19T22:25:22Zsb://servicebustestkjdemkkogk.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05kdosakoforward2021-10-21T05:22:34Z2021-10-21T05:22:34ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj2021-03-19T22:25:22.4099738Z2021-03-19T22:25:22.4099738Z2021-03-19T22:25:22.41Z00000sb://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/dkfthj2021-10-21T05:22:34.6127471Z2021-10-21T05:22:34.6127471Z2021-10-21T05:22:34.613Z00000sb://servicebustestkjdemkkogk.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Fri, 19 Mar 2021 22:25:21 GMT
- etag: '637517895218600000'
+ date: Thu, 21 Oct 2021 05:22:34 GMT
+ etag: '637703905541230000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Fri, 19 Mar 2021 22:25:21 GMT
- etag: '637517895218600000'
+ date: Thu, 21 Oct 2021 05:22:34 GMT
+ etag: '637703905541230000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Fri, 19 Mar 2021 22:25:22 GMT
- etag: '637517895218600000'
+ date: Thu, 21 Oct 2021 05:22:35 GMT
+ etag: '637703905541230000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestm3q2ijv25y.servicebus.windows.net/iweidkforward?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidkforward?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Fri, 19 Mar 2021 22:25:23 GMT
- etag: '637517895209470000'
+ date: Thu, 21 Oct 2021 05:22:35 GMT
+ etag: '637703905531770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestm3q2ijv25y.servicebus.windows.net/dkfthj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkfthj?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_subscription_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_subscription_description.yaml
index 2132f18ae683..5d6c28756ef6 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_subscription_description.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_create_with_subscription_description.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestnxl3g6jvwp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T16:13:34Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:36Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 15 Apr 2021 16:13:33 GMT
+ date: Thu, 21 Oct 2021 05:22:35 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
- string: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-15T16:13:34Z2021-04-15T16:13:34Zservicebustestnxl3g6jvwphttps://servicebustestkjdemkkogk.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-10-21T05:22:36Z2021-10-21T05:22:37ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T16:13:34.743Z2021-04-15T16:13:34.793ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:36.91Z2021-10-21T05:22:37.233ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:13:34 GMT
+ date: Thu, 21 Oct 2021 05:22:37 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk?api-version=2021-05
- request:
body: '
@@ -67,55 +67,55 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05
response:
body:
- string: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2021-04-15T16:13:35Z2021-04-15T16:13:35Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05kdosako2021-10-21T05:22:37Z2021-10-21T05:22:37ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:13:35.4324249Z2021-04-15T16:13:35.4324249Z0001-01-01T00:00:00PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-10-21T05:22:37.7120709Z2021-10-21T05:22:37.7120709Z0001-01-01T00:00:00PT10MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:13:35 GMT
- etag: '637541000147930000'
+ date: Thu, 21 Oct 2021 05:22:37 GMT
+ etag: '637703905572330000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2021-04-15T16:13:35Z2021-04-15T16:13:35Zsb://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05kdosako2021-10-21T05:22:37Z2021-10-21T05:22:37ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:13:35.4356834Z2021-04-15T16:13:35.4356834Z2021-04-15T16:13:35.437Z00000PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-10-21T05:22:37.7089455Z2021-10-21T05:22:37.7089455Z2021-10-21T05:22:37.71Z00000PT10MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:13:35 GMT
- etag: '637541000147930000'
+ date: Thu, 21 Oct 2021 05:22:37 GMT
+ etag: '637703905572330000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05
- request:
body: '
@@ -129,119 +129,119 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05
response:
body:
- string: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04owazmq2021-04-15T16:13:36Z2021-04-15T16:13:36Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05owazmq2021-10-21T05:22:37Z2021-10-21T05:22:37ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:13:36.026523Z2021-04-15T16:13:36.026523Z0001-01-01T00:00:00PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-10-21T05:22:37.8526109Z2021-10-21T05:22:37.8526109Z0001-01-01T00:00:00PT10MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:13:35 GMT
- etag: '637541000147930000'
+ date: Thu, 21 Oct 2021 05:22:37 GMT
+ etag: '637703905572330000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2017-04owazmq2021-04-15T16:13:36Z2021-04-15T16:13:36Zsb://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2021-05owazmq2021-10-21T05:22:37Z2021-10-21T05:22:37ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:13:36.0295109Z2021-04-15T16:13:36.0295109Z2021-04-15T16:13:36.0295109Z00000PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-10-21T05:22:37.8495729Z2021-10-21T05:22:37.8495729Z2021-10-21T05:22:37.8495729Z00000PT10MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:13:35 GMT
- etag: '637541000147930000'
+ date: Thu, 21 Oct 2021 05:22:37 GMT
+ etag: '637703905572330000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/owazmq?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 16:13:36 GMT
- etag: '637541000147930000'
+ date: Thu, 21 Oct 2021 05:22:37 GMT
+ etag: '637703905572330000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 16:13:36 GMT
- etag: '637541000147930000'
+ date: Thu, 21 Oct 2021 05:22:37 GMT
+ etag: '637703905572330000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk/subscriptions/owazmq?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 16:13:37 GMT
- etag: '637541000147930000'
+ date: Thu, 21 Oct 2021 05:22:37 GMT
+ etag: '637703905572330000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestnxl3g6jvwp.servicebus.windows.net/iweidk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_delete.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_delete.yaml
index b06e4a6d15ce..0a3d927a8843 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_delete.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_delete.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:55Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:39Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:55 GMT
+ date: Thu, 21 Oct 2021 05:22:38 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-09-29T08:33:56Z2020-09-29T08:33:56Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda?api-version=2021-05test_topicgda2021-10-21T05:22:39Z2021-10-21T05:22:39ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:33:56.41Z2020-09-29T08:33:56.483ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:39.507Z2021-10-21T05:22:39.537ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:56 GMT
+ date: Thu, 21 Oct 2021 05:22:39 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda?api-version=2021-05
- request:
body: '
@@ -67,57 +67,57 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-10-21T05:22:39Z2021-10-21T05:22:39ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0633257Z2020-09-29T08:33:57.0633257Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:39.9896964Z2021-10-21T05:22:39.9896964Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:56 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:39 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:57Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57ZSubscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:40Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-10-21T05:22:39Z2021-10-21T05:22:39ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:39.9838801Z2021-10-21T05:22:39.9838801Z2021-10-21T05:22:39.9838801Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:56 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:39 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -131,209 +131,209 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-10-21T05:22:40Z2021-10-21T05:22:40ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.34461Z2020-09-29T08:33:57.34461Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:40.1349608Z2021-10-21T05:22:40.1349608Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:56 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:40 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:57Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57ZSubscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:40Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-10-21T05:22:39Z2021-10-21T05:22:39ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:39.9838801Z2021-10-21T05:22:39.9838801Z2021-10-21T05:22:39.9838801Z00000P10675199DT2H48M5.4775807SAvailablefalsehttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-10-21T05:22:40Z2021-10-21T05:22:40ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:40.1401282Z2021-10-21T05:22:40.1401282Z2021-10-21T05:22:40.1401282Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:56 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:40 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-09-29T08:33:57Z2020-09-29T08:33:57Zsb://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05test_sub1da2021-10-21T05:22:39Z2021-10-21T05:22:39ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z2020-09-29T08:33:57.0613366Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:39.9838801Z2021-10-21T05:22:39.9838801Z2021-10-21T05:22:39.9838801Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:56 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:40 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:57 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:40 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:58Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:33:57Z2020-09-29T08:33:57ZSubscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:40Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-10-21T05:22:40Z2021-10-21T05:22:40ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z2020-09-29T08:33:57.3425883Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:40.1401282Z2021-10-21T05:22:40.1401282Z2021-10-21T05:22:40.1401282Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:57 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:40 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:57 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:40 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:33:58Z
+ string: Subscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:40Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:33:57 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:40 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:33:58 GMT
- etag: '637369652364830000'
+ date: Thu, 21 Oct 2021 05:22:40 GMT
+ etag: '637703905595370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topicgda?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_properties_basic.yaml
index 3cd03341e81f..3d93d18937c1 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_properties_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_get_runtime_properties_basic.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:52:48Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:41Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 17:52:47 GMT
+ date: Thu, 21 Oct 2021 05:22:40 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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2021-05
response:
body:
- string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa?api-version=2017-04dcvxqa2020-08-17T17:52:48Z2020-08-17T17:52:48Zservicebustesteotyq3ucg7https://servicebustestkjdemkkogk.servicebus.windows.net/dcvxqa?api-version=2021-05dcvxqa2021-10-21T05:22:41Z2021-10-21T05:22:41ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:52:48.813Z2020-08-17T17:52:48.88ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:41.823Z2021-10-21T05:22:41.87ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 17 Aug 2020 17:52:48 GMT
+ date: Thu, 21 Oct 2021 05:22:41 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dcvxqa?api-version=2021-05
- request:
body: '
@@ -67,97 +67,97 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05
response:
body:
- string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04xvazzag2020-08-17T17:52:49Z2020-08-17T17:52:49Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05xvazzag2021-10-21T05:22:42Z2021-10-21T05:22:42ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:49.6097542Z2020-08-17T17:52:49.6097542Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:42.4012476Z2021-10-21T05:22:42.4012476Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 17 Aug 2020 17:52:49 GMT
- etag: '637332835688800000'
+ date: Thu, 21 Oct 2021 05:22:41 GMT
+ etag: '637703905618700000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04xvazzag2020-08-17T17:52:49Z2020-08-17T17:52:49Zsb://servicebustestkjdemkkogk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05xvazzag2021-10-21T05:22:42Z2021-10-21T05:22:42ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:52:49.6128254Z2020-08-17T17:52:49.6128254Z2020-08-17T17:52:49.613Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:42.4000268Z2021-10-21T05:22:42.4000268Z2021-10-21T05:22:42.4000268Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 17 Aug 2020 17:52:49 GMT
- etag: '637332835688800000'
+ date: Thu, 21 Oct 2021 05:22:41 GMT
+ etag: '637703905618700000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 17 Aug 2020 17:52:49 GMT
- etag: '637332835688800000'
+ date: Thu, 21 Oct 2021 05:22:41 GMT
+ etag: '637703905618700000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 17 Aug 2020 17:52:49 GMT
- etag: '637332835688800000'
+ date: Thu, 21 Oct 2021 05:22:42 GMT
+ etag: '637703905618700000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dcvxqa?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list.yaml
index 123b5edc960f..7576a0e6daa3 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:02Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:43Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:01 GMT
+ date: Thu, 21 Oct 2021 05:22:43 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,50 +34,50 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-09-29T08:34:02Z2020-09-29T08:34:02Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc?api-version=2021-05lkoqxc2021-10-21T05:22:44Z2021-10-21T05:22:44ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:02.5Z2020-09-29T08:34:02.537ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:44.13Z2021-10-21T05:22:44.157ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:02 GMT
+ date: Thu, 21 Oct 2021 05:22:44 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:03Z
+ string: Subscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:44Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:02 GMT
- etag: '637369652425370000'
+ date: Thu, 21 Oct 2021 05:22:44 GMT
+ etag: '637703905641570000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -91,27 +91,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:34:03Z2020-09-29T08:34:03Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05testsub12021-10-21T05:22:44Z2021-10-21T05:22:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.1785346Z2020-09-29T08:34:03.1785346Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:44.658564Z2021-10-21T05:22:44.658564Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:02 GMT
- etag: '637369652425370000'
+ date: Thu, 21 Oct 2021 05:22:44 GMT
+ etag: '637703905641570000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05
- request:
body: '
@@ -125,151 +125,151 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:34:03Z2020-09-29T08:34:03Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05testsub22021-10-21T05:22:44Z2021-10-21T05:22:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.5379366Z2020-09-29T08:34:03.5379366Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:44.9397959Z2021-10-21T05:22:44.9397959Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:02 GMT
- etag: '637369652425370000'
+ date: Thu, 21 Oct 2021 05:22:44 GMT
+ etag: '637703905641570000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:03Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:34:03Z2020-09-29T08:34:03ZSubscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:45Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05testsub12021-10-21T05:22:44Z2021-10-21T05:22:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.1831337Z2020-09-29T08:34:03.1831337Z2020-09-29T08:34:03.1831337Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:34:03Z2020-09-29T08:34:03ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:44.6714067Z2021-10-21T05:22:44.6714067Z2021-10-21T05:22:44.6714067Z00000P10675199DT2H48M5.4775807SAvailablefalsehttps://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05testsub22021-10-21T05:22:44Z2021-10-21T05:22:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:03.5268498Z2020-09-29T08:34:03.5268498Z2020-09-29T08:34:03.5268498Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:44.9526274Z2021-10-21T05:22:44.9526274Z2021-10-21T05:22:44.9526274Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:03 GMT
- etag: '637369652425370000'
+ date: Thu, 21 Oct 2021 05:22:44 GMT
+ etag: '637703905641570000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:03 GMT
- etag: '637369652425370000'
+ date: Thu, 21 Oct 2021 05:22:44 GMT
+ etag: '637703905641570000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:03 GMT
- etag: '637369652425370000'
+ date: Thu, 21 Oct 2021 05:22:44 GMT
+ etag: '637703905641570000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:03Z
+ string: Subscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:45Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:03 GMT
- etag: '637369652425370000'
+ date: Thu, 21 Oct 2021 05:22:44 GMT
+ etag: '637703905641570000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:03 GMT
- etag: '637369652425370000'
+ date: Thu, 21 Oct 2021 05:22:45 GMT
+ etag: '637703905641570000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/lkoqxc?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_properties.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_properties.yaml
index 907b36e2c674..445c3a796691 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_properties.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_list_runtime_properties.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestmkljlmkall.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:41Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:46Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 18 Aug 2020 22:38:41 GMT
+ date: Thu, 21 Oct 2021 05:22:45 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestmkljlmkall.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,74 +34,74 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2021-05
response:
body:
- string: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv?api-version=2017-04dkoamv2020-08-18T22:38:42Z2020-08-18T22:38:42Zservicebustestmkljlmkallhttps://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv?api-version=2021-05dkoamv2021-10-21T05:22:46Z2021-10-21T05:22:46ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-18T22:38:42.333Z2020-08-18T22:38:42.41ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:46.643Z2021-10-21T05:22:46.693ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 18 Aug 2020 22:38:42 GMT
+ date: Thu, 21 Oct 2021 05:22:46 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:42Z
+ string: Subscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:47Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 18 Aug 2020 22:38:42 GMT
- etag: '637333871224100000'
+ date: Thu, 21 Oct 2021 05:22:46 GMT
+ etag: '637703905666930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:42Z
+ string: Subscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:47Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 18 Aug 2020 22:38:42 GMT
- etag: '637333871224100000'
+ date: Thu, 21 Oct 2021 05:22:46 GMT
+ etag: '637703905666930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -115,153 +115,153 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05
response:
body:
- string: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-18T22:38:43Z2020-08-18T22:38:43Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-10-21T05:22:47Z2021-10-21T05:22:47ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-18T22:38:43.0154309Z2020-08-18T22:38:43.0154309Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:47.3020785Z2021-10-21T05:22:47.3020785Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 18 Aug 2020 22:38:42 GMT
- etag: '637333871224100000'
+ date: Thu, 21 Oct 2021 05:22:46 GMT
+ etag: '637703905666930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:43Zhttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-18T22:38:43Z2020-08-18T22:38:43ZSubscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:47Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-10-21T05:22:47Z2021-10-21T05:22:47ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-18T22:38:43.0275143Z2020-08-18T22:38:43.0275143Z2020-08-18T22:38:43.0275143Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:47.2987181Z2021-10-21T05:22:47.2987181Z2021-10-21T05:22:47.3Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 18 Aug 2020 22:38:42 GMT
- etag: '637333871224100000'
+ date: Thu, 21 Oct 2021 05:22:46 GMT
+ etag: '637703905666930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:43Zhttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-18T22:38:43Z2020-08-18T22:38:43ZSubscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:47Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-10-21T05:22:47Z2021-10-21T05:22:47ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-18T22:38:43.0275143Z2020-08-18T22:38:43.0275143Z2020-08-18T22:38:43.0275143Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:47.2987181Z2021-10-21T05:22:47.2987181Z2021-10-21T05:22:47.3Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 18 Aug 2020 22:38:42 GMT
- etag: '637333871224100000'
+ date: Thu, 21 Oct 2021 05:22:46 GMT
+ etag: '637703905666930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 18 Aug 2020 22:38:42 GMT
- etag: '637333871224100000'
+ date: Thu, 21 Oct 2021 05:22:47 GMT
+ etag: '637703905666930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-18T22:38:43Z
+ string: Subscriptionshttps://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:47Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 18 Aug 2020 22:38:42 GMT
- etag: '637333871224100000'
+ date: Thu, 21 Oct 2021 05:22:47 GMT
+ etag: '637703905666930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 18 Aug 2020 22:38:43 GMT
- etag: '637333871224100000'
+ date: Thu, 21 Oct 2021 05:22:47 GMT
+ etag: '637703905666930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestmkljlmkall.servicebus.windows.net/dkoamv?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkoamv?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_invalid.yaml
index e6a949a8d13c..56029e65d8d1 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_invalid.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_invalid.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:08Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:48Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:08 GMT
+ date: Thu, 21 Oct 2021 05:22:48 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:34:09Z2020-09-29T08:34:09Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-10-21T05:22:49Z2021-10-21T05:22:49ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:09.067Z2020-09-29T08:34:09.1ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:49.13Z2021-10-21T05:22:49.253ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:09 GMT
+ date: Thu, 21 Oct 2021 05:22:49 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj?api-version=2021-05
- request:
body: '
@@ -67,32 +67,32 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-09-29T08:34:09Z2020-09-29T08:34:09Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05kwqxc2021-10-21T05:22:49Z2021-10-21T05:22:49ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:34:09.6006723Z2020-09-29T08:34:09.6006723Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:49.763377Z2021-10-21T05:22:49.763377Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:09 GMT
- etag: '637369652491000000'
+ date: Thu, 21 Oct 2021 05:22:49 GMT
+ etag: '637703905692530000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05
- request:
body: '
PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:34:09.600672Z2020-09-29T08:34:09.600672Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
+ type="application/xml">PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:49.763377Z2021-10-21T05:22:49.763377Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
@@ -103,30 +103,30 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2021-05
response:
body:
string: 404Entity 'servicebustestsbname:Topic:dfjfj|iewdm'
- was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:af6bbd50-6759-45df-a1c7-9a23ded598db_B7,
- SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:34:09
+ was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:c9b9442f-38d8-44fd-b6c3-24112a27418f_B2,
+ SystemTracker:NoSystemTracker, Timestamp:2021-10-21T05:22:50
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:34:10 GMT
- etag: '637369652491000000'
+ date: Thu, 21 Oct 2021 05:22:50 GMT
+ etag: '637703905692530000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 404
message: Not Found
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2021-05
- request:
body: '
P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:34:09.600672Z2020-09-29T08:34:09.600672Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
+ type="application/xml">P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:49.763377Z2021-10-21T05:22:49.763377Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
@@ -137,9 +137,9 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2021-05
response:
body:
string: '400The supplied lock time exceeds the allowed
@@ -148,61 +148,61 @@ interactions:
Parameter name: LockDuration
- Actual value was 25.00:00:00. TrackingId:86ead89e-47ae-4859-94b0-47ae0fc151d6_G13,
- SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-09-29T08:34:10'
+ Actual value was 25.00:00:00. TrackingId:3934b2ab-fce1-4559-85d4-9bbac4052ed4_G4,
+ SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2021-10-21T05:22:51'
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:34:11 GMT
- etag: '637369652491000000'
+ date: Thu, 21 Oct 2021 05:22:51 GMT
+ etag: '637703905692530000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 400
message: Bad Request
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:11 GMT
- etag: '637369652491000000'
+ date: Thu, 21 Oct 2021 05:22:51 GMT
+ etag: '637703905692530000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:12 GMT
- etag: '637369652491000000'
+ date: Thu, 21 Oct 2021 05:22:52 GMT
+ etag: '637703905692530000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_success.yaml
index 31caadb9c3c8..da70a654da2c 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_async_mgmt_subscription_update_success.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestqdikv3sdan.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:07:16Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:52Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:15 GMT
+ date: Thu, 21 Oct 2021 05:22:51 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/dfkla?api-version=2017-04dfkla2021-04-22T15:07:16Z2021-04-22T15:07:16Zservicebustestqdikv3sdanhttps://servicebustestkjdemkkogk.servicebus.windows.net/dfkla?api-version=2021-05dfkla2021-10-21T05:22:53Z2021-10-21T05:22:53ZservicebustestkjdemkkogkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-22T15:07:16.813Z2021-04-22T15:07:16.863ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:22:53.427Z2021-10-21T05:22:53.473ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:16 GMT
+ date: Thu, 21 Oct 2021 05:22:53 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/dfkla?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfkla?api-version=2021-05
- request:
body: '
@@ -67,26 +67,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:07:17Z2021-04-22T15:07:17Zservicebustestqdikv3sdanhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:54Z2021-10-21T05:22:54ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:07:17.94Z2021-04-22T15:07:17.983ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:54.363Z2021-10-21T05:22:54.477ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:17 GMT
+ date: Thu, 21 Oct 2021 05:22:54 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: '
@@ -100,32 +100,32 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:18Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:07:18.6307647Z2021-04-22T15:07:18.6307647Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:55.0780438Z2021-10-21T05:22:55.0780438Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:18 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: '
PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:07:18.630764Z2021-04-22T15:07:18.630764Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
+ type="application/xml">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:55.078043Z2021-10-21T05:22:55.078043Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
@@ -136,517 +136,517 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:19Z2021-04-22T15:07:19Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:07:19.099519Z2021-04-22T15:07:19.099519Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:55.2186685Z2021-10-21T05:22:55.2186685Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:18 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:19Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:19.109132Z2021-04-22T15:07:18.640382Z00000P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:55.0755422Z2021-10-21T05:22:55.2320975Z2021-10-21T05:22:55.077Z00000P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:18 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: '
PT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:19.109132Z2021-04-22T15:07:18.640382Z00000PT10MAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:55.075542Z2021-10-21T05:22:55.232097Z2021-10-21T05:22:55.077Z00000PT10MAvailable'
headers:
Accept:
- application/xml
Content-Length:
- - '1382'
+ - '1379'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:19Z2021-04-22T15:07:19Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:19.6308711Z2021-04-22T15:07:19.6308711Z0001-01-01T00:00:00PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:55.3124142Z2021-10-21T05:22:55.3124142Z0001-01-01T00:00:00PT10MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:19 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:19Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:19.640397Z2021-04-22T15:07:18.640382Z00000PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:55.0755422Z2021-10-21T05:22:55.3258927Z2021-10-21T05:22:55.077Z00000PT10MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:19 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: '
PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui2021-04-22T15:07:18.640382Z2021-04-22T15:07:19.640397Z2021-04-22T15:07:18.640382Z00000sb://servicebustestqdikv3sdan.servicebus.windows.net/fjruiPT10MAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui2021-10-21T05:22:55.075542Z2021-10-21T05:22:55.325892Z2021-10-21T05:22:55.077Z00000sb://servicebustestkjdemkkogk.servicebus.windows.net/fjruiPT10MAvailable'
headers:
Accept:
- application/xml
Content-Length:
- - '1584'
+ - '1581'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestqdikv3sdan.servicebus.windows.net%2Ffjrui&sig=V9CJjOZTHITYzCQRNuCbQs9ndIkF4OGxI2SpwKfd2Fw%3d&se=1619107640&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Ffjrui&sig=37HSHCuIb%2fls9vEGlcqecfM67Ikm3t%2bB9UhmFKPcnS0%3d&se=1634797375&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestqdikv3sdan.servicebus.windows.net%2Ffjrui&sig=V9CJjOZTHITYzCQRNuCbQs9ndIkF4OGxI2SpwKfd2Fw%3d&se=1619107640&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Ffjrui&sig=37HSHCuIb%2fls9vEGlcqecfM67Ikm3t%2bB9UhmFKPcnS0%3d&se=1634797375&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:20Z2021-04-22T15:07:20Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui2021-04-22T15:07:20.2557711Z2021-04-22T15:07:20.2557711Z0001-01-01T00:00:00sb://servicebustestqdikv3sdan.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui2021-10-21T05:22:55.4374139Z2021-10-21T05:22:55.4374139Z0001-01-01T00:00:00sb://servicebustestkjdemkkogk.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:19 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:20Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui2021-04-22T15:07:18.640382Z2021-04-22T15:07:20.2654414Z2021-04-22T15:07:18.640382Z00000sb://servicebustestqdikv3sdan.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui2021-10-21T05:22:55.0755422Z2021-10-21T05:22:55.4508895Z2021-10-21T05:22:55.077Z00000sb://servicebustestkjdemkkogk.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:20 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: '
PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/dfkla2021-04-22T15:07:18.640382Z2021-04-22T15:07:20.265441Z2021-04-22T15:07:18.640382Z00000sb://servicebustestqdikv3sdan.servicebus.windows.net/dfklaP10675199DT2H48M5.477539SAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/dfkla2021-10-21T05:22:55.075542Z2021-10-21T05:22:55.450889Z2021-10-21T05:22:55.077Z00000sb://servicebustestkjdemkkogk.servicebus.windows.net/dfklaP10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
Content-Length:
- - '1604'
+ - '1601'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestqdikv3sdan.servicebus.windows.net%2Fdfkla&sig=eC1hcdk1FuXm%2bO2%2fSpFTgALuYcCxe4sxzlPI1O8%2fun4%3d&se=1619107640&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fdfkla&sig=CxrwY8DbARKVzR7QBI36TtXMBDCqnEAVyKMkBCXW80k%3d&se=1634797375&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestqdikv3sdan.servicebus.windows.net%2Fdfkla&sig=eC1hcdk1FuXm%2bO2%2fSpFTgALuYcCxe4sxzlPI1O8%2fun4%3d&se=1619107640&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Fdfkla&sig=CxrwY8DbARKVzR7QBI36TtXMBDCqnEAVyKMkBCXW80k%3d&se=1634797375&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:20Z2021-04-22T15:07:20Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/dfkla2021-04-22T15:07:20.803074Z2021-04-22T15:07:20.803074Z0001-01-01T00:00:00sb://servicebustestqdikv3sdan.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/dfkla2021-10-21T05:22:55.5311668Z2021-10-21T05:22:55.5311668Z0001-01-01T00:00:00sb://servicebustestkjdemkkogk.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:20 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:20Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestqdikv3sdan.servicebus.windows.net/dfkla2021-04-22T15:07:18.640382Z2021-04-22T15:07:20.8123582Z2021-04-22T15:07:18.640382Z00000sb://servicebustestqdikv3sdan.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/dfkla2021-10-21T05:22:55.0755422Z2021-10-21T05:22:55.5289774Z2021-10-21T05:22:55.077Z00000sb://servicebustestkjdemkkogk.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:20 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: '
PT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:20.812358Z2021-04-22T15:07:18.640382Z00000P10675199DT2H48M5.477539SAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:55.075542Z2021-10-21T05:22:55.528977Z2021-10-21T05:22:55.077Z00000P10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
Content-Length:
- - '1402'
+ - '1399'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:21Z2021-04-22T15:07:21Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:21.3342949Z2021-04-22T15:07:21.3342949Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:55.6405505Z2021-10-21T05:22:55.6405505Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:20 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:21Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:21.3496212Z2021-04-22T15:07:18.640382Z00000P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:55.0755422Z2021-10-21T05:22:55.6539773Z2021-10-21T05:22:55.077Z00000P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:21 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: '
PT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:21.349621Z2021-04-22T15:07:18.640382Z00000PT10M1SAvailable'
+ type="application/xml">PT3M3SfalsePT11M2Struetrue014trueActive2021-10-21T05:22:55.075542Z2021-10-21T05:22:55.653977Z2021-10-21T05:22:55.077Z00000PT10M1SAvailable'
headers:
Accept:
- application/xml
Content-Length:
- - '1387'
+ - '1384'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:21Z2021-04-22T15:07:21Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:07:21.8655447Z2021-04-22T15:07:21.8655447Z0001-01-01T00:00:00PT10M1SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT3M3SfalsePT11M2Struetrue014trueActive2021-10-21T05:22:55.734292Z2021-10-21T05:22:55.734292Z0001-01-01T00:00:00PT10M1SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:21 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:21Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:21.8976192Z2021-04-22T15:07:18.640382Z00000PT10M1SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT3M3SfalsePT11M2Struetrue014trueActive2021-10-21T05:22:55.0755422Z2021-10-21T05:22:55.7394284Z2021-10-21T05:22:55.077Z00000PT10M1SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:21 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: '
PT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:21.897619Z2021-04-22T15:07:18.640382Z00000PT15MAvailable'
+ type="application/xml">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:22:55.075542Z2021-10-21T05:22:55.739428Z2021-10-21T05:22:55.077Z00000PT15MAvailable'
headers:
Accept:
- application/xml
Content-Length:
- - '1383'
+ - '1380'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:07:22Z2021-04-22T15:07:22Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:07:22.4436631Z2021-04-22T15:07:22.4436631Z0001-01-01T00:00:00PT15MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:22:55.8280423Z2021-10-21T05:22:55.8280423Z0001-01-01T00:00:00PT15MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:21 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:07:18Z2021-04-22T15:07:22Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:55Z2021-10-21T05:22:55ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:07:18.640382Z2021-04-22T15:07:22.4622355Z2021-04-22T15:07:18.640382Z00000PT15MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:22:55.0755422Z2021-10-21T05:22:55.8331659Z2021-10-21T05:22:55.077Z00000PT15MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:07:22 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:07:22 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:55 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:07:23 GMT
- etag: '637547008379830000'
+ date: Thu, 21 Oct 2021 05:22:56 GMT
+ etag: '637703905744770000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:07:23 GMT
- etag: '637547008368630000'
+ date: Thu, 21 Oct 2021 05:22:56 GMT
+ etag: '637703905734730000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestqdikv3sdan.servicebus.windows.net/dfkla?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfkla?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_error.yaml
index b6c32532ecb2..ef0e635e79a4 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_error.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_error.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestqwlgxkbg2s.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:55:39Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:57Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 02 Mar 2021 19:55:39 GMT
+ date: Thu, 21 Oct 2021 05:22:57 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-03-02T19:55:40Z2021-03-02T19:55:40Zservicebustestqwlgxkbg2shttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:57Z2021-10-21T05:22:57ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:55:40.3Z2021-03-02T19:55:40.337ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:57.87Z2021-10-21T05:22:57.927ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 02 Mar 2021 19:55:40 GMT
+ date: Thu, 21 Oct 2021 05:22:58 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: '
@@ -67,69 +67,69 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-03-02T19:55:40Z2021-03-02T19:55:40Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:58Z2021-10-21T05:22:58ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-03-02T19:55:40.837581Z2021-03-02T19:55:40.837581Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:58.3715526Z2021-10-21T05:22:58.3715526Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 02 Mar 2021 19:55:40 GMT
- etag: '637503117403370000'
+ date: Thu, 21 Oct 2021 05:22:58 GMT
+ etag: '637703905779270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 02 Mar 2021 19:55:40 GMT
- etag: '637503117403370000'
+ date: Thu, 21 Oct 2021 05:22:58 GMT
+ etag: '637703905779270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 02 Mar 2021 19:55:40 GMT
- etag: '637503117403370000'
+ date: Thu, 21 Oct 2021 05:22:59 GMT
+ etag: '637703905779270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestqwlgxkbg2s.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_success.yaml
index 72644411f6f0..d77fdfb5c38a 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_subscriptions_async.test_mgmt_subscription_async_update_dict_success.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebusteste2jcyl55n4.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:08:57Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:59Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:56 GMT
+ date: Thu, 21 Oct 2021 05:22:59 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:08:58Z2021-04-22T15:08:58Zservicebusteste2jcyl55n4https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:23:00Z2021-10-21T05:23:00ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:08:58Z2021-04-22T15:08:58.107ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:00.11Z2021-10-21T05:23:00.18ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:57 GMT
+ date: Thu, 21 Oct 2021 05:23:00 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: '
@@ -67,27 +67,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:08:58Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:23:00Z2021-10-21T05:23:00ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:08:58.8292852Z2021-04-22T15:08:58.8292852Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:23:00.7157721Z2021-10-21T05:23:00.7157721Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:58 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:00 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: '
@@ -103,55 +103,55 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:08:59Z2021-04-22T15:08:59Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:23:00Z2021-10-21T05:23:00ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:08:59.1350835Z2021-04-22T15:08:59.1350835Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:23:00.8876632Z2021-10-21T05:23:00.8876632Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:58 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:00 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:08:59Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:23:00Z2021-10-21T05:23:00ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:08:58.8424999Z2021-04-22T15:08:59.1461603Z2021-04-22T15:08:58.843Z00000P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:23:00.7139176Z2021-10-21T05:23:00.8857708Z2021-10-21T05:23:00.7139176Z00000P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:58 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:00 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: '
@@ -167,60 +167,60 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:08:59Z2021-04-22T15:08:59Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:23:00Z2021-10-21T05:23:00ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:08:59.6663385Z2021-04-22T15:08:59.6663385Z0001-01-01T00:00:00PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:23:00.9813874Z2021-10-21T05:23:00.9813874Z0001-01-01T00:00:00PT10MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:58 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:00 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:08:59Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:23:00Z2021-10-21T05:23:00ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:08:58.8424999Z2021-04-22T15:08:59.6774516Z2021-04-22T15:08:58.843Z00000PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:23:00.7139176Z2021-10-21T05:23:00.9951852Z2021-10-21T05:23:00.7139176Z00000PT10MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:59 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:00 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: '
PT12SfalsePT11Mtruetrue14trueActivesb://servicebusteste2jcyl55n4.servicebus.windows.net/fjruisb://servicebusteste2jcyl55n4.servicebus.windows.net/fjruiPT10MAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue14trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/fjruisb://servicebustestkjdemkkogk.servicebus.windows.net/fjruiPT10MAvailable'
headers:
Accept:
- application/xml
@@ -231,59 +231,59 @@ interactions:
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebusteste2jcyl55n4.servicebus.windows.net%2Ffjrui&sig=Gqpvpph3U7yIOc1H65DXTCvunMmzZYC%2bLdd4tcjh7CA%3d&se=1619107740&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Ffjrui&sig=Uhl%2fNA2oLWgxVFSQEW5j4g2pJbI4jTyhMgNhbA00YKA%3d&se=1634797381&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebusteste2jcyl55n4.servicebus.windows.net%2Ffjrui&sig=Gqpvpph3U7yIOc1H65DXTCvunMmzZYC%2bLdd4tcjh7CA%3d&se=1619107740&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestkjdemkkogk.servicebus.windows.net%2Ffjrui&sig=Uhl%2fNA2oLWgxVFSQEW5j4g2pJbI4jTyhMgNhbA00YKA%3d&se=1634797381&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:09:00Z2021-04-22T15:09:00Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:23:01Z2021-10-21T05:23:01ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui2021-04-22T15:09:00.1984576Z2021-04-22T15:09:00.1984576Z0001-01-01T00:00:00sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui2021-10-21T05:23:01.0907585Z2021-10-21T05:23:01.0907585Z0001-01-01T00:00:00sb://servicebustestkjdemkkogk.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:59 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:00 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:09:00Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:23:00Z2021-10-21T05:23:01ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui2021-04-22T15:08:58.8424999Z2021-04-22T15:09:00.2087017Z2021-04-22T15:08:58.843Z00000sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui2021-10-21T05:23:00.7139176Z2021-10-21T05:23:01.1045461Z2021-10-21T05:23:00.7139176Z00000sb://servicebustestkjdemkkogk.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:59 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:00 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: '
@@ -299,97 +299,97 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:09:00Z2021-04-22T15:09:00Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:23:01Z2021-10-21T05:23:01ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:09:00.7297139Z2021-04-22T15:09:00.7297139Z0001-01-01T00:00:00PT15MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:23:01.1854176Z2021-10-21T05:23:01.1854176Z0001-01-01T00:00:00PT15MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:08:59 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:01 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:08:58Z2021-04-22T15:09:00Zsb://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:23:00Z2021-10-21T05:23:01ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:08:58.8424999Z2021-04-22T15:09:00.7243362Z2021-04-22T15:08:58.843Z00000PT15MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:23:00.7139176Z2021-10-21T05:23:01.1826706Z2021-10-21T05:23:00.7139176Z00000PT15MAvailablefalse
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 15:09:00 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:01 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:09:00 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:01 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 15:09:01 GMT
- etag: '637547009381070000'
+ date: Thu, 21 Oct 2021 05:23:01 GMT
+ etag: '637703905801800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebusteste2jcyl55n4.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_basic_v2017_04.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_basic_v2017_04.yaml
new file mode 100644
index 000000000000..509c8b50c5fa
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_basic_v2017_04.yaml
@@ -0,0 +1,356 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:23:02Z
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:01 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:23:02Z2021-10-21T05:23:02ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:02.65Z2021-10-21T05:23:02.717ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:02 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 201
+ message: Created
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:23:03Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:23:02Z2021-10-21T05:23:02ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:02.65Z2021-10-21T05:23:02.717Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:02 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.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/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2021-10-21T05:23:02Z2021-10-21T05:23:02ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:02.65Z2021-10-21T05:23:02.717Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:02 GMT
+ etag: '637703905827170000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 21 Oct 2021 05:23:03 GMT
+ etag: '637703905827170000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:23:04Z
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:03 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'TopicDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:3bfe1379-653c-488f-b23a-a5907351db91_G7, SystemTracker:servicebustestsbname.servicebus.windows.net:topic_can_not_be_created,
+ Timestamp:2021-10-21T05:23:04
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:04 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_can_not_be_created?api-version=2017-04
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:23:05Z2021-10-21T05:23:05ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:05.313Z2021-10-21T05:23:05.367ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:05 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 201
+ message: Created
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:23:06Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:23:05Z2021-10-21T05:23:05ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:05.313Z2021-10-21T05:23:05.367Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:06 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.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/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2021-10-21T05:23:05Z2021-10-21T05:23:05ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:05.313Z2021-10-21T05:23:05.367Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:06 GMT
+ etag: '637703905853670000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 21 Oct 2021 05:23:06 GMT
+ etag: '637703905853670000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2017-04
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:23:07Z
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:06 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'TopicDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:6d7328a4-d74a-4c37-9c3b-47844b42b6c3_G4, SystemTracker:servicebustestsbname.servicebus.windows.net:topic_can_not_be_created,
+ Timestamp:2021-10-21T05:23:07
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:07 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_can_not_be_created?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 fde1c3a26598..9e14c089b170 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_by_name.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_by_name.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:16Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:07Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:15 GMT
+ date: Thu, 21 Oct 2021 05:23:07 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,74 +34,74 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:34:16Z2020-09-29T08:34:16Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-10-21T05:23:08Z2021-10-21T05:23:08ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:16.837Z2020-09-29T08:34:16.867ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:08.34Z2021-10-21T05:23:08.453ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:17 GMT
+ date: Thu, 21 Oct 2021 05:23:08 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-09-29T08:34:16Z2020-09-29T08:34:16Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05topic_testaddf2021-10-21T05:23:08Z2021-10-21T05:23:08ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:16.837Z2020-09-29T08:34:16.867Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:08.34Z2021-10-21T05:23:08.453Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:17 GMT
- etag: '637369652568670000'
+ date: Thu, 21 Oct 2021 05:23:08 GMT
+ etag: '637703905884530000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:17 GMT
- etag: '637369652568670000'
+ date: Thu, 21 Oct 2021 05:23:09 GMT
+ etag: '637703905884530000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/topic_testaddf?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_duplicate.yaml
index a22b77f6778e..1dcbbabb4649 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_duplicate.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_duplicate.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:18Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:10Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:18 GMT
+ date: Thu, 21 Oct 2021 05:23:09 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,26 +34,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:34:19Z2020-09-29T08:34:19Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-10-21T05:23:10Z2021-10-21T05:23:10ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:19.127Z2020-09-29T08:34:19.16ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:10.48Z2021-10-21T05:23:10.567ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:19 GMT
+ date: Thu, 21 Oct 2021 05:23:10 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05
- request:
body: '
@@ -67,46 +67,46 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
string: 409SubCode=40900. Conflict. You're requesting
an operation that isn't allowed in the resource's current state. To know more
- visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:17fbd43a-fc98-4ef3-887e-8b55303a1ffd_G5,
- SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-09-29T08:34:19
+ visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:12bcd4fd-1e6a-40d3-9888-36256f2a27fd_G8,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2021-10-21T05:23:11
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:34:19 GMT
- etag: '637369652591600000'
+ date: Thu, 21 Oct 2021 05:23:10 GMT
+ etag: '637703905905670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 409
message: Conflict
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:19 GMT
- etag: '637369652591600000'
+ date: Thu, 21 Oct 2021 05:23:11 GMT
+ etag: '637703905905670000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dqkodq?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_with_topic_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_with_topic_description.yaml
index e49b0ba035e0..5c34c427afa8 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_with_topic_description.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_create_with_topic_description.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestifpshnuf7z.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T16:10:59Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:12Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 15 Apr 2021 16:10:58 GMT
+ date: Thu, 21 Oct 2021 05:23:11 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestifpshnuf7z.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,54 +34,54 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
- string: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-15T16:10:59Z2021-04-15T16:11:00Zservicebustestifpshnuf7zhttps://servicebustestkjdemkkogk.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-10-21T05:23:12Z2021-10-21T05:23:12ZservicebustestkjdemkkogkPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:10:59.67Z2021-04-15T16:11:00.473ZfalsePT10MtrueAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-10-21T05:23:12.753Z2021-10-21T05:23:12.973ZfalsePT10MtrueAvailablefalsetrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:11:00 GMT
+ date: Thu, 21 Oct 2021 05:23:12 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2021-04-15T16:10:59Z2021-04-15T16:11:00Zservicebustestifpshnuf7zhttps://servicebustestkjdemkkogk.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-10-21T05:23:12Z2021-10-21T05:23:12ZservicebustestkjdemkkogkPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:10:59.67Z2021-04-15T16:11:00.473Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-10-21T05:23:12.753Z2021-10-21T05:23:12.973Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:11:00 GMT
- etag: '637540998604730000'
+ date: Thu, 21 Oct 2021 05:23:12 GMT
+ etag: '637703905929730000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05
- request:
body: '
@@ -95,96 +95,127 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05
response:
body:
- string: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?api-version=2017-04dkozq2021-04-15T16:11:01Z2021-04-15T16:11:02Zservicebustestifpshnuf7zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dkozq?api-version=2021-05dkozq2021-10-21T05:23:13Z2021-10-21T05:23:14ZservicebustestkjdemkkogkPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:11:01.717Z2021-04-15T16:11:02.163ZfalsePT10MtrueAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-10-21T05:23:13.907Z2021-10-21T05:23:14ZfalsePT10MtrueAvailablefalsetrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:11:01 GMT
+ date: Thu, 21 Oct 2021 05:23:13 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkozq?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkozq?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?enrich=false&api-version=2017-04dkozq2021-04-15T16:11:01Z2021-04-15T16:11:02Zservicebustestifpshnuf7zhttps://servicebustestkjdemkkogk.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05dkozq2021-10-21T05:23:13Z2021-10-21T05:23:14ZservicebustestkjdemkkogkPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:11:01.717Z2021-04-15T16:11:02.163Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-10-21T05:23:13.907Z2021-10-21T05:23:14Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 15 Apr 2021 16:11:02 GMT
- etag: '637540998621630000'
+ date: Thu, 21 Oct 2021 05:23:13 GMT
+ etag: '637703905940000000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/famviq?api-version=2021-05
+ response:
+ body:
+ string: 400SubCode=40000. Bad Request. To know more
+ visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:00d39985-e2bd-4a47-8718-05ba9438eddd_G15,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:famviq, Timestamp:2021-10-21T05:23:14
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:14 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/famviq?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 16:11:03 GMT
- etag: '637540998604730000'
+ date: Thu, 21 Oct 2021 05:23:14 GMT
+ etag: '637703905929730000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestifpshnuf7z.servicebus.windows.net/iweidk?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iweidk?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 15 Apr 2021 16:11:04 GMT
- etag: '637540998621630000'
+ date: Thu, 21 Oct 2021 05:23:15 GMT
+ etag: '637703905940000000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestifpshnuf7z.servicebus.windows.net/dkozq?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dkozq?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_delete.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_delete.yaml
index a2a8dc28b5f3..abd82f16d5ea 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_delete.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_delete.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:24Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:16Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:23 GMT
+ date: Thu, 21 Oct 2021 05:23:15 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,54 +34,54 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:23:16Z2021-10-21T05:23:16ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:16.76Z2021-10-21T05:23:16.787ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:24 GMT
+ date: Thu, 21 Oct 2021 05:23:16 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:25Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkTopicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:17Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:23:16Z2021-10-21T05:23:16ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:16.76Z2021-10-21T05:23:16.787Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:24 GMT
+ date: Thu, 21 Oct 2021 05:23:16 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -95,208 +95,208 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:23:18Z2021-10-21T05:23:18ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:18.033Z2021-10-21T05:23:18.127ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:25 GMT
+ date: Thu, 21 Oct 2021 05:23:17 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:27Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkTopicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:18Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:23:16Z2021-10-21T05:23:16ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:16.76Z2021-10-21T05:23:16.787Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:23:18Z2021-10-21T05:23:18ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:18.033Z2021-10-21T05:23:18.127Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:26 GMT
+ date: Thu, 21 Oct 2021 05:23:18 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:34:24Z2020-09-29T08:34:24Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05test_topic2021-10-21T05:23:16Z2021-10-21T05:23:16ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:24.67Z2020-09-29T08:34:24.697Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:16.76Z2021-10-21T05:23:16.787Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:26 GMT
- etag: '637369652646970000'
+ date: Thu, 21 Oct 2021 05:23:18 GMT
+ etag: '637703905967870000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:26 GMT
- etag: '637369652646970000'
+ date: Thu, 21 Oct 2021 05:23:18 GMT
+ etag: '637703905967870000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:28Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkTopicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:19Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:23:18Z2021-10-21T05:23:18ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:18.033Z2021-10-21T05:23:18.127Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:27 GMT
+ date: Thu, 21 Oct 2021 05:23:19 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-09-29T08:34:26Z2020-09-29T08:34:26Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2021-05txt/.-_1232021-10-21T05:23:18Z2021-10-21T05:23:18ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:26.137Z2020-09-29T08:34:26.19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:18.033Z2021-10-21T05:23:18.127Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:27 GMT
- etag: '637369652661900000'
+ date: Thu, 21 Oct 2021 05:23:19 GMT
+ etag: '637703905981270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:27 GMT
- etag: '637369652661900000'
+ date: Thu, 21 Oct 2021 05:23:19 GMT
+ etag: '637703905981270000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:29Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:20Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:28 GMT
+ date: Thu, 21 Oct 2021 05:23:19 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_properties_basic.yaml
index 7d479e7ee497..cc010a9e8cba 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_properties_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_get_runtime_properties_basic.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:39Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:21Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:39 GMT
+ date: Thu, 21 Oct 2021 05:23: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,74 +34,74 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:40Z2020-08-17T08:05:40Zservicebustest32ip2wgoaahttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:23:21Z2021-10-21T05:23:21ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:40.177Z2020-08-17T08:05:40.207ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:21.723Z2021-10-21T05:23:21.757ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:40 GMT
+ date: Thu, 21 Oct 2021 05:23: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/test_topic?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-08-17T08:05:40Z2020-08-17T08:05:40Zservicebustest32ip2wgoaahttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05test_topic2021-10-21T05:23:21Z2021-10-21T05:23:21ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:40.177Z2020-08-17T08:05:40.207Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:21.723Z2021-10-21T05:23:21.757Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:40 GMT
- etag: '637332483402070000'
+ date: Thu, 21 Oct 2021 05:23:21 GMT
+ etag: '637703906017570000'
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://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 17 Aug 2020 08:05:40 GMT
- etag: '637332483402070000'
+ date: Thu, 21 Oct 2021 05:23:22 GMT
+ etag: '637703906017570000'
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://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list.yaml
index d373bc43a138..c4285bede78d 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list.yaml
@@ -5,44 +5,44 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:32Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:23Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:32 GMT
+ date: Thu, 21 Oct 2021 05:23:23 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:33Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:23Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:32 GMT
+ date: Thu, 21 Oct 2021 05:23:23 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -56,26 +56,26 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:34:33Z2020-09-29T08:34:33Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic_1?api-version=2021-05test_topic_12021-10-21T05:23:24Z2021-10-21T05:23:24ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:33.473Z2020-09-29T08:34:33.503ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:24.237Z2021-10-21T05:23:24.31ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:33 GMT
+ date: Thu, 21 Oct 2021 05:23:24 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic_1?api-version=2021-05
- request:
body: '
@@ -89,124 +89,124 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:34:34Z2020-09-29T08:34:34Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic_2?api-version=2021-05test_topic_22021-10-21T05:23:25Z2021-10-21T05:23:25ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:34.413Z2020-09-29T08:34:34.51ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:25.09Z2021-10-21T05:23:25.12ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:34 GMT
+ date: Thu, 21 Oct 2021 05:23:25 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic_2?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:35Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:34:33Z2020-09-29T08:34:33Zservicebustestrm7a5oi5hkTopicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:25Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic_1?api-version=2021-05test_topic_12021-10-21T05:23:24Z2021-10-21T05:23:24ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:33.473Z2020-09-29T08:34:33.503Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:34:34Z2020-09-29T08:34:34Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:24.237Z2021-10-21T05:23:24.31Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic_2?api-version=2021-05test_topic_22021-10-21T05:23:25Z2021-10-21T05:23:25ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:34.413Z2020-09-29T08:34:34.51Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:25.09Z2021-10-21T05:23:25.12Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:35 GMT
+ date: Thu, 21 Oct 2021 05:23:25 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:36 GMT
- etag: '637369652735030000'
+ date: Thu, 21 Oct 2021 05:23:26 GMT
+ etag: '637703906043100000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic_1?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:36 GMT
- etag: '637369652745100000'
+ date: Thu, 21 Oct 2021 05:23:26 GMT
+ etag: '637703906051200000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/test_topic_2?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:37Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:27Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:37 GMT
+ date: Thu, 21 Oct 2021 05:23:26 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_properties.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_properties.yaml
index 582c686597f3..3068fd0abf55 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_properties.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_list_runtime_properties.yaml
@@ -5,66 +5,66 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:47Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:27Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:47 GMT
+ date: Thu, 21 Oct 2021 05:23: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:48Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:28Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:48 GMT
+ date: Thu, 21 Oct 2021 05:23: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:48Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:28Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:48 GMT
+ date: Thu, 21 Oct 2021 05:23: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -78,124 +78,124 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:49Z2020-08-17T08:05:49Zservicebustest32ip2wgoaahttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:23:29Z2021-10-21T05:23:29ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:49.45Z2020-08-17T08:05:49.503ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:29.247Z2021-10-21T05:23:29.32ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:49 GMT
+ date: Thu, 21 Oct 2021 05:23:28 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://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:50Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:49Z2020-08-17T08:05:49Zservicebustest32ip2wgoaaTopicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:30Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:23:29Z2021-10-21T05:23:29ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:49.45Z2020-08-17T08:05:49.503Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:29.247Z2021-10-21T05:23:29.32Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:50 GMT
+ date: Thu, 21 Oct 2021 05:23: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:51Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:05:49Z2020-08-17T08:05:49Zservicebustest32ip2wgoaaTopicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:30Zhttps://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:23:29Z2021-10-21T05:23:29ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:05:49.45Z2020-08-17T08:05:49.503Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:29.247Z2021-10-21T05:23:29.32Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:51 GMT
+ date: Thu, 21 Oct 2021 05:23: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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 17 Aug 2020 08:05:51 GMT
- etag: '637332483495030000'
+ date: Thu, 21 Oct 2021 05:23:30 GMT
+ etag: '637703906093200000'
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://servicebustestkjdemkkogk.servicebus.windows.net/test_topic?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:05:52Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:31Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 17 Aug 2020 08:05:51 GMT
+ date: Thu, 21 Oct 2021 05:23:30 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://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_premium_create_with_topic_description.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_premium_create_with_topic_description.yaml
new file mode 100644
index 000000000000..2cb526759fca
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_premium_create_with_topic_description.yaml
@@ -0,0 +1,329 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
+ response:
+ body:
+ string: Topicshttps://servicebustestruiyxx3yqv.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:32Z
+ headers:
+ content-type: application/atom+xml;type=feed;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:31 GMT
+ server: Microsoft-HTTPAPI/2.0
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
+- request:
+ body: '
+
+ PT11M3072PT12MtruePT10M12345'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '605'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-10-21T05:23:32Z2021-10-21T05:23:32Zservicebustestruiyxx3yqvPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:32.557Z2021-10-21T05:23:32.91ZtruePT10MfalseAvailablefalsefalse12345
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:33 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 201
+ message: Created
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/iweidk?api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-10-21T05:23:32Z2021-10-21T05:23:32Zservicebustestruiyxx3yqvPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:32.557Z2021-10-21T05:23:32.91Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse12345
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:33 GMT
+ etag: '637703906129100000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05
+- request:
+ body: '
+
+ PT11M3072PT12MtruePT10M'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '545'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkozq?api-version=2021-05dkozq2021-10-21T05:23:33Z2021-10-21T05:23:33Zservicebustestruiyxx3yqvPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:33.82Z2021-10-21T05:23:33.9ZtruePT10MfalseAvailablefalsefalse1024
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:34 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 201
+ message: Created
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkozq?api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05dkozq2021-10-21T05:23:33Z2021-10-21T05:23:33Zservicebustestruiyxx3yqvPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:33.82Z2021-10-21T05:23:33.9Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse1024
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:34 GMT
+ etag: '637703906139000000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05
+- request:
+ body: '
+
+ 1023'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05
+ response:
+ body:
+ string: '400SubCode=40000. The property value for
+ ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace
+ ''servicebustestsbname'' is using ''Premium'' tier.
+
+ Parameter name: MaxMessageSizeInKilobytes
+
+ Actual value was 1023. TrackingId:8471c1b8-0118-4f8e-8cc5-3bd3b516bc46_G5,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-10-21T05:23:34'
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:34 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/rekocd?api-version=2021-05
+- request:
+ body: '
+
+ 102401'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '326'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05
+ response:
+ body:
+ string: '400SubCode=40000. The property value for
+ ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace
+ ''servicebustestsbname'' is using ''Premium'' tier.
+
+ Parameter name: MaxMessageSizeInKilobytes
+
+ Actual value was 102401. TrackingId:c777db06-7a95-4b19-8d89-ef4cb70f04f6_G5,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-10-21T05:23:35'
+ headers:
+ content-type: application/xml; charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:34 GMT
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 400
+ message: Bad Request
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/rekocd?api-version=2021-05
+- request:
+ body: '
+
+ PT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:33.820Z2021-10-21T05:23:33.900Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsefalse54321'
+ headers:
+ Accept:
+ - application/xml
+ Content-Length:
+ - '1708'
+ Content-Type:
+ - application/atom+xml
+ If-Match:
+ - '*'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkozq?api-version=2021-05dkozq2021-10-21T05:23:35Zservicebustestruiyxx3yqvPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:33.82Z2021-10-21T05:23:33.9Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse54321
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:34 GMT
+ etag: '637703906139000000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkozq?api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05dkozq2021-10-21T05:23:33Z2021-10-21T05:23:35Zservicebustestruiyxx3yqvPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:33.82Z2021-10-21T05:23:35.06Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse54321
+ headers:
+ content-type: application/atom+xml;type=entry;charset=utf-8
+ date: Thu, 21 Oct 2021 05:23:35 GMT
+ etag: '637703906150600000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ transfer-encoding: chunked
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkozq?enrich=false&api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 21 Oct 2021 05:23:35 GMT
+ etag: '637703906129100000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/iweidk?api-version=2021-05
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/dkozq?api-version=2021-05
+ response:
+ body:
+ string: ''
+ headers:
+ content-length: '0'
+ date: Thu, 21 Oct 2021 05:23:36 GMT
+ etag: '637703906150600000'
+ server: Microsoft-HTTPAPI/2.0
+ strict-transport-security: max-age=31536000
+ status:
+ code: 200
+ message: OK
+ url: https://servicebustestruiyxx3yqv.servicebus.windows.net/dkozq?api-version=2021-05
+version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_invalid.yaml
index 47bda95bb21b..a80435f50f89 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_invalid.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_invalid.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:42Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:36Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:42 GMT
+ date: Thu, 21 Oct 2021 05:23:36 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,80 +34,80 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:34:43Z2020-09-29T08:34:43Zservicebustestrm7a5oi5hkhttps://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-10-21T05:23:37Z2021-10-21T05:23:37ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:43.41Z2020-09-29T08:34:43.44ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:37.24Z2021-10-21T05:23:37.283ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Tue, 29 Sep 2020 08:34:43 GMT
+ date: Thu, 21 Oct 2021 05:23:37 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj?api-version=2021-05
- request:
body: '
P10675199DT2H48M5.477539S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:34:43.410Z2020-09-29T08:34:43.440ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse'
+ />Active2021-10-21T05:23:37.240Z2021-10-21T05:23:37.283ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1195'
+ - '1253'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2021-05
response:
body:
string: 404SubCode=40400. Not Found. The Operation
doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions.
- . TrackingId:b1210d9b-78e3-4e12-9088-d9b6c35f4915_G15, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm,
- Timestamp:2020-09-29T08:34:44
+ . TrackingId:45cb6027-7431-447e-b927-4307be9b5d0a_G1, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm,
+ Timestamp:2021-10-21T05:23:38
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:34:44 GMT
+ date: Thu, 21 Oct 2021 05:23:38 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 404
message: Not Found
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/iewdm?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/iewdm?api-version=2021-05
- request:
body: '
P10675199DT2H48M5.477539S1024falseP25Dtrue0falsefalseActive2020-09-29T08:34:43.410Z2020-09-29T08:34:43.440ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse'
+ />Active2021-10-21T05:23:37.240Z2021-10-21T05:23:37.283ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1194'
+ - '1252'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
string: '400SubCode=40000. The value supplied must
@@ -115,39 +115,39 @@ interactions:
Parameter name: DuplicateDetectionHistoryTimeWindow
- Actual value was 25.00:00:00. TrackingId:c205eb47-6640-4b88-9507-0e0d84d6859d_G15,
- SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-09-29T08:34:44'
+ Actual value was 25.00:00:00. TrackingId:5c5840cd-66fb-4a88-9212-a40625780ed2_G1,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2021-10-21T05:23:38'
headers:
content-type: application/xml; charset=utf-8
- date: Tue, 29 Sep 2020 08:34:44 GMT
- etag: '637369652834400000'
+ date: Thu, 21 Oct 2021 05:23:38 GMT
+ etag: '637703906172830000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 400
message: Bad Request
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Tue, 29 Sep 2020 08:34:45 GMT
- etag: '637369652834400000'
+ date: Thu, 21 Oct 2021 05:23:38 GMT
+ etag: '637703906172830000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/dfjfj?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_success.yaml
index a5baedcc6ea2..2a4f5a2ecbed 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_async_mgmt_topic_update_success.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestsqmnqdktqa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T14:57:55Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:39Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:55 GMT
+ date: Thu, 21 Oct 2021 05:23:39 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,310 +34,312 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:56Zservicebustestsqmnqdktqahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:23:39Z2021-10-21T05:23:39ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:56.657ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:39.86ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:57 GMT
+ date: Thu, 21 Oct 2021 05:23:40 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: '
PT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:56.657ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse'
+ />Active2021-10-21T05:23:39.833Z2021-10-21T05:23:39.860ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '1174'
+ - '1232'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:57Zservicebustestsqmnqdktqahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:23:40ZservicebustestkjdemkkogkPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:56.657ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:39.86ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:57 GMT
- etag: '637547002766570000'
+ date: Thu, 21 Oct 2021 05:23:40 GMT
+ etag: '637703906198600000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:57Zservicebustestsqmnqdktqahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:23:39Z2021-10-21T05:23:40ZservicebustestkjdemkkogkPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:57.39Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:40.293Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:57 GMT
- etag: '637547002773900000'
+ date: Thu, 21 Oct 2021 05:23:40 GMT
+ etag: '637703906202930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
- request:
body: '
PT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:57.390Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue'
+ />Active2021-10-21T05:23:39.833Z2021-10-21T05:23:40.293Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue256'
headers:
Accept:
- application/xml
Content-Length:
- - '1647'
+ - '1705'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:58Zservicebustestsqmnqdktqahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:23:40ZservicebustestkjdemkkogkPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:57.39Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:40.293Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:58 GMT
- etag: '637547002773900000'
+ date: Thu, 21 Oct 2021 05:23:40 GMT
+ etag: '637703906202930000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:58Zservicebustestsqmnqdktqahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:23:39Z2021-10-21T05:23:40ZservicebustestkjdemkkogkPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:58.09Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:40.52Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:58 GMT
- etag: '637547002780900000'
+ date: Thu, 21 Oct 2021 05:23:40 GMT
+ etag: '637703906205200000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
- request:
body: '
PT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:58.090Z0001-01-01T00:00:00.000Ztrue000000PT10M1SfalseAvailablefalsetrue'
+ />Active2021-10-21T05:23:39.833Z2021-10-21T05:23:40.520Z0001-01-01T00:00:00.000Ztrue000000PT10M1SfalseAvailablefalsetrue256'
headers:
Accept:
- application/xml
Content-Length:
- - '1653'
+ - '1711'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:58Zservicebustestsqmnqdktqahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:23:40ZservicebustestkjdemkkogkPT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:58.09Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M2S3072falsePT12M3Strue0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:40.52Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:58 GMT
- etag: '637547002780900000'
+ date: Thu, 21 Oct 2021 05:23:40 GMT
+ etag: '637703906205200000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:58Zservicebustestsqmnqdktqahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:23:39Z2021-10-21T05:23:40ZservicebustestkjdemkkogkPT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:58.61Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M2S3072falsePT12M3Strue0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:40.737Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:58 GMT
- etag: '637547002786100000'
+ date: Thu, 21 Oct 2021 05:23:40 GMT
+ etag: '637703906207370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
- request:
body: '
- PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse'
+ PT15M2048falsePT16Mfalse0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:40.737Z0001-01-01T00:00:00.000Zfalse000000PT14MfalseAvailablefalsefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '865'
+ - '1708'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:57:59Zservicebustestsqmnqdktqahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:23:40ZservicebustestkjdemkkogkPT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:40.737Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:59 GMT
- etag: '637547002786100000'
+ date: Thu, 21 Oct 2021 05:23:40 GMT
+ etag: '637703906207370000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:57:56Z2021-04-22T14:57:59Zservicebustestsqmnqdktqahttps://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:23:39Z2021-10-21T05:23:40ZservicebustestkjdemkkogkPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:57:56.437Z2021-04-22T14:57:59.133Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-10-21T05:23:39.833Z2021-10-21T05:23:40.95Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:57:59 GMT
- etag: '637547002791330000'
+ date: Thu, 21 Oct 2021 05:23:41 GMT
+ etag: '637703906209500000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 14:58:00 GMT
- etag: '637547002791330000'
+ date: Thu, 21 Oct 2021 05:23:41 GMT
+ etag: '637703906209500000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestsqmnqdktqa.servicebus.windows.net/fjrui?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjrui?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_error.yaml
index bf528b73941c..eae709363332 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_error.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_error.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustesterxlnliq4u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-19T17:30:33Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:42Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Mon, 19 Apr 2021 17:30:33 GMT
+ date: Thu, 21 Oct 2021 05:23:41 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustesterxlnliq4u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,46 +34,46 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustesterxlnliq4u.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-19T17:30:33Z2021-04-19T17:30:34Zservicebustesterxlnliq4uhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:23:42Z2021-10-21T05:23:42ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-19T17:30:33.93Z2021-04-19T17:30:34.087ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:42.51Z2021-10-21T05:23:42.603ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Mon, 19 Apr 2021 17:30:34 GMT
+ date: Thu, 21 Oct 2021 05:23:42 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustesterxlnliq4u.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Mon, 19 Apr 2021 17:30:35 GMT
- etag: '637544502340870000'
+ date: Thu, 21 Oct 2021 05:23:42 GMT
+ etag: '637703906226030000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustesterxlnliq4u.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_success.yaml
index 3af5eaedc164..b535762b9c27 100644
--- a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/recordings/test_mgmt_topics_async.test_mgmt_topic_async_update_dict_success.yaml
@@ -5,22 +5,22 @@ interactions:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestoklkptksim.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T14:49:38Z
+ string: Topicshttps://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:23:43Z
headers:
content-type: application/atom+xml;type=feed;charset=utf-8
- date: Thu, 22 Apr 2021 14:49:37 GMT
+ date: Thu, 21 Oct 2021 05:23:43 GMT
server: Microsoft-HTTPAPI/2.0
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestoklkptksim.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
- request:
body: '
@@ -34,241 +34,241 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:49:39Z2021-04-22T14:49:39Zservicebustestoklkptksimhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:23:44Z2021-10-21T05:23:44ZservicebustestkjdemkkogkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:49:39.203Z2021-04-22T14:49:39.313ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:44.417Z2021-10-21T05:23:44.48ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:49:38 GMT
+ date: Thu, 21 Oct 2021 05:23:44 GMT
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 201
message: Created
- url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: '
PT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '882'
+ - '940'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:49:40Zservicebustestoklkptksimhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:23:45ZservicebustestkjdemkkogkPT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:49:39 GMT
- etag: '637546997793130000'
+ date: Thu, 21 Oct 2021 05:23:44 GMT
+ etag: '637703906244800000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:49:39Z2021-04-22T14:49:40Zservicebustestoklkptksimhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:23:44Z2021-10-21T05:23:44ZservicebustestkjdemkkogkPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:49:39.203Z2021-04-22T14:49:40Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-10-21T05:23:44.417Z2021-10-21T05:23:44.99Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:49:39 GMT
- etag: '637546997800000000'
+ date: Thu, 21 Oct 2021 05:23:44 GMT
+ etag: '637703906249900000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
- request:
body: '
PT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue'
+ />ActivetruePT10MfalseAvailabletrue256'
headers:
Accept:
- application/xml
Content-Length:
- - '862'
+ - '920'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:49:40Zservicebustestoklkptksimhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:23:45ZservicebustestkjdemkkogkPT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:49:39 GMT
- etag: '637546997800000000'
+ date: Thu, 21 Oct 2021 05:23:44 GMT
+ etag: '637703906249900000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:49:39Z2021-04-22T14:49:40Zservicebustestoklkptksimhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:23:44Z2021-10-21T05:23:45ZservicebustestkjdemkkogkPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:49:39.203Z2021-04-22T14:49:40.527Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:23:44.417Z2021-10-21T05:23:45.13Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:49:40 GMT
- etag: '637546997805270000'
+ date: Thu, 21 Oct 2021 05:23:44 GMT
+ etag: '637703906251300000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
- request:
body: '
PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse'
+ />ActivefalsePT14MfalseAvailablefalse256'
headers:
Accept:
- application/xml
Content-Length:
- - '865'
+ - '923'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:49:41Zservicebustestoklkptksimhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:23:45ZservicebustestkjdemkkogkPT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:49:40 GMT
- etag: '637546997805270000'
+ date: Thu, 21 Oct 2021 05:23:44 GMT
+ etag: '637703906251300000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:49:39Z2021-04-22T14:49:41Zservicebustestoklkptksimhttps://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:23:44Z2021-10-21T05:23:45ZservicebustestkjdemkkogkPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:49:39.203Z2021-04-22T14:49:41.193Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-10-21T05:23:44.417Z2021-10-21T05:23:45.34Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256
headers:
content-type: application/atom+xml;type=entry;charset=utf-8
- date: Thu, 22 Apr 2021 14:49:40 GMT
- etag: '637546997811930000'
+ date: Thu, 21 Oct 2021 05:23:44 GMT
+ etag: '637703906253400000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
transfer-encoding: chunked
status:
code: 200
message: OK
- url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
- request:
body: null
headers:
Accept:
- application/xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
headers:
content-length: '0'
- date: Thu, 22 Apr 2021 14:49:41 GMT
- etag: '637546997811930000'
+ date: Thu, 21 Oct 2021 05:23:45 GMT
+ etag: '637703906253400000'
server: Microsoft-HTTPAPI/2.0
strict-transport-security: max-age=31536000
status:
code: 200
message: OK
- url: https://servicebustestoklkptksim.servicebus.windows.net/fjruid?api-version=2017-04
+ url: https://servicebustestkjdemkkogk.servicebus.windows.net/fjruid?api-version=2021-05
version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_queues_async.py b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_queues_async.py
index 6aeb4108565d..f9dadf2a53be 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
@@ -9,6 +9,7 @@
import msrest
from azure.core.exceptions import HttpResponseError, ResourceNotFoundError, ResourceExistsError
from azure.servicebus.aio.management import ServiceBusAdministrationClient
+from azure.servicebus.management import ApiVersion
from azure.servicebus.management import QueueProperties
from azure.servicebus.aio._base_handler_async import ServiceBusSharedKeyCredential
from azure.servicebus._common.utils import utc_now
@@ -216,7 +217,6 @@ async def test_async_mgmt_queue_create_with_invalid_name(self, servicebus_namesp
with pytest.raises(msrest.exceptions.ValidationError):
await mgmt_service.create_queue('')
-
@CachedResourceGroupPreparer(name_prefix='servicebustest')
@CachedServiceBusNamespacePreparer(name_prefix='servicebustest')
async def test_async_mgmt_queue_create_with_queue_description(self, servicebus_namespace_connection_string, **kwargs):
@@ -224,6 +224,7 @@ async def test_async_mgmt_queue_create_with_queue_description(self, servicebus_n
await clear_queues(mgmt_service)
queue_name = "dkldf"
queue_name_2 = "vjiqjx"
+ queue_name_3 = "clpqza"
topic_name = "aghadh"
await mgmt_service.create_topic(topic_name)
await mgmt_service.create_queue(
@@ -260,6 +261,13 @@ async def test_async_mgmt_queue_create_with_queue_description(self, servicebus_n
max_size_in_megabytes=3072,
requires_session=True
)
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_queue(
+ queue_name_3,
+ max_message_size_in_kilobytes=1024 # basic/standard ties does not support
+ )
+
try:
queue = await mgmt_service.get_queue(queue_name)
assert queue.name == queue_name
@@ -299,6 +307,99 @@ async def test_async_mgmt_queue_create_with_queue_description(self, servicebus_n
await mgmt_service.delete_topic(topic_name)
await mgmt_service.close()
+ @CachedResourceGroupPreparer(name_prefix='servicebustest')
+ @CachedServiceBusNamespacePreparer(name_prefix='servicebustest', sku='Premium')
+ async def test_async_mgmt_queue_premium_create_with_queue_description(self, servicebus_namespace_connection_string,
+ **kwargs):
+ mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string)
+ await clear_queues(mgmt_service)
+ queue_name = "dkldf"
+ queue_name_2 = "vjiqjx"
+ queue_name_3 = "rekocd"
+
+ await mgmt_service.create_queue(
+ queue_name,
+ auto_delete_on_idle=datetime.timedelta(minutes=10),
+ dead_lettering_on_message_expiration=True,
+ default_message_time_to_live=datetime.timedelta(minutes=11),
+ duplicate_detection_history_time_window=datetime.timedelta(minutes=12),
+ enable_batched_operations=True,
+ # enable_express=True,
+ # enable_partitioning=True,
+ lock_duration=datetime.timedelta(seconds=13),
+ max_delivery_count=14,
+ max_size_in_megabytes=3072,
+ # requires_duplicate_detection=True,
+ requires_session=True,
+ max_message_size_in_kilobytes=12345
+ )
+
+ await mgmt_service.create_queue(
+ queue_name_2,
+ auto_delete_on_idle="PT10M1S",
+ dead_lettering_on_message_expiration=True,
+ default_message_time_to_live="PT11M2S",
+ duplicate_detection_history_time_window="PT12M3S",
+ enable_batched_operations=True,
+ lock_duration="PT13S",
+ max_delivery_count=14,
+ max_size_in_megabytes=3072,
+ requires_session=True
+ ) # default max_message_size_in_kilobytes is 1024
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_queue(
+ queue_name_3,
+ max_message_size_in_kilobytes=1023 # min allowed is 1024
+ )
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_queue(
+ queue_name_3,
+ max_message_size_in_kilobytes=102401 # max allowed is 102400
+ )
+
+
+ try:
+ queue = await mgmt_service.get_queue(queue_name)
+ assert queue.name == queue_name
+ assert queue.auto_delete_on_idle == datetime.timedelta(minutes=10)
+ assert queue.dead_lettering_on_message_expiration == True
+ assert queue.default_message_time_to_live == datetime.timedelta(minutes=11)
+ assert queue.duplicate_detection_history_time_window == datetime.timedelta(minutes=12)
+ assert queue.enable_batched_operations == True
+ # assert queue.enable_express == True
+ # assert queue.enable_partitioning == True
+ assert queue.lock_duration == datetime.timedelta(seconds=13)
+ assert queue.max_delivery_count == 14
+ assert queue.max_size_in_megabytes % 3072 == 0
+ # assert queue.requires_duplicate_detection == True
+ assert queue.requires_session == True
+ assert queue.max_message_size_in_kilobytes == 12345
+
+ queue_2 = await mgmt_service.get_queue(queue_name_2)
+ assert queue_2.name == queue_name_2
+ assert queue_2.auto_delete_on_idle == datetime.timedelta(minutes=10, seconds=1)
+ assert queue_2.dead_lettering_on_message_expiration == True
+ assert queue_2.default_message_time_to_live == datetime.timedelta(minutes=11, seconds=2)
+ assert queue_2.duplicate_detection_history_time_window == datetime.timedelta(minutes=12, seconds=3)
+ assert queue_2.enable_batched_operations == True
+ assert queue_2.lock_duration == datetime.timedelta(seconds=13)
+ assert queue_2.max_delivery_count == 14
+ assert queue_2.max_size_in_megabytes % 3072 == 0
+ assert queue_2.requires_session == True
+ assert queue_2.max_message_size_in_kilobytes == 1024
+
+ queue_2.max_message_size_in_kilobytes = 54321
+ await mgmt_service.update_queue(queue_2)
+ queue_2_new = await mgmt_service.get_queue(queue_name_2)
+ assert queue_2_new.max_message_size_in_kilobytes == 54321
+
+ finally:
+ await mgmt_service.delete_queue(queue_name)
+ await mgmt_service.delete_queue(queue_name_2)
+ await mgmt_service.close()
+
@CachedResourceGroupPreparer(name_prefix='servicebustest')
@CachedServiceBusNamespacePreparer(name_prefix='servicebustest')
async def test_async_mgmt_queue_create_duplicate(self, servicebus_namespace_connection_string, **kwargs):
@@ -659,3 +760,41 @@ async def test_mgmt_queue_async_update_dict_error(self, servicebus_namespace_con
await mgmt_service.update_queue(queue_description_only_name)
finally:
await mgmt_service.delete_queue(queue_name)
+
+ @CachedResourceGroupPreparer(name_prefix='servicebustest')
+ @CachedServiceBusNamespacePreparer(name_prefix='servicebustest')
+ async def test_async_mgmt_queue_basic_v2017_04(self, servicebus_namespace_connection_string,
+ servicebus_namespace, servicebus_namespace_key_name,
+ servicebus_namespace_primary_key):
+ mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string, api_version=ApiVersion.V2017_04)
+ await clear_queues(mgmt_service)
+
+ await mgmt_service.create_queue("test_queue")
+ queues = await async_pageable_to_list(mgmt_service.list_queues())
+ assert len(queues) == 1 and queues[0].name == "test_queue"
+ queue = await mgmt_service.get_queue("test_queue")
+ assert queue.name == "test_queue"
+ await mgmt_service.delete_queue("test_queue")
+ queues = await async_pageable_to_list(mgmt_service.list_queues())
+ assert len(queues) == 0
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_queue("queue_can_not_be_created", max_message_size_in_kilobytes=1024)
+
+ fully_qualified_namespace = servicebus_namespace.name + '.servicebus.windows.net'
+ mgmt_service = ServiceBusAdministrationClient(
+ fully_qualified_namespace,
+ credential=ServiceBusSharedKeyCredential(servicebus_namespace_key_name, servicebus_namespace_primary_key),
+ api_version=ApiVersion.V2017_04
+ )
+ await mgmt_service.create_queue("test_queue")
+ queues = await async_pageable_to_list(mgmt_service.list_queues())
+ assert len(queues) == 1 and queues[0].name == "test_queue"
+ queue = await mgmt_service.get_queue("test_queue")
+ assert queue.name == "test_queue"
+ await mgmt_service.delete_queue("test_queue")
+ queues = await async_pageable_to_list(mgmt_service.list_queues())
+ assert len(queues) == 0
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_queue("queue_can_not_be_created", max_message_size_in_kilobytes=1024)
diff --git a/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_topics_async.py b/sdk/servicebus/azure-servicebus/tests/async_tests/mgmt_tests/test_mgmt_topics_async.py
index 751450f42a50..60746935fbc4 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
@@ -10,6 +10,8 @@
import msrest
from azure.servicebus.aio.management import ServiceBusAdministrationClient
from azure.servicebus.management import TopicProperties
+from azure.servicebus.aio._base_handler_async import ServiceBusSharedKeyCredential
+from azure.servicebus.management import ApiVersion
from utilities import get_logger
from azure.core.exceptions import HttpResponseError, ResourceExistsError
@@ -48,6 +50,7 @@ async def test_async_mgmt_topic_create_with_topic_description(self, servicebus_n
await clear_topics(mgmt_service)
topic_name = "iweidk"
topic_name_2 = "dkozq"
+ topic_name_3 = "famviq"
try:
await mgmt_service.create_topic(
topic_name=topic_name,
@@ -88,6 +91,78 @@ async def test_async_mgmt_topic_create_with_topic_description(self, servicebus_n
assert topic_2.enable_express
assert topic_2.enable_partitioning
assert topic_2.max_size_in_megabytes % 3072 == 0
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_topic(
+ topic_name_3,
+ max_message_size_in_kilobytes=1024 # basic/standard ties does not support
+ )
+
+ finally:
+ await mgmt_service.delete_topic(topic_name)
+ await mgmt_service.delete_topic(topic_name_2)
+
+ @CachedResourceGroupPreparer(name_prefix='servicebustest')
+ @CachedServiceBusNamespacePreparer(name_prefix='servicebustest', sku='Premium')
+ async def test_async_mgmt_topic_premium_create_with_topic_description(self, servicebus_namespace_connection_string, **kwargs):
+ mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string)
+ await clear_topics(mgmt_service)
+ topic_name = "iweidk"
+ topic_name_2 = "dkozq"
+ topic_name_3 = "rekocd"
+ try:
+ await mgmt_service.create_topic(
+ topic_name=topic_name,
+ auto_delete_on_idle=datetime.timedelta(minutes=10),
+ default_message_time_to_live=datetime.timedelta(minutes=11),
+ duplicate_detection_history_time_window=datetime.timedelta(minutes=12),
+ enable_batched_operations=True,
+ max_size_in_megabytes=3072,
+ max_message_size_in_kilobytes=12345
+ )
+ topic = await mgmt_service.get_topic(topic_name)
+ assert topic.name == topic_name
+ assert topic.auto_delete_on_idle == datetime.timedelta(minutes=10)
+ assert topic.default_message_time_to_live == datetime.timedelta(minutes=11)
+ assert topic.duplicate_detection_history_time_window == datetime.timedelta(minutes=12)
+ assert topic.enable_batched_operations
+ assert topic.max_size_in_megabytes % 3072 == 0
+ assert topic.max_message_size_in_kilobytes == 12345
+
+ await mgmt_service.create_topic(
+ topic_name=topic_name_2,
+ auto_delete_on_idle="PT10M",
+ default_message_time_to_live="PT11M",
+ duplicate_detection_history_time_window="PT12M",
+ enable_batched_operations=True,
+ max_size_in_megabytes=3072
+ )
+ topic_2 = await mgmt_service.get_topic(topic_name_2)
+ assert topic_2.name == topic_name_2
+ assert topic_2.auto_delete_on_idle == datetime.timedelta(minutes=10)
+ assert topic_2.default_message_time_to_live == datetime.timedelta(minutes=11)
+ assert topic_2.duplicate_detection_history_time_window == datetime.timedelta(minutes=12)
+ assert topic_2.enable_batched_operations
+ assert topic_2.max_size_in_megabytes % 3072 == 0
+ assert topic_2.max_message_size_in_kilobytes == 1024
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_topic(
+ topic_name=topic_name_3,
+ max_message_size_in_kilobytes=1023
+ )
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_topic(
+ topic_name=topic_name_3,
+ max_message_size_in_kilobytes=102401
+ )
+
+ topic_2.max_message_size_in_kilobytes = 54321
+ await mgmt_service.update_topic(topic_2)
+ topic_2_new = await mgmt_service.get_topic(topic_name_2)
+ assert topic_2_new.max_message_size_in_kilobytes == 54321
+
finally:
await mgmt_service.delete_topic(topic_name)
await mgmt_service.delete_topic(topic_name_2)
@@ -400,3 +475,41 @@ async def test_mgmt_topic_async_update_dict_error(self, servicebus_namespace_con
await mgmt_service.update_topic(topic_description_only_name)
finally:
await mgmt_service.delete_topic(topic_name)
+
+ @CachedResourceGroupPreparer(name_prefix='servicebustest')
+ @CachedServiceBusNamespacePreparer(name_prefix='servicebustest')
+ async def test_async_mgmt_topic_basic_v2017_04(self, servicebus_namespace_connection_string, servicebus_namespace,
+ servicebus_namespace_key_name, servicebus_namespace_primary_key):
+ mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string, api_version=ApiVersion.V2017_04)
+ await clear_topics(mgmt_service)
+
+ await mgmt_service.create_topic("test_topic")
+ topics = await async_pageable_to_list(mgmt_service.list_topics())
+ assert len(topics) == 1 and topics[0].name == "test_topic"
+ topic = await mgmt_service.get_topic("test_topic")
+ assert topic.name == "test_topic"
+ await mgmt_service.delete_topic("test_topic")
+ topics = await async_pageable_to_list(mgmt_service.list_topics())
+ assert len(topics) == 0
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_topic("topic_can_not_be_created", max_message_size_in_kilobytes=1024)
+
+ fully_qualified_namespace = servicebus_namespace.name + '.servicebus.windows.net'
+ mgmt_service = ServiceBusAdministrationClient(
+ fully_qualified_namespace,
+ credential=ServiceBusSharedKeyCredential(servicebus_namespace_key_name, servicebus_namespace_primary_key),
+ api_version=ApiVersion.V2017_04
+ )
+
+ await mgmt_service.create_topic("test_topic")
+ topics = await async_pageable_to_list(mgmt_service.list_topics())
+ assert len(topics) == 1 and topics[0].name == "test_topic"
+ topic = await mgmt_service.get_topic("test_topic")
+ assert topic.name == "test_topic"
+ await mgmt_service.delete_topic("test_topic")
+ topics = await async_pageable_to_list(mgmt_service.list_topics())
+ assert len(topics) == 0
+
+ with pytest.raises(HttpResponseError):
+ await mgmt_service.create_topic("topic_can_not_be_created", max_message_size_in_kilobytes=1024)
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_namespaces.test_mgmt_namespace_get_properties.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_namespaces.test_mgmt_namespace_get_properties.yaml
index c8675edd75fd..7edf03ce4ce0 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_namespaces.test_mgmt_namespace_get_properties.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_namespaces.test_mgmt_namespace_get_properties.yaml
@@ -9,21 +9,21 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$namespaceinfo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$namespaceinfo?api-version=2021-05
response:
body:
- string: https://servicebustestv2fvof4o5i.servicebus.windows.net/$namespaceinfo?api-version=2017-04servicebustestv2fvof4o5i2020-08-19T23:16:14Zservicebustestv2fvof4o5ihttps://servicebustestaweyco6xnr.servicebus.windows.net/$namespaceinfo?api-version=2021-05servicebustestaweyco6xnr2021-10-21T05:18:27Zservicebustestaweyco6xnr2020-08-19T23:15:11.6ZStandard2020-08-19T23:15:11.6Zservicebustestv2fvof4o5iMessaging
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">2021-10-21T05:17:26.17ZStandard2021-10-21T05:17:26.17Zservicebustestaweyco6xnrMessaging
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Wed, 19 Aug 2020 23:16:14 GMT
+ - Thu, 21 Oct 2021 05:18:26 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_basic_v2017_04.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_basic_v2017_04.yaml
new file mode 100644
index 000000000000..6da2952bff78
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_basic_v2017_04.yaml
@@ -0,0 +1,461 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:18:27Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:27 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T05:18:28Z2021-10-21T05:18:28Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:28.453Z2021-10-21T05:18:28.53ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:28 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:18:29Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T05:18:28Z2021-10-21T05:18:28Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:28.453Z2021-10-21T05:18:28.53Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:29 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2021-10-21T05:18:28Z2021-10-21T05:18:28Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:28.453Z2021-10-21T05:18:28.53Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:29 GMT
+ etag:
+ - '637703903085300000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:18:29 GMT
+ etag:
+ - '637703903085300000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:18:30Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:30 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/queue_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'QueueDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:77a37da6-f0fc-4b15-81e8-143311a7c686_G13, SystemTracker:servicebustestsbname.servicebus.windows.net:queue_can_not_be_created,
+ Timestamp:2021-10-21T05:18:30
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:30 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T05:18:31Z2021-10-21T05:18:31Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:31.143Z2021-10-21T05:18:31.243ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:31 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:18:32Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T05:18:31Z2021-10-21T05:18:31Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:31.143Z2021-10-21T05:18:31.243Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:31 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2021-10-21T05:18:31Z2021-10-21T05:18:31Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:31.143Z2021-10-21T05:18:31.243Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:31 GMT
+ etag:
+ - '637703903112430000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:18:32 GMT
+ etag:
+ - '637703903112430000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T05:18:33Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:33 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/queue_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'QueueDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:25b5b240-7117-4e4b-aed3-f43512a502b1_G9, SystemTracker:NoSystemTracker,
+ Timestamp:2021-10-21T05:18:33
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:33 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_by_name.yaml
index 2c0acc8dfaf5..62130caf6d09 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_by_name.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_by_name.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:21:10Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:34Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:09 GMT
+ - Thu, 21 Oct 2021 05:18:33 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/queue_testaddf?api-version=2017-04queue_testaddf2021-04-19T17:21:10Z2021-04-19T17:21:10Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue_testaddf?api-version=2021-05queue_testaddf2021-10-21T05:18:34Z2021-10-21T05:18:34Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:21:10.687Z2021-04-19T17:21:10.717ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:34.68Z2021-10-21T05:18:34.737ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:10 GMT
+ - Thu, 21 Oct 2021 05:18:34 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,24 +79,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2017-04queue_testaddf2021-04-19T17:21:10Z2021-04-19T17:21:10Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue_testaddf?enrich=false&api-version=2021-05queue_testaddf2021-10-21T05:18:34Z2021-10-21T05:18:34Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:21:10.687Z2021-04-19T17:21:10.717Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:34.68Z2021-10-21T05:18:34.737Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:11 GMT
+ - Thu, 21 Oct 2021 05:18:34 GMT
etag:
- - '637544496707170000'
+ - '637703903147370000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -118,9 +118,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue_testaddf?api-version=2021-05
response:
body:
string: ''
@@ -128,9 +128,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Apr 2021 17:21:12 GMT
+ - Thu, 21 Oct 2021 05:18:35 GMT
etag:
- - '637544496707170000'
+ - '637703903147370000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_duplicate.yaml
index a8aa24d04baf..95702c7b6256 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_duplicate.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_duplicate.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:21:14Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:36Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:13 GMT
+ - Thu, 21 Oct 2021 05:18:36 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/rtofdk?api-version=2017-04rtofdk2021-04-19T17:21:14Z2021-04-19T17:21:14Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/rtofdk?api-version=2021-05rtofdk2021-10-21T05:18:36Z2021-10-21T05:18:36Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:21:14.69Z2021-04-19T17:21:14.73ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:36.647Z2021-10-21T05:18:36.74ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:14 GMT
+ - Thu, 21 Oct 2021 05:18:37 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,22 +86,22 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2021-05
response:
body:
string: 409SubCode=40900. Conflict. You're requesting
an operation that isn't allowed in the resource's current state. To know more
- visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:6870a810-ed5b-4d98-8576-8e9c91ca7ba5_G2,
- SystemTracker:servicebustestsbname.servicebus.windows.net:rtofdk, Timestamp:2021-04-19T17:21:15
+ visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:338776e0-c75c-4e6b-aada-b0404f52333c_G8,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:rtofdk, Timestamp:2021-10-21T05:18:37
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:14 GMT
+ - Thu, 21 Oct 2021 05:18:37 GMT
etag:
- - '637544496747300000'
+ - '637703903167400000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -123,9 +123,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/rtofdk?api-version=2021-05
response:
body:
string: ''
@@ -133,9 +133,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Apr 2021 17:21:15 GMT
+ - Thu, 21 Oct 2021 05:18:37 GMT
etag:
- - '637544496747300000'
+ - '637703903167400000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_with_queue_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_with_queue_description.yaml
index 6528db9b90c7..62852124543d 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_with_queue_description.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_create_with_queue_description.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:21:19Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:38Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:18 GMT
+ - Thu, 21 Oct 2021 05:18:37 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/aghadh?api-version=2017-04aghadh2021-04-19T17:21:19Z2021-04-19T17:21:19Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/aghadh?api-version=2021-05aghadh2021-10-21T05:18:38Z2021-10-21T05:18:38Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-19T17:21:19.837Z2021-04-19T17:21:19.95ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:18:38.873Z2021-10-21T05:18:38.973ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:19 GMT
+ - Thu, 21 Oct 2021 05:18:38 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -73,7 +73,7 @@ interactions:
body: '
PT13S3072truePT11MtruePT12M14truePT10Mtruetruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh'
+ type="application/xml">PT13S3072truePT11MtruePT12M14truePT10Mtruetruesb://servicebustestaweyco6xnr.servicebus.windows.net/aghadhsb://servicebustestaweyco6xnr.servicebus.windows.net/aghadh'
headers:
Accept:
- application/xml
@@ -86,25 +86,25 @@ interactions:
Content-Type:
- application/atom+xml
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestflrbydrmyy.servicebus.windows.net%2Faghadh&sig=h5r4Yvyi8ICw3xJxIeb5NSm0umNCmNBohU9J0Ce9lR4%3d&se=1618856480&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Faghadh&sig=mkz3I1UdkqTvjj30NGHWOlkw8DhKcnYdCcLcuRifILk%3d&se=1634797119&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestflrbydrmyy.servicebus.windows.net%2Faghadh&sig=h5r4Yvyi8ICw3xJxIeb5NSm0umNCmNBohU9J0Ce9lR4%3d&se=1618856480&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Faghadh&sig=mkz3I1UdkqTvjj30NGHWOlkw8DhKcnYdCcLcuRifILk%3d&se=1634797119&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-19T17:21:21Z2021-04-19T17:21:21Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-10-21T05:18:39Z2021-10-21T05:18:39Zservicebustestaweyco6xnrPT13S49152falsetruePT11MtruePT12M14true00falseActive2021-04-19T17:21:21.363Z2021-04-19T17:21:21.843ZfalsePT10MtrueAvailabletruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-10-21T05:18:39.77Z2021-10-21T05:18:39.903ZfalsePT10MtrueAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/aghadhsb://servicebustestaweyco6xnr.servicebus.windows.net/aghadh256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:22 GMT
+ - Thu, 21 Oct 2021 05:18:39 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -118,7 +118,7 @@ interactions:
body: '
PT13S3072truePT11M2StruePT12M3S14truePT10M1Struetruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh'
+ type="application/xml">PT13S3072truePT11M2StruePT12M3S14truePT10M1Struetruesb://servicebustestaweyco6xnr.servicebus.windows.net/aghadhsb://servicebustestaweyco6xnr.servicebus.windows.net/aghadh'
headers:
Accept:
- application/xml
@@ -131,25 +131,25 @@ interactions:
Content-Type:
- application/atom+xml
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestflrbydrmyy.servicebus.windows.net%2Faghadh&sig=7Sik4KXocATMqWckUOV3Aqb4r2EBtHPRDl%2fF8ywrkC4%3d&se=1618856481&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Faghadh&sig=agrNsE9UQNoYlw6LcQDD%2fPr69QxMoa7jykP3cya8b9Q%3d&se=1634797120&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestflrbydrmyy.servicebus.windows.net%2Faghadh&sig=7Sik4KXocATMqWckUOV3Aqb4r2EBtHPRDl%2fF8ywrkC4%3d&se=1618856481&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Faghadh&sig=agrNsE9UQNoYlw6LcQDD%2fPr69QxMoa7jykP3cya8b9Q%3d&se=1634797120&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/vladsk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vladsk?api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/vladsk?api-version=2017-04vladsk2021-04-19T17:21:22Z2021-04-19T17:21:23Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/vladsk?api-version=2021-05vladsk2021-10-21T05:18:40Z2021-10-21T05:18:40Zservicebustestaweyco6xnrPT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-04-19T17:21:22.94Z2021-04-19T17:21:23.077ZfalsePT10M1StrueAvailabletruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:18:40.677Z2021-10-21T05:18:40.773ZfalsePT10M1StrueAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/aghadhsb://servicebustestaweyco6xnr.servicebus.windows.net/aghadh256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:23 GMT
+ - Thu, 21 Oct 2021 05:18:40 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -159,6 +159,45 @@ interactions:
status:
code: 201
message: Created
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/famviq?api-version=2021-05
+ response:
+ body:
+ string: 400SubCode=40000. Bad Request. To know more
+ visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:ab62a566-3a94-4505-be11-6d4aecb1e492_G5,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:famviq, Timestamp:2021-10-21T05:18:41
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:18:40 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
- request:
body: null
headers:
@@ -169,24 +208,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2021-04-19T17:21:21Z2021-04-19T17:21:21Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-10-21T05:18:39Z2021-10-21T05:18:39Zservicebustestaweyco6xnrPT13S49152falsetruePT11MtruePT12M14true00falseActive2021-04-19T17:21:21.363Z2021-04-19T17:21:21.843Z0001-01-01T00:00:00Zfalse00000PT10MtrueAvailabletruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11MtruePT12M14true00falseActive2021-10-21T05:18:39.77Z2021-10-21T05:18:39.903Z0001-01-01T00:00:00Zfalse00000PT10MtrueAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/aghadhsb://servicebustestaweyco6xnr.servicebus.windows.net/aghadh256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:23 GMT
+ - Thu, 21 Oct 2021 05:18:40 GMT
etag:
- - '637544496818430000'
+ - '637703903199030000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -206,24 +245,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/vladsk?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vladsk?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/vladsk?enrich=false&api-version=2017-04vladsk2021-04-19T17:21:22Z2021-04-19T17:21:23Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/vladsk?enrich=false&api-version=2021-05vladsk2021-10-21T05:18:40Z2021-10-21T05:18:40Zservicebustestaweyco6xnrPT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-04-19T17:21:22.94Z2021-04-19T17:21:23.077Z0001-01-01T00:00:00Zfalse00000PT10M1StrueAvailabletruesb://servicebustestflrbydrmyy.servicebus.windows.net/aghadhsb://servicebustestflrbydrmyy.servicebus.windows.net/aghadh
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S49152falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:18:40.677Z2021-10-21T05:18:40.773Z0001-01-01T00:00:00Zfalse00000PT10M1StrueAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/aghadhsb://servicebustestaweyco6xnr.servicebus.windows.net/aghadh256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:21:24 GMT
+ - Thu, 21 Oct 2021 05:18:41 GMT
etag:
- - '637544496830770000'
+ - '637703903207730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -245,9 +284,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
string: ''
@@ -255,9 +294,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Apr 2021 17:21:25 GMT
+ - Thu, 21 Oct 2021 05:18:41 GMT
etag:
- - '637544496818430000'
+ - '637703903199030000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -277,9 +316,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/vladsk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/vladsk?api-version=2021-05
response:
body:
string: ''
@@ -287,9 +326,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Apr 2021 17:21:26 GMT
+ - Thu, 21 Oct 2021 05:18:42 GMT
etag:
- - '637544496830770000'
+ - '637703903207730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -309,9 +348,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/aghadh?api-version=2021-05
response:
body:
string: ''
@@ -319,9 +358,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Apr 2021 17:21:27 GMT
+ - Thu, 21 Oct 2021 05:18:42 GMT
etag:
- - '637544496799500000'
+ - '637703903189730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_basic.yaml
index 164710cde1bc..3c4e4960445e 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_basic.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:57Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:43Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:34:57 GMT
+ - Thu, 21 Oct 2021 05:18:43 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:34:58Z2020-09-29T08:34:58Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:18:44Z2021-10-21T05:18:44Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:44.36Z2021-10-21T05:18:44.407ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:34:58 GMT
+ - Thu, 21 Oct 2021 05:18:44 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,24 +79,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:34:59Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:34:58Z2020-09-29T08:34:58Zservicebustestrm7a5oi5hkQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:45Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:18:44Z2021-10-21T05:18:44Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:44.36Z2021-10-21T05:18:44.407Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:34:59 GMT
+ - Thu, 21 Oct 2021 05:18:44 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -121,21 +121,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:18:45Z2021-10-21T05:18:45Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:00.29Z2020-09-29T08:35:00.363ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:45.7Z2021-10-21T05:18:45.757ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:00 GMT
+ - Thu, 21 Oct 2021 05:18:45 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -155,30 +155,30 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:01Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:34:58Z2020-09-29T08:34:58Zservicebustestrm7a5oi5hkQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:46Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:18:44Z2021-10-21T05:18:44Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:34:58.453Z2020-09-29T08:34:58.49Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:44.36Z2021-10-21T05:18:44.407Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:18:45Z2021-10-21T05:18:45Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:00.29Z2020-09-29T08:35:00.363Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:45.7Z2021-10-21T05:18:45.757Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:01 GMT
+ - Thu, 21 Oct 2021 05:18:46 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -198,9 +198,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
@@ -208,9 +208,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:01 GMT
+ - Thu, 21 Oct 2021 05:18:46 GMT
etag:
- - '637369652984900000'
+ - '637703903244070000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -228,24 +228,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:02Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:00Z2020-09-29T08:35:00Zservicebustestrm7a5oi5hkQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:47Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:18:45Z2021-10-21T05:18:45Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:00.2897971Z2020-09-29T08:35:00.2897971Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:45.7Z2021-10-21T05:18:45.757Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:02 GMT
+ - Thu, 21 Oct 2021 05:18:47 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -265,9 +265,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
string: ''
@@ -275,9 +275,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:02 GMT
+ - Thu, 21 Oct 2021 05:18:47 GMT
etag:
- - '637369653003630000'
+ - '637703903257570000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -295,18 +295,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:03Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:48Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:03 GMT
+ - Thu, 21 Oct 2021 05:18:48 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_negtive.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_negtive.yaml
index 55d672cb1643..d569cbd1834a 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_negtive.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_negtive.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:04Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:48Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:03 GMT
+ - Thu, 21 Oct 2021 05:18:48 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:04Z2020-09-29T08:35:05Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:18:49Z2021-10-21T05:18:49Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:04.957Z2020-09-29T08:35:05.017ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:49.353Z2021-10-21T05:18:49.417ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:04 GMT
+ - Thu, 21 Oct 2021 05:18:49 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,24 +79,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:05Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:04Z2020-09-29T08:35:05Zservicebustestrm7a5oi5hkQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:50Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:18:49Z2021-10-21T05:18:49Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:04.957Z2020-09-29T08:35:05.017Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:49.353Z2021-10-21T05:18:49.417Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:05 GMT
+ - Thu, 21 Oct 2021 05:18:49 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -116,9 +116,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
@@ -126,9 +126,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:06 GMT
+ - Thu, 21 Oct 2021 05:18:50 GMT
etag:
- - '637369653050170000'
+ - '637703903294170000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -146,18 +146,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:07Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:51Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:06 GMT
+ - Thu, 21 Oct 2021 05:18:50 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -177,19 +177,19 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: 404No service is hosted at the specified
- address. TrackingId:f688a238-20bd-4784-b2c6-66ca3a0e2791_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue,
- Timestamp:2020-09-29T08:35:07
+ address. TrackingId:807a992f-4178-4b05-b833-fb5aac0a3b23_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:test_queue,
+ Timestamp:2021-10-21T05:18:51
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:07 GMT
+ - Thu, 21 Oct 2021 05:18:51 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -211,19 +211,19 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?api-version=2021-05
response:
body:
string: 404No service is hosted at the specified
- address. TrackingId:75a1cca2-5ba4-4c53-9077-3c38dde289c7_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue,
- Timestamp:2020-09-29T08:35:08
+ address. TrackingId:6c3160e7-087b-4a14-a820-22e9c61c5a49_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:non_existing_queue,
+ Timestamp:2021-10-21T05:18:52
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:07 GMT
+ - Thu, 21 Oct 2021 05:18:51 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_one_and_check_not_existing.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_one_and_check_not_existing.yaml
index f1feb00ee173..cf081686d3f0 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_one_and_check_not_existing.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_delete_one_and_check_not_existing.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:08Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:18:52Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:08 GMT
+ - Thu, 21 Oct 2021 05:18:51 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue0?api-version=2017-04queue02020-09-29T08:35:09Z2020-09-29T08:35:09Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue0?api-version=2021-05queue02021-10-21T05:18:52Z2021-10-21T05:18:52Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:09.58Z2020-09-29T08:35:09.63ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:52.847Z2021-10-21T05:18:52.87ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:09 GMT
+ - Thu, 21 Oct 2021 05:18:52 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,21 +86,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:35:10Z2020-09-29T08:35:10Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue1?api-version=2021-05queue12021-10-21T05:18:53Z2021-10-21T05:18:53Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:10.693Z2020-09-29T08:35:10.777ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:53.827Z2021-10-21T05:18:53.86ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:10 GMT
+ - Thu, 21 Oct 2021 05:18:53 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -127,21 +127,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:35:11Z2020-09-29T08:35:11Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue2?api-version=2021-05queue22021-10-21T05:18:54Z2021-10-21T05:18:54Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:11.58Z2020-09-29T08:35:11.78ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:54.8Z2021-10-21T05:18:54.86ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:11 GMT
+ - Thu, 21 Oct 2021 05:18:54 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -168,21 +168,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:35:12Z2020-09-29T08:35:13Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue3?api-version=2021-05queue32021-10-21T05:18:55Z2021-10-21T05:18:55Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:12.94Z2020-09-29T08:35:13.023ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:55.78Z2021-10-21T05:18:55.83ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:13 GMT
+ - Thu, 21 Oct 2021 05:18:55 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -209,21 +209,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:35:14Z2020-09-29T08:35:14Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue4?api-version=2021-05queue42021-10-21T05:18:56Z2021-10-21T05:18:56Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:14.3Z2020-09-29T08:35:14.327ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:56.757Z2021-10-21T05:18:56.79ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:14 GMT
+ - Thu, 21 Oct 2021 05:18:56 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -250,21 +250,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:35:15Z2020-09-29T08:35:15Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue5?api-version=2021-05queue52021-10-21T05:18:57Z2021-10-21T05:18:57Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:15.423Z2020-09-29T08:35:15.453ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:57.69Z2021-10-21T05:18:57.83ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:15 GMT
+ - Thu, 21 Oct 2021 05:18:57 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -291,21 +291,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:35:16Z2020-09-29T08:35:16Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue6?api-version=2021-05queue62021-10-21T05:18:58Z2021-10-21T05:18:58Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:16.343Z2020-09-29T08:35:16.52ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:58.573Z2021-10-21T05:18:58.6ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:16 GMT
+ - Thu, 21 Oct 2021 05:18:59 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -332,21 +332,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:35:17Z2020-09-29T08:35:17Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue7?api-version=2021-05queue72021-10-21T05:18:59Z2021-10-21T05:18:59Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:17.41Z2020-09-29T08:35:17.44ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:59.53Z2021-10-21T05:18:59.56ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:17 GMT
+ - Thu, 21 Oct 2021 05:18:59 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -373,21 +373,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:35:18Z2020-09-29T08:35:18Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue8?api-version=2021-05queue82021-10-21T05:19:00Z2021-10-21T05:19:00Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:18.51Z2020-09-29T08:35:18.54ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:00.453Z2021-10-21T05:19:00.48ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:18 GMT
+ - Thu, 21 Oct 2021 05:19:00 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -414,21 +414,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:35:19Z2020-09-29T08:35:19Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue9?api-version=2021-05queue92021-10-21T05:19:01Z2021-10-21T05:19:01Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:19.417Z2020-09-29T08:35:19.497ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:01.41Z2021-10-21T05:19:01.46ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:19 GMT
+ - Thu, 21 Oct 2021 05:19:01 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -450,9 +450,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue0?api-version=2021-05
response:
body:
string: ''
@@ -460,9 +460,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:20 GMT
+ - Thu, 21 Oct 2021 05:19:02 GMT
etag:
- - '637369653096300000'
+ - '637703903328700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -480,72 +480,72 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:21Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue1?api-version=2017-04queue12020-09-29T08:35:10Z2020-09-29T08:35:10Zservicebustestrm7a5oi5hkQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:02Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/queue1?api-version=2021-05queue12021-10-21T05:18:53Z2021-10-21T05:18:53Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:10.693Z2020-09-29T08:35:10.777Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue2?api-version=2017-04queue22020-09-29T08:35:11Z2020-09-29T08:35:11Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:53.827Z2021-10-21T05:18:53.86Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/queue2?api-version=2021-05queue22021-10-21T05:18:54Z2021-10-21T05:18:54Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:11.58Z2020-09-29T08:35:11.78Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue3?api-version=2017-04queue32020-09-29T08:35:12Z2020-09-29T08:35:13Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:54.8Z2021-10-21T05:18:54.86Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/queue3?api-version=2021-05queue32021-10-21T05:18:55Z2021-10-21T05:18:55Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:12.94Z2020-09-29T08:35:13.023Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue4?api-version=2017-04queue42020-09-29T08:35:14Z2020-09-29T08:35:14Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:55.7809515Z2021-10-21T05:18:55.7809515Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/queue4?api-version=2021-05queue42021-10-21T05:18:56Z2021-10-21T05:18:56Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:14.3Z2020-09-29T08:35:14.327Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue5?api-version=2017-04queue52020-09-29T08:35:15Z2020-09-29T08:35:15Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:56.757Z2021-10-21T05:18:56.79Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/queue5?api-version=2021-05queue52021-10-21T05:18:57Z2021-10-21T05:18:57Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:15.423Z2020-09-29T08:35:15.453Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue6?api-version=2017-04queue62020-09-29T08:35:16Z2020-09-29T08:35:16Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:57.69Z2021-10-21T05:18:57.83Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/queue6?api-version=2021-05queue62021-10-21T05:18:58Z2021-10-21T05:18:58Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:16.343Z2020-09-29T08:35:16.52Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue7?api-version=2017-04queue72020-09-29T08:35:17Z2020-09-29T08:35:17Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:58.5820763Z2021-10-21T05:18:58.5820763Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/queue7?api-version=2021-05queue72021-10-21T05:18:59Z2021-10-21T05:18:59Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:17.41Z2020-09-29T08:35:17.44Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue8?api-version=2017-04queue82020-09-29T08:35:18Z2020-09-29T08:35:18Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:18:59.53Z2021-10-21T05:18:59.56Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/queue8?api-version=2021-05queue82021-10-21T05:19:00Z2021-10-21T05:19:00Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:18.51Z2020-09-29T08:35:18.54Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/queue9?api-version=2017-04queue92020-09-29T08:35:19Z2020-09-29T08:35:19Zservicebustestrm7a5oi5hkPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:00.453Z2021-10-21T05:19:00.48Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/queue9?api-version=2021-05queue92021-10-21T05:19:01Z2021-10-21T05:19:01Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:19.417Z2020-09-29T08:35:19.497Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:01.41Z2021-10-21T05:19:01.46Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:21 GMT
+ - Thu, 21 Oct 2021 05:19:02 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -565,9 +565,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue1?api-version=2021-05
response:
body:
string: ''
@@ -575,9 +575,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:21 GMT
+ - Thu, 21 Oct 2021 05:19:03 GMT
etag:
- - '637369653107770000'
+ - '637703903338600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -597,9 +597,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue2?api-version=2021-05
response:
body:
string: ''
@@ -607,9 +607,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:22 GMT
+ - Thu, 21 Oct 2021 05:19:03 GMT
etag:
- - '637369653117800000'
+ - '637703903348600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -629,9 +629,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue3?api-version=2021-05
response:
body:
string: ''
@@ -639,9 +639,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:23 GMT
+ - Thu, 21 Oct 2021 05:19:04 GMT
etag:
- - '637369653130230000'
+ - '637703903358300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -661,9 +661,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue4?api-version=2021-05
response:
body:
string: ''
@@ -671,9 +671,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:24 GMT
+ - Thu, 21 Oct 2021 05:19:04 GMT
etag:
- - '637369653143270000'
+ - '637703903367900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -693,9 +693,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue5?api-version=2021-05
response:
body:
string: ''
@@ -703,9 +703,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:24 GMT
+ - Thu, 21 Oct 2021 05:19:05 GMT
etag:
- - '637369653154530000'
+ - '637703903378300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -725,9 +725,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue6?api-version=2021-05
response:
body:
string: ''
@@ -735,9 +735,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:25 GMT
+ - Thu, 21 Oct 2021 05:19:05 GMT
etag:
- - '637369653165200000'
+ - '637703903386000000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -757,9 +757,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue7?api-version=2021-05
response:
body:
string: ''
@@ -767,9 +767,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:25 GMT
+ - Thu, 21 Oct 2021 05:19:06 GMT
etag:
- - '637369653174400000'
+ - '637703903395600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -789,9 +789,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue8?api-version=2021-05
response:
body:
string: ''
@@ -799,9 +799,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:26 GMT
+ - Thu, 21 Oct 2021 05:19:06 GMT
etag:
- - '637369653185400000'
+ - '637703903404800000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -821,9 +821,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/queue9?api-version=2021-05
response:
body:
string: ''
@@ -831,9 +831,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:30 GMT
+ - Thu, 21 Oct 2021 05:19:07 GMT
etag:
- - '637369653194970000'
+ - '637703903414600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -851,18 +851,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:30Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:07Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:30 GMT
+ - Thu, 21 Oct 2021 05:19:07 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_basic.yaml
index e79f6ec261ee..a646dae249d9 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_basic.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:38Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:08Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:38 GMT
+ - Thu, 21 Oct 2021 05:19:07 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:39Z2020-08-17T08:06:39Zservicebustest32ip2wgoaahttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:08Z2021-10-21T05:19:08Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:39.207Z2020-08-17T08:06:39.24ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:08.69Z2021-10-21T05:19:08.75ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:39 GMT
+ - Thu, 21 Oct 2021 05:19:08 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,24 +79,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?enrich=false&api-version=2017-04test_queue2020-08-17T08:06:39Z2020-08-17T08:06:39Zservicebustest32ip2wgoaahttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?enrich=false&api-version=2021-05test_queue2021-10-21T05:19:08Z2021-10-21T05:19:08Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:39.207Z2020-08-17T08:06:39.24Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:08.69Z2021-10-21T05:19:08.75Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:39 GMT
+ - Thu, 21 Oct 2021 05:19:08 GMT
etag:
- - '637332483992400000'
+ - '637703903487500000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -118,9 +118,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
@@ -128,9 +128,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 17 Aug 2020 08:06:39 GMT
+ - Thu, 21 Oct 2021 05:19:09 GMT
etag:
- - '637332483992400000'
+ - '637703903487500000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_negative.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_negative.yaml
index 67b075a55bf3..e9b779678e03 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_negative.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_get_runtime_properties_negative.yaml
@@ -9,20 +9,20 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/non_existing_queue?enrich=false&api-version=2021-05
response:
body:
string: Publicly
Listed ServicesThis is the list of publicly-listed
- services currently available.uuid:6b241b3b-5932-4267-b274-00f572c98bbf;id=319272020-08-17T08:06:41ZService
+ services currently available.uuid:b4774077-8c51-4963-afa2-7de390ed4dea;id=265042021-10-21T05:19:10ZService
Bus 1.1
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:40 GMT
+ - Thu, 21 Oct 2021 05:19:10 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_basic.yaml
index 3f00003a73d0..53d122ce9acd 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_basic.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:35Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:11Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:35 GMT
+ - Thu, 21 Oct 2021 05:19:10 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -38,18 +38,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:36Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:11Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:35 GMT
+ - Thu, 21 Oct 2021 05:19:10 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -74,21 +74,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:36Z2020-09-29T08:35:36Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:12Z2021-10-21T05:19:12Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:36.897Z2020-09-29T08:35:36.923ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:12.01Z2021-10-21T05:19:12.093ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:37 GMT
+ - Thu, 21 Oct 2021 05:19:12 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -108,24 +108,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:37Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:36Z2020-09-29T08:35:36Zservicebustestrm7a5oi5hkQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:12Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:12Z2021-10-21T05:19:12Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:36.897Z2020-09-29T08:35:36.923Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:12.01Z2021-10-21T05:19:12.093Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:37 GMT
+ - Thu, 21 Oct 2021 05:19:12 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -145,9 +145,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
@@ -155,9 +155,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:38 GMT
+ - Thu, 21 Oct 2021 05:19:13 GMT
etag:
- - '637369653369230000'
+ - '637703903520930000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -175,18 +175,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:38Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:13Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:38 GMT
+ - Thu, 21 Oct 2021 05:19:13 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -204,18 +204,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:39Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:14Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:39 GMT
+ - Thu, 21 Oct 2021 05:19:13 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -240,21 +240,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:40Z2020-09-29T08:35:40Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:14Z2021-10-21T05:19:14Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:40.267Z2020-09-29T08:35:40.3ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:14.823Z2021-10-21T05:19:14.907ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:40 GMT
+ - Thu, 21 Oct 2021 05:19:14 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -274,24 +274,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:41Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-09-29T08:35:40Z2020-09-29T08:35:40Zservicebustestrm7a5oi5hkQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:15Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:14Z2021-10-21T05:19:14Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:40.267Z2020-09-29T08:35:40.3Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:14.823Z2021-10-21T05:19:14.907Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:41 GMT
+ - Thu, 21 Oct 2021 05:19:14 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -311,9 +311,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
@@ -321,9 +321,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:41 GMT
+ - Thu, 21 Oct 2021 05:19:15 GMT
etag:
- - '637369653403000000'
+ - '637703903549070000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -341,18 +341,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:42Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:16Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:42 GMT
+ - Thu, 21 Oct 2021 05:19:15 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_properties_basic.yaml
index 01b0cc8a07f7..987dfc15dfae 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_properties_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_runtime_properties_basic.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:49Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:17Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:49 GMT
+ - Thu, 21 Oct 2021 05:19:16 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -38,18 +38,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:49Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:17Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:49 GMT
+ - Thu, 21 Oct 2021 05:19:17 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -67,18 +67,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:50Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:18Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:50 GMT
+ - Thu, 21 Oct 2021 05:19:17 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -103,21 +103,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:50Z2020-08-17T08:06:50Zservicebustest32ip2wgoaahttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:18Z2021-10-21T05:19:18Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:50.91Z2020-08-17T08:06:50.957ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:18.503Z2021-10-21T05:19:18.53ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:51 GMT
+ - Thu, 21 Oct 2021 05:19:18 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -137,24 +137,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:52Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:50Z2020-08-17T08:06:50Zservicebustest32ip2wgoaaQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:19Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:18Z2021-10-21T05:19:18Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:50.91Z2020-08-17T08:06:50.957Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:18.503Z2021-10-21T05:19:18.53Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:51 GMT
+ - Thu, 21 Oct 2021 05:19:18 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -172,24 +172,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:52Zhttps://servicebustest32ip2wgoaa.servicebus.windows.net/test_queue?api-version=2017-04test_queue2020-08-17T08:06:50Z2020-08-17T08:06:50Zservicebustest32ip2wgoaaQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:19Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T05:19:18Z2021-10-21T05:19:18Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-08-17T08:06:50.91Z2020-08-17T08:06:50.957Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:18.503Z2021-10-21T05:19:18.53Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:52 GMT
+ - Thu, 21 Oct 2021 05:19:19 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -209,9 +209,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
response:
body:
string: ''
@@ -219,9 +219,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 17 Aug 2020 08:06:53 GMT
+ - Thu, 21 Oct 2021 05:19:19 GMT
etag:
- - '637332484109570000'
+ - '637703903585300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -239,18 +239,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-08-17T08:06:53Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:20Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:06:53 GMT
+ - Thu, 21 Oct 2021 05:19:20 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_negative_credential.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_negative_credential.yaml
index 43ad91ea73b8..0a14c9578c30 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_negative_credential.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_negative_credential.yaml
@@ -9,19 +9,19 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: 401claim is empty or token is invalid. TrackingId:17c0761f-1e57-43fd-8af1-21037ae5adaa_G15,
+ string: 401claim is empty or token is invalid. TrackingId:96585ada-573e-4f68-908c-816183e87729_G11,
SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues,
- Timestamp:2020-09-29T08:35:48
+ Timestamp:2021-10-21T05:19:21
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:47 GMT
+ - Thu, 21 Oct 2021 05:19:20 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -41,19 +41,19 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: 401claim is empty or token is invalid. TrackingId:6cdbb217-7d47-4c32-af19-d1ae1bec94f0_G13,
+ string: 401claim is empty or token is invalid. TrackingId:4dcbc0ed-8012-48b3-ad41-2b03bb2fb478_G12,
SystemTracker:servicebustestsbname.servicebus.windows.net:$Resources/queues,
- Timestamp:2020-09-29T08:35:49
+ Timestamp:2021-10-21T05:19:21
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:48 GMT
+ - Thu, 21 Oct 2021 05:19:20 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_special_chars.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_special_chars.yaml
index 16616390781d..782e8d55e4cd 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_special_chars.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_list_with_special_chars.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:50Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:21Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:49 GMT
+ - Thu, 21 Oct 2021 05:19:21 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -38,18 +38,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:50Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:22Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:50 GMT
+ - Thu, 21 Oct 2021 05:19:22 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -74,21 +74,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:51Z2020-09-29T08:35:51Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:19:22Z2021-10-21T05:19:22Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:51.053Z2020-09-29T08:35:51.127ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:22.883Z2021-10-21T05:19:22.907ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:51 GMT
+ - Thu, 21 Oct 2021 05:19:23 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -108,24 +108,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:52Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:35:51Z2020-09-29T08:35:51Zservicebustestrm7a5oi5hkQueueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:23Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:19:22Z2021-10-21T05:19:22Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2020-09-29T08:35:51.0756218Z2020-09-29T08:35:51.0756218Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:19:22.883Z2021-10-21T05:19:22.907Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:52 GMT
+ - Thu, 21 Oct 2021 05:19:23 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -145,9 +145,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
string: ''
@@ -155,9 +155,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:35:52 GMT
+ - Thu, 21 Oct 2021 05:19:24 GMT
etag:
- - '637369653511270000'
+ - '637703903629070000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -175,18 +175,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042020-09-29T08:35:53Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:19:24Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:35:53 GMT
+ - Thu, 21 Oct 2021 05:19:24 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_premium_create_with_queue_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_premium_create_with_queue_description.yaml
new file mode 100644
index 000000000000..20f20513a37a
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_premium_create_with_queue_description.yaml
@@ -0,0 +1,424 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
+ response:
+ body:
+ string: Queueshttps://servicebustestny3npghbcb.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:20:59Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:20:59 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ PT13S3072truePT11MtruePT12M14truePT10M12345'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '790'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-10-21T05:21:00Z2021-10-21T05:21:00Zservicebustestny3npghbcbPT13S3072falsetruePT11MtruePT12M14true00falseActive2021-10-21T05:21:00.127Z2021-10-21T05:21:00.837ZtruePT10MfalseAvailablefalse12345
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:21:01 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: '
+
+ PT13S3072truePT11M2StruePT12M3S14truePT10M1S'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '736'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/cpqmva?api-version=2021-05cpqmva2021-10-21T05:21:01Z2021-10-21T05:21:01Zservicebustestny3npghbcbPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:01.847Z2021-10-21T05:21:01.917ZtruePT10M1SfalseAvailablefalse1024
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:21:02 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: '
+
+ 1023'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05
+ response:
+ body:
+ string: '400SubCode=40000. The property value for
+ ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace
+ ''servicebustestsbname'' is using ''Premium'' tier.
+
+ Parameter name: MaxMessageSizeInKilobytes
+
+ Actual value was 1023. TrackingId:8f1de016-5af0-421c-9c97-473e658b1c05_G7,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-10-21T05:21:02'
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:21:02 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+- request:
+ body: '
+
+ 102401'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '326'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05
+ response:
+ body:
+ string: '400SubCode=40000. The property value for
+ ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace
+ ''servicebustestsbname'' is using ''Premium'' tier.
+
+ Parameter name: MaxMessageSizeInKilobytes
+
+ Actual value was 102401. TrackingId:d385ee5f-7928-440a-988d-7756ed8987e2_G7,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-10-21T05:21:03'
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:21:02 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-10-21T05:21:00Z2021-10-21T05:21:00Zservicebustestny3npghbcbPT13S3072falsetruePT11MtruePT12M14true00falseActive2021-10-21T05:21:00.127Z2021-10-21T05:21:00.837Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailablefalse12345
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:21:03 GMT
+ etag:
+ - '637703904608370000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/cpqmva?enrich=false&api-version=2021-05cpqmva2021-10-21T05:21:01Z2021-10-21T05:21:01Zservicebustestny3npghbcbPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:01.847Z2021-10-21T05:21:01.917Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse1024
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:21:03 GMT
+ etag:
+ - '637703904619170000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ PT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:01.847Z2021-10-21T05:21:01.917Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailablefalse54321'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1743'
+ Content-Type:
+ - application/atom+xml
+ If-Match:
+ - '*'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/cpqmva?api-version=2021-05cpqmva2021-10-21T05:21:03Zservicebustestny3npghbcbPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:01.847Z2021-10-21T05:21:01.917Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse54321
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:21:03 GMT
+ etag:
+ - '637703904619170000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/cpqmva?enrich=false&api-version=2021-05cpqmva2021-10-21T05:21:01Z2021-10-21T05:21:03Zservicebustestny3npghbcbPT13S3072falsetruePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:01.847Z2021-10-21T05:21:03.487Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailablefalse54321
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:21:03 GMT
+ etag:
+ - '637703904634870000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:21:03 GMT
+ etag:
+ - '637703904608370000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/cpqmva?api-version=2021-05
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:21:04 GMT
+ etag:
+ - '637703904634870000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_error.yaml
index e55c139ab831..b63483168e30 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_error.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_error.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:22:54Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:05Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:22:54 GMT
+ - Thu, 21 Oct 2021 05:21:04 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/dfjdfj?api-version=2017-04dfjdfj2021-04-19T17:22:54Z2021-04-19T17:22:54Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/dfjdfj?api-version=2021-05dfjdfj2021-10-21T05:21:05Z2021-10-21T05:21:05Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:22:54.74Z2021-04-19T17:22:54.847ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:21:05.543Z2021-10-21T05:21:05.587ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:22:55 GMT
+ - Thu, 21 Oct 2021 05:21:05 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -81,9 +81,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05
response:
body:
string: ''
@@ -91,9 +91,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Apr 2021 17:22:56 GMT
+ - Thu, 21 Oct 2021 05:21:06 GMT
etag:
- - '637544497748470000'
+ - '637703904655870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_success.yaml
index 7e4453aa2a40..e2f4106b5504 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_dict_success.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestz3qjmif56v.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-05-24T20:31:18Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:07Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 24 May 2021 20:31:18 GMT
+ - Thu, 21 Oct 2021 05:21:06 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-05-24T20:31:19Z2021-05-24T20:31:19Zservicebustestz3qjmif56vhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:21:07Z2021-10-21T05:21:07Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-05-24T20:31:19.193Z2021-05-24T20:31:19.263ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:21:07.517Z2021-10-21T05:21:07.573ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:31:19 GMT
+ - Thu, 21 Oct 2021 05:21:07 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -74,7 +74,7 @@ interactions:
PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />ActiveP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -83,29 +83,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1022'
+ - '1080'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-05-24T20:31:19Zservicebustestz3qjmif56vhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:21:08Zservicebustestaweyco6xnrPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10trueActiveP10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:31:19 GMT
+ - Thu, 21 Oct 2021 05:21:07 GMT
etag:
- - '637574850792630000'
+ - '637703904675730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -125,24 +125,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-05-24T20:31:19Z2021-05-24T20:31:19Zservicebustestz3qjmif56vhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:21:07Z2021-10-21T05:21:08Zservicebustestaweyco6xnrPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:31:19.193Z2021-05-24T20:31:19.94Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:07.517Z2021-10-21T05:21:08.023Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:31:20 GMT
+ - Thu, 21 Oct 2021 05:21:07 GMT
etag:
- - '637574850799400000'
+ - '637703904680230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -157,7 +157,7 @@ interactions:
PT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestz3qjmif56v.servicebus.windows.net/fjruidsb://servicebustestz3qjmif56v.servicebus.windows.net/fjruid'
+ />ActivePT10MfalseAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruidsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid256'
headers:
Accept:
- application/xml
@@ -166,33 +166,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1185'
+ - '1243'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestz3qjmif56v.servicebus.windows.net%2Ffjruid&sig=%2fJTT0iv4FloZyfDam0W8MzV91JkwfSGZj%2bmP489zuWw%3d&se=1621891879&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjruid&sig=vXBkjrWjddoDfOO0KxjNvCy30O9GNWpbmKTtfuO94EA%3d&se=1634797268&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestz3qjmif56v.servicebus.windows.net%2Ffjruid&sig=%2fJTT0iv4FloZyfDam0W8MzV91JkwfSGZj%2bmP489zuWw%3d&se=1621891879&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjruid&sig=vXBkjrWjddoDfOO0KxjNvCy30O9GNWpbmKTtfuO94EA%3d&se=1634797268&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-05-24T20:31:20Zservicebustestz3qjmif56vhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:21:08Zservicebustestaweyco6xnrPT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestz3qjmif56v.servicebus.windows.net/fjruidsb://servicebustestz3qjmif56v.servicebus.windows.net/fjruid
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14trueActivePT10MfalseAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruidsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:31:20 GMT
+ - Thu, 21 Oct 2021 05:21:07 GMT
etag:
- - '637574850799400000'
+ - '637703904680230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -212,24 +212,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-05-24T20:31:19Z2021-05-24T20:31:20Zservicebustestz3qjmif56vhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:21:07Z2021-10-21T05:21:08Zservicebustestaweyco6xnrPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-05-24T20:31:19.193Z2021-05-24T20:31:20.34Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestz3qjmif56v.servicebus.windows.net/fjruidsb://servicebustestz3qjmif56v.servicebus.windows.net/fjruid
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-10-21T05:21:07.517Z2021-10-21T05:21:08.253Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruidsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:31:20 GMT
+ - Thu, 21 Oct 2021 05:21:08 GMT
etag:
- - '637574850803400000'
+ - '637703904682530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -244,7 +244,7 @@ interactions:
PT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse'
+ />ActivePT15MfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -253,29 +253,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '984'
+ - '1042'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-05-24T20:31:20Zservicebustestz3qjmif56vhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:21:08Zservicebustestaweyco6xnrPT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15falseActivePT15MfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:31:20 GMT
+ - Thu, 21 Oct 2021 05:21:08 GMT
etag:
- - '637574850803400000'
+ - '637703904682530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -295,24 +295,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestz3qjmif56v.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-05-24T20:31:19Z2021-05-24T20:31:20Zservicebustestz3qjmif56vhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:21:07Z2021-10-21T05:21:08Zservicebustestaweyco6xnrPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-05-24T20:31:19.193Z2021-05-24T20:31:20.69Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-10-21T05:21:07.517Z2021-10-21T05:21:08.49Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:31:20 GMT
+ - Thu, 21 Oct 2021 05:21:08 GMT
etag:
- - '637574850806900000'
+ - '637703904684900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -334,9 +334,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
@@ -344,9 +344,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 24 May 2021 20:31:21 GMT
+ - Thu, 21 Oct 2021 05:21:08 GMT
etag:
- - '637574850806900000'
+ - '637703904684900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_invalid.yaml
index ddee23db989d..fdd222ad6f30 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_invalid.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_invalid.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestflrbydrmyy.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-04-19T17:23:05Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:09Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:23:05 GMT
+ - Thu, 21 Oct 2021 05:21:09 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
- string: https://servicebustestflrbydrmyy.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2021-04-19T17:23:06Z2021-04-19T17:23:06Zservicebustestflrbydrmyyhttps://servicebustestaweyco6xnr.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-10-21T05:21:10Z2021-10-21T05:21:10Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-19T17:23:06.2Z2021-04-19T17:23:06.253ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:21:10.423Z2021-10-21T05:21:10.467ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 19 Apr 2021 17:23:06 GMT
+ - Thu, 21 Oct 2021 05:21:10 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -74,7 +74,7 @@ interactions:
PT1M1024falsetrueP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-19T17:23:06.200Z2021-04-19T17:23:06.253ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:10.423Z2021-10-21T05:21:10.467ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -83,28 +83,28 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1264'
+ - '1322'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
string: 400SubCode=40000. The value for the RequiresSession
property of an existing Queue cannot be changed. To know more visit https://aka.ms/sbResourceMgrExceptions.
- . TrackingId:05e07a04-fd56-4414-81d3-ff265a5f746c_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj,
- Timestamp:2021-04-19T17:23:07
+ . TrackingId:ae1a3e1c-c06d-4ac7-9cbd-124580d1fa0b_G3, SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj,
+ Timestamp:2021-10-21T05:21:10
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Mon, 19 Apr 2021 17:23:07 GMT
+ - Thu, 21 Oct 2021 05:21:10 GMT
etag:
- - '637544497862530000'
+ - '637703904704670000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -119,7 +119,7 @@ interactions:
PT1M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-19T17:23:06.200Z2021-04-19T17:23:06.253ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:10.423Z2021-10-21T05:21:10.467ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -128,26 +128,26 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1265'
+ - '1323'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2021-05
response:
body:
string: 404SubCode=40400. Not Found. The Operation
doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions.
- . TrackingId:3d8f41b5-45f9-4390-b316-1e39f584234b_G12, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm,
- Timestamp:2021-04-19T17:23:08
+ . TrackingId:c9ee15af-c1fa-4806-87ea-51774a354cb6_G3, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm,
+ Timestamp:2021-10-21T05:21:11
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Mon, 19 Apr 2021 17:23:08 GMT
+ - Thu, 21 Oct 2021 05:21:10 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -162,7 +162,7 @@ interactions:
P25D1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-04-19T17:23:06.200Z2021-04-19T17:23:06.253ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:10.423Z2021-10-21T05:21:10.467ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -171,15 +171,15 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1265'
+ - '1323'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
string: '400SubCode=40000. The supplied lock time
@@ -188,15 +188,15 @@ interactions:
Parameter name: LockDuration
- Actual value was 25.00:00:00. TrackingId:2d37467c-7e79-445b-aef0-a5c6ed96da18_G12,
- SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2021-04-19T17:23:09'
+ Actual value was 25.00:00:00. TrackingId:49e129a4-b4bb-476d-a768-9f68e90f5871_G3,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2021-10-21T05:21:11'
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Mon, 19 Apr 2021 17:23:09 GMT
+ - Thu, 21 Oct 2021 05:21:10 GMT
etag:
- - '637544497862530000'
+ - '637703904704670000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -218,9 +218,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
string: ''
@@ -228,9 +228,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 19 Apr 2021 17:23:10 GMT
+ - Thu, 21 Oct 2021 05:21:11 GMT
etag:
- - '637544497862530000'
+ - '637703904704670000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_success.yaml
index 74c669a6ae6d..ec5b9d3b9e07 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_update_success.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Queueshttps://servicebustestpgigjfsnve.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-05-24T20:26:33Z
+ string: Queueshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:13Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:33 GMT
+ - Thu, 21 Oct 2021 05:21:12 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:34Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:21:13Z2021-10-21T05:21:13Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:34.36ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:21:13.463Z2021-10-21T05:21:13.587ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:34 GMT
+ - Thu, 21 Oct 2021 05:21:13 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,21 +86,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/sagho?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/sagho?api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/sagho?api-version=2017-04sagho2021-05-24T20:26:35Z2021-05-24T20:26:35Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/sagho?api-version=2021-05sagho2021-10-21T05:21:14Z2021-10-21T05:21:14Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-05-24T20:26:35.237Z2021-05-24T20:26:35.29ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:14.44Z2021-10-21T05:21:14.47ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:35 GMT
+ - Thu, 21 Oct 2021 05:21:14 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -115,7 +115,7 @@ interactions:
PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:34.360ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:13.463Z2021-10-21T05:21:13.587ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -124,29 +124,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1265'
+ - '1323'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:35Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:21:15Zservicebustestaweyco6xnrPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:34.36ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:13.463Z2021-10-21T05:21:13.587ZtrueP10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:35 GMT
+ - Thu, 21 Oct 2021 05:21:14 GMT
etag:
- - '637574847943600000'
+ - '637703904735870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -166,24 +166,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:35Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:21:13Z2021-10-21T05:21:14Zservicebustestaweyco6xnrPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:35.877Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:13.4760212Z2021-10-21T05:21:15.0007779Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:35 GMT
+ - Thu, 21 Oct 2021 05:21:14 GMT
etag:
- - '637574847958770000'
+ - '637703904749900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -199,7 +199,7 @@ interactions:
PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:35.877Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestpgigjfsnve.servicebus.windows.net/saghosb://servicebustestpgigjfsnve.servicebus.windows.net/sagho'
+ />Active2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.000777Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestaweyco6xnr.servicebus.windows.net/saghosb://servicebustestaweyco6xnr.servicebus.windows.net/sagho256'
headers:
Accept:
- application/xml
@@ -208,34 +208,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1920'
+ - '1984'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Fsagho&sig=bPIj%2bgXVBkTntzJo6rgyWuqMw10gAgWS1hcsz0MdRlU%3d&se=1621891595&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Fsagho&sig=dZrcnHjeipjL%2bLes71P%2bx0%2ba7gPN805ZYM6oAixRgX8%3d&se=1634797275&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Fsagho&sig=bPIj%2bgXVBkTntzJo6rgyWuqMw10gAgWS1hcsz0MdRlU%3d&se=1621891595&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Fsagho&sig=dZrcnHjeipjL%2bLes71P%2bx0%2ba7gPN805ZYM6oAixRgX8%3d&se=1634797275&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:21:15Zservicebustestaweyco6xnrPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:35.877Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestpgigjfsnve.servicebus.windows.net/saghosb://servicebustestpgigjfsnve.servicebus.windows.net/sagho
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.000777Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestaweyco6xnr.servicebus.windows.net/saghosb://servicebustestaweyco6xnr.servicebus.windows.net/sagho256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:36 GMT
+ - Thu, 21 Oct 2021 05:21:14 GMT
etag:
- - '637574847958770000'
+ - '637703904749900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -255,24 +255,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:21:13Z2021-10-21T05:21:15Zservicebustestaweyco6xnrPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.12Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestpgigjfsnve.servicebus.windows.net/saghosb://servicebustestpgigjfsnve.servicebus.windows.net/sagho
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:13.4760212Z2021-10-21T05:21:15.2351723Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalsesb://servicebustestaweyco6xnr.servicebus.windows.net/saghosb://servicebustestaweyco6xnr.servicebus.windows.net/sagho256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:36 GMT
+ - Thu, 21 Oct 2021 05:21:14 GMT
etag:
- - '637574847961200000'
+ - '637703904752330000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -288,7 +288,7 @@ interactions:
PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:36.120Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse'
+ />Active2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.235172Z0001-01-01T00:00:00.000Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -297,30 +297,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1718'
+ - '1782'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:21:15Zservicebustestaweyco6xnrPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.12Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.235172Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:36 GMT
+ - Thu, 21 Oct 2021 05:21:14 GMT
etag:
- - '637574847961200000'
+ - '637703904752330000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -340,24 +340,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:21:13Z2021-10-21T05:21:15Zservicebustestaweyco6xnrPT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.407Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsefalseP10675199DT2H48M5.477539SfalsePT10M10true00falseActive2021-10-21T05:21:13.4760212Z2021-10-21T05:21:15.4695682Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:36 GMT
+ - Thu, 21 Oct 2021 05:21:14 GMT
etag:
- - '637574847964070000'
+ - '637703904754670000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -373,7 +373,7 @@ interactions:
PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:36.407Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui'
+ />Active2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.469568Z0001-01-01T00:00:00.000Ztrue00000PT10MfalseAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruisb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui256'
headers:
Accept:
- application/xml
@@ -382,34 +382,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1879'
+ - '1943'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Ffjrui&sig=YfkQNXjZYsFaI9N57Oxwq3Meqp5CeuOnuGJqHfv5aDg%3d&se=1621891596&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjrui&sig=FClNLJ6nnmIwcayhbrMAIh2EmBZS8r76V9vebLveuhA%3d&se=1634797275&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Ffjrui&sig=YfkQNXjZYsFaI9N57Oxwq3Meqp5CeuOnuGJqHfv5aDg%3d&se=1621891596&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjrui&sig=FClNLJ6nnmIwcayhbrMAIh2EmBZS8r76V9vebLveuhA%3d&se=1634797275&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:21:15Zservicebustestaweyco6xnrPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.407Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.469568Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruisb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:36 GMT
+ - Thu, 21 Oct 2021 05:21:14 GMT
etag:
- - '637574847964070000'
+ - '637703904754670000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -429,24 +429,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:36Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:21:13Z2021-10-21T05:21:15Zservicebustestaweyco6xnrPT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.903Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11MtruePT12M14true00falseActive2021-10-21T05:21:13.4760212Z2021-10-21T05:21:15.7195309Z0001-01-01T00:00:00Ztrue00000PT10MfalseAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruisb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:37 GMT
+ - Thu, 21 Oct 2021 05:21:15 GMT
etag:
- - '637574847969030000'
+ - '637703904757130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -462,7 +462,7 @@ interactions:
PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:36.903Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui'
+ />Active2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.71953Z0001-01-01T00:00:00.000Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruisb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui256'
headers:
Accept:
- application/xml
@@ -471,34 +471,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1885'
+ - '1948'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Ffjrui&sig=YfkQNXjZYsFaI9N57Oxwq3Meqp5CeuOnuGJqHfv5aDg%3d&se=1621891596&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjrui&sig=cybNpXHyn0HU5gLMN5sH9N%2bsFEQedFVPIlU8Xp5OW%2bg%3d&se=1634797276&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestpgigjfsnve.servicebus.windows.net%2Ffjrui&sig=YfkQNXjZYsFaI9N57Oxwq3Meqp5CeuOnuGJqHfv5aDg%3d&se=1621891596&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjrui&sig=cybNpXHyn0HU5gLMN5sH9N%2bsFEQedFVPIlU8Xp5OW%2bg%3d&se=1634797276&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:37Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:21:15Zservicebustestaweyco6xnrPT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:36.903Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.71953Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruisb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:37 GMT
+ - Thu, 21 Oct 2021 05:21:15 GMT
etag:
- - '637574847969030000'
+ - '637703904757130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -518,24 +518,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:37Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:21:13Z2021-10-21T05:21:15Zservicebustestaweyco6xnrPT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:37.257Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestpgigjfsnve.servicebus.windows.net/fjruisb://servicebustestpgigjfsnve.servicebus.windows.net/fjrui
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13S3072falsefalsePT11M2StruePT12M3S14true00falseActive2021-10-21T05:21:13.4760212Z2021-10-21T05:21:15.9382854Z0001-01-01T00:00:00Ztrue00000PT10M1SfalseAvailabletruesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruisb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:37 GMT
+ - Thu, 21 Oct 2021 05:21:15 GMT
etag:
- - '637574847972570000'
+ - '637703904759300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -551,7 +551,7 @@ interactions:
PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-05-24T20:26:34.320Z2021-05-24T20:26:37.257Z0001-01-01T00:00:00.000Ztrue00000PT15MfalseAvailablefalse'
+ />Active2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.938285Z0001-01-01T00:00:00.000Ztrue00000PT15MfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -560,30 +560,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1680'
+ - '1744'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-05-24T20:26:37Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:21:16Zservicebustestaweyco6xnrPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:37.257Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-10-21T05:21:13.476021Z2021-10-21T05:21:15.938285Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:37 GMT
+ - Thu, 21 Oct 2021 05:21:15 GMT
etag:
- - '637574847972570000'
+ - '637703904759300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -603,24 +603,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestpgigjfsnve.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-05-24T20:26:34Z2021-05-24T20:26:37Zservicebustestpgigjfsnvehttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:21:13Z2021-10-21T05:21:16Zservicebustestaweyco6xnrPT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-05-24T20:26:34.32Z2021-05-24T20:26:37.733Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT18S2048falsefalsePT16MfalsePT17M15false00falseActive2021-10-21T05:21:13.4760212Z2021-10-21T05:21:16.203941Z0001-01-01T00:00:00Ztrue00000PT15MfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 24 May 2021 20:26:38 GMT
+ - Thu, 21 Oct 2021 05:21:15 GMT
etag:
- - '637574847977330000'
+ - '637703904761830000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -642,9 +642,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
@@ -652,9 +652,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 24 May 2021 20:26:38 GMT
+ - Thu, 21 Oct 2021 05:21:15 GMT
etag:
- - '637574847977330000'
+ - '637703904761830000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -674,9 +674,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/sagho?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/sagho?api-version=2021-05
response:
body:
string: ''
@@ -684,9 +684,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 24 May 2021 20:26:39 GMT
+ - Thu, 21 Oct 2021 05:21:16 GMT
etag:
- - '637574847952900000'
+ - '637703904744700000'
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_v2017_04.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_v2017_04.yaml
new file mode 100644
index 000000000000..3bfa3d5e3899
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_queues.test_mgmt_queue_v2017_04.yaml
@@ -0,0 +1,403 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestkgj2gt2e2y.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T04:54:20Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:20 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestkgj2gt2e2y.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T04:54:20Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:20 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestkgj2gt2e2y.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T04:54:21Z2021-10-21T04:54:21Zservicebustestkgj2gt2e2yPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T04:54:21.273Z2021-10-21T04:54:21.387ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:21 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestkgj2gt2e2y.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T04:54:22Zhttps://servicebustestkgj2gt2e2y.servicebus.windows.net/test_queue?api-version=2017-04test_queue2021-10-21T04:54:21Z2021-10-21T04:54:21Zservicebustestkgj2gt2e2yPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T04:54:21.273Z2021-10-21T04:54:21.387Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:21 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 04:54:22 GMT
+ etag:
+ - '637703888613870000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Queueshttps://servicebustestkgj2gt2e2y.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2017-042021-10-21T04:54:23Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:22 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
+ response:
+ body:
+ string: Queueshttps://servicebustestkgj2gt2e2y.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T04:54:23Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:23 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestkgj2gt2e2y.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T04:54:23Z2021-10-21T04:54:24Zservicebustestkgj2gt2e2yPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T04:54:23.917Z2021-10-21T04:54:24.017ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:24 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
+ response:
+ body:
+ string: Queueshttps://servicebustestkgj2gt2e2y.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T04:54:24Zhttps://servicebustestkgj2gt2e2y.servicebus.windows.net/test_queue?api-version=2021-05test_queue2021-10-21T04:54:23Z2021-10-21T04:54:24Zservicebustestkgj2gt2e2yPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T04:54:23.917Z2021-10-21T04:54:24.017Z0001-01-01T00:00:00Ztrue00000P10675199DT2H48M5.4775807SfalseAvailablefalse256
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:24 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_queue?api-version=2021-05
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 04:54:25 GMT
+ etag:
+ - '637703888640170000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-05
+ response:
+ body:
+ string: Queueshttps://servicebustestkgj2gt2e2y.servicebus.windows.net/$Resources/queues?$skip=0&$top=100&api-version=2021-052021-10-21T04:54:25Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:25 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/queue_can_not_be_created?api-version=2021-05
+ response:
+ body:
+ string: 400SubCode=40000. Bad Request. To know more
+ visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:b9750e91-6034-4603-a541-6cc04e934d96_G12,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:queue_can_not_be_created,
+ Timestamp:2021-10-21T04:54:26
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 04:54:26 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create.yaml
index f67c2dcb872f..26a63696fb27 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrkkx42w5im.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T17:03:28Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:18Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:28 GMT
+ - Thu, 21 Oct 2021 05:21:18 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
- string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2021-04-15T17:03:29Z2021-04-15T17:03:29Zservicebustestrkkx42w5imhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-10-21T05:21:18Z2021-10-21T05:21:18Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T17:03:29.533Z2021-04-15T17:03:29.593ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:18.643Z2021-10-21T05:21:18.69ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:29 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
- string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2021-04-15T17:03:30Z2021-04-15T17:03:30Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-10-21T05:21:19Z2021-10-21T05:21:19ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-15T17:03:30.250717Z2021-04-15T17:03:30.250717Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:19.1411164Z2021-10-21T05:21:19.1411164Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:29 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -138,14 +138,14 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
response:
body:
- string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12021-04-15T17:03:30Z2021-04-15T17:03:30Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-10-21T05:21:19Z2021-10-21T05:21:19Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13true2021-04-15T17:03:30.6257157Ztest_rule_1
+ i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2021-10-21T05:21:19.3911229Ztest_rule_1
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:30 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -182,14 +182,14 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2017-04test_rule_12021-04-15T17:03:30Z2021-04-15T17:03:30Zsb://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?enrich=false&api-version=2021-05test_rule_12021-10-21T05:21:19Z2021-10-21T05:21:19Ztestcidkey_stringstr1key_int2020-07-05T11:12:13key_durationP1DT2H3MSET Priority = @param20@param2020-07-05T11:12:13true2021-04-15T17:03:30.6275695Ztest_rule_1
+ i:type="d6p1:dateTime" xmlns:d6p1="http://www.w3.org/2001/XMLSchema">2020-07-05T11:12:13true2021-10-21T05:21:19.4031415Ztest_rule_1
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:30 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -237,27 +237,27 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
response:
body:
- string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22021-04-15T17:03:31Z2021-04-15T17:03:31Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-10-21T05:21:19Z2021-10-21T05:21:19ZPriority
= @param1 AND Level = @param220@param1str1@param21true2021-04-15T17:03:31.1725993Ztest_rule_2
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:19.5942496Ztest_rule_2
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:30 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -277,27 +277,27 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2017-04test_rule_22021-04-15T17:03:31Z2021-04-15T17:03:31Zsb://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?enrich=false&api-version=2021-05test_rule_22021-10-21T05:21:19Z2021-10-21T05:21:19ZPriority
= @param1 AND Level = @param220@param1str1@param21true2021-04-15T17:03:31.1744598Ztest_rule_2
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:19.7312314Ztest_rule_2
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:31 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -326,24 +326,24 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
response:
body:
- string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32021-04-15T17:03:31Z2021-04-15T17:03:31Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-10-21T05:21:19Z2021-10-21T05:21:19Z1=1202021-04-15T17:03:31.7194699Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:19.8133497Ztest_rule_3
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:31 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -363,24 +363,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2017-04test_rule_32021-04-15T17:03:31Z2021-04-15T17:03:31Zsb://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?enrich=false&api-version=2021-05test_rule_32021-10-21T05:21:19Z2021-10-21T05:21:19Z1=1202021-04-15T17:03:31.7213337Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:19.8250182Ztest_rule_3
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:31 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -409,24 +409,24 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05
response:
body:
- string: https://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04test_rule_42021-04-15T17:03:32Z2021-04-15T17:03:32Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05test_rule_42021-10-21T05:21:19Z2021-10-21T05:21:19Z1=1202021-04-15T17:03:32.2508235Ztest_rule_4
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:19.9227074Ztest_rule_4
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:31 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -446,24 +446,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestrkkx42w5im.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2017-04test_rule_42021-04-15T17:03:32Z2021-04-15T17:03:32Zsb://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?enrich=false&api-version=2021-05test_rule_42021-10-21T05:21:19Z2021-10-21T05:21:19Z1=1202021-04-15T17:03:32.2686329Ztest_rule_4
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:19.9343715Ztest_rule_4
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 17:03:32 GMT
+ - Thu, 21 Oct 2021 05:21:19 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -485,9 +485,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
response:
body:
string: ''
@@ -495,9 +495,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 17:03:32 GMT
+ - Thu, 21 Oct 2021 05:21:20 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -517,9 +517,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
response:
body:
string: ''
@@ -527,9 +527,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 17:03:32 GMT
+ - Thu, 21 Oct 2021 05:21:20 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -549,9 +549,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
response:
body:
string: ''
@@ -559,9 +559,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 17:03:33 GMT
+ - Thu, 21 Oct 2021 05:21:20 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -581,9 +581,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_4?api-version=2021-05
response:
body:
string: ''
@@ -591,9 +591,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 17:03:33 GMT
+ - Thu, 21 Oct 2021 05:21:20 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -613,9 +613,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
string: ''
@@ -623,9 +623,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 17:03:33 GMT
+ - Thu, 21 Oct 2021 05:21:20 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -645,9 +645,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
string: ''
@@ -655,9 +655,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 17:03:34 GMT
+ - Thu, 21 Oct 2021 05:21:21 GMT
etag:
- - '637541030095930000'
+ - '637703904786900000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create_duplicate.yaml
index 97d46974984b..8d2c13a2a160 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create_duplicate.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_create_duplicate.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestssikhu6c5u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:31Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:21Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:31 GMT
+ - Thu, 21 Oct 2021 05:21:21 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-11-23T20:27:32Z2020-11-23T20:27:32Zservicebustestssikhu6c5uhttps://servicebustestaweyco6xnr.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-10-21T05:21:22Z2021-10-21T05:21:22Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:32.087Z2020-11-23T20:27:32.15ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:22.12Z2021-10-21T05:21:22.17ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:32 GMT
+ - Thu, 21 Oct 2021 05:21:22 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-11-23T20:27:32Z2020-11-23T20:27:32Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05kkaqo2021-10-21T05:21:22Z2021-10-21T05:21:22ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:32.6012538Z2020-11-23T20:27:32.6012538Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:22.6206528Z2021-10-21T05:21:22.6206528Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:32 GMT
+ - Thu, 21 Oct 2021 05:21:22 GMT
etag:
- - '637417600521500000'
+ - '637703904821700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -131,25 +131,25 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04rule2020-11-23T20:27:32Z2020-11-23T20:27:32Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05rule2021-10-21T05:21:22Z2021-10-21T05:21:22ZPriority
= 'low'20true2020-11-23T20:27:32.773151Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:22.7768794Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:32 GMT
+ - Thu, 21 Oct 2021 05:21:22 GMT
etag:
- - '637417600521500000'
+ - '637703904821700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -178,21 +178,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05
response:
body:
string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo|rule'
- already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:5f45bfb3-6946-4c55-a2b3-c3449d24e8be_B2,
- SystemTracker:NoSystemTracker, Timestamp:2020-11-23T20:27:33
+ already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:21d3e93d-f48d-4eda-8d5c-1eb9e884c956_B4,
+ SystemTracker:NoSystemTracker, Timestamp:2021-10-21T05:21:22
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:33 GMT
+ - Thu, 21 Oct 2021 05:21:23 GMT
etag:
- - '637417600521500000'
+ - '637703904821700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -214,9 +214,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo/rules/rule?api-version=2021-05
response:
body:
string: ''
@@ -224,9 +224,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:33 GMT
+ - Thu, 21 Oct 2021 05:21:23 GMT
etag:
- - '637417600521500000'
+ - '637703904821700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -246,9 +246,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
string: ''
@@ -256,9 +256,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:33 GMT
+ - Thu, 21 Oct 2021 05:21:23 GMT
etag:
- - '637417600521500000'
+ - '637703904821700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -278,9 +278,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
string: ''
@@ -288,9 +288,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:34 GMT
+ - Thu, 21 Oct 2021 05:21:24 GMT
etag:
- - '637417600521500000'
+ - '637703904821700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_list_and_delete.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_list_and_delete.yaml
index ef78ba201c34..70967b0cfadb 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_list_and_delete.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_list_and_delete.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestssikhu6c5u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:35Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:24Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:35 GMT
+ - Thu, 21 Oct 2021 05:21:24 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-11-23T20:27:35Z2020-11-23T20:27:35Zservicebustestssikhu6c5uhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-10-21T05:21:25Z2021-10-21T05:21:25Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:35.833Z2020-11-23T20:27:35.86ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:25.363Z2021-10-21T05:21:25.423ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:36 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-11-23T20:27:36Z2020-11-23T20:27:36Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-10-21T05:21:25Z2021-10-21T05:21:25ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:36.3426002Z2020-11-23T20:27:36.3426002Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:25.8754032Z2021-10-21T05:21:25.8754032Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:36 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -122,26 +122,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Ruleshttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:36Zhttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:36Z2020-11-23T20:27:36ZRuleshttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:26Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-10-21T05:21:25Z2021-10-21T05:21:25Z1=1202020-11-23T20:27:36.3411485Z$Default
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">1=1202021-10-21T05:21:25.8826287Z$Default
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:36 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -170,25 +170,25 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:36Z2020-11-23T20:27:36Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-10-21T05:21:26Z2021-10-21T05:21:26ZPriority
= 'low'20true2020-11-23T20:27:36.4988522Ztest_rule_1
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:26.0316618Ztest_rule_1
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:36 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -217,25 +217,25 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-11-23T20:27:36Z2020-11-23T20:27:36Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-10-21T05:21:26Z2021-10-21T05:21:26ZPriority
= 'middle'20true2020-11-23T20:27:36.5769778Ztest_rule_2
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:26.1254057Ztest_rule_2
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:36 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -264,25 +264,25 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:36Z2020-11-23T20:27:36Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-10-21T05:21:26Z2021-10-21T05:21:26ZPriority
= 'high'20true2020-11-23T20:27:36.748863Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:26.2972801Ztest_rule_3
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:36 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -302,47 +302,47 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Ruleshttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:36Zhttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:36Z2020-11-23T20:27:36ZRuleshttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:26Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-10-21T05:21:25Z2021-10-21T05:21:25Z1=1202020-11-23T20:27:36.3411485Z$Defaulthttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:36Z2020-11-23T20:27:36Z1=1202021-10-21T05:21:25.8826287Z$Defaulthttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-10-21T05:21:26Z2021-10-21T05:21:26ZPriority
= 'low'20true2020-11-23T20:27:36.5130306Ztest_rule_1https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04test_rule_22020-11-23T20:27:36Z2020-11-23T20:27:36Z2021-10-21T05:21:26.0388305Ztest_rule_1https://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05test_rule_22021-10-21T05:21:26Z2021-10-21T05:21:26ZPriority
= 'middle'20true2020-11-23T20:27:36.5755298Ztest_rule_2https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:36Z2020-11-23T20:27:36Z2021-10-21T05:21:26.1169886Ztest_rule_2https://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-10-21T05:21:26Z2021-10-21T05:21:26ZPriority
= 'high'20true2020-11-23T20:27:36.7473997Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:26.3045037Ztest_rule_3
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:36 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -364,9 +364,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_2?api-version=2021-05
response:
body:
string: ''
@@ -374,9 +374,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:36 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -394,40 +394,40 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Ruleshttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:36Zhttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:36Z2020-11-23T20:27:36ZRuleshttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:26Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-10-21T05:21:25Z2021-10-21T05:21:25Z1=1202020-11-23T20:27:36.3411485Z$Defaulthttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04test_rule_12020-11-23T20:27:36Z2020-11-23T20:27:36Z1=1202021-10-21T05:21:25.8826287Z$Defaulthttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05test_rule_12021-10-21T05:21:26Z2021-10-21T05:21:26ZPriority
= 'low'20true2020-11-23T20:27:36.5130306Ztest_rule_1https://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04test_rule_32020-11-23T20:27:36Z2020-11-23T20:27:36Z2021-10-21T05:21:26.0388305Ztest_rule_1https://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05test_rule_32021-10-21T05:21:26Z2021-10-21T05:21:26ZPriority
= 'high'20true2020-11-23T20:27:36.7473997Ztest_rule_3
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:26.3045037Ztest_rule_3
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:36 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -449,9 +449,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_1?api-version=2021-05
response:
body:
string: ''
@@ -459,9 +459,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:37 GMT
+ - Thu, 21 Oct 2021 05:21:25 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -481,9 +481,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/test_rule_3?api-version=2021-05
response:
body:
string: ''
@@ -491,9 +491,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:37 GMT
+ - Thu, 21 Oct 2021 05:21:26 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -511,26 +511,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Ruleshttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:37Zhttps://servicebustestssikhu6c5u.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2017-04$Default2020-11-23T20:27:36Z2020-11-23T20:27:36ZRuleshttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:26Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk/rules/$Default?api-version=2021-05$Default2021-10-21T05:21:25Z2021-10-21T05:21:25Z1=1202020-11-23T20:27:36.3411485Z$Default
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">1=1202021-10-21T05:21:25.8826287Z$Default
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:37 GMT
+ - Thu, 21 Oct 2021 05:21:26 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -552,9 +552,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
string: ''
@@ -562,9 +562,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:37 GMT
+ - Thu, 21 Oct 2021 05:21:26 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -584,9 +584,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
string: ''
@@ -594,9 +594,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:37 GMT
+ - Thu, 21 Oct 2021 05:21:26 GMT
etag:
- - '637417600558600000'
+ - '637703904854230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_error.yaml
index 0c8d733e88c5..982347b0e5bc 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_error.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_error.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestqd6kevky7y.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:49:50Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:27Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 02 Mar 2021 19:49:50 GMT
+ - Thu, 21 Oct 2021 05:21:27 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestqd6kevky7y.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-03-02T19:49:51Z2021-03-02T19:49:51Zservicebustestqd6kevky7yhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:21:28Z2021-10-21T05:21:28Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:49:51.13Z2021-03-02T19:49:51.21ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:28.273Z2021-10-21T05:21:28.373ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 02 Mar 2021 19:49:51 GMT
+ - Thu, 21 Oct 2021 05:21:28 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
- string: https://servicebustestqd6kevky7y.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-03-02T19:49:51Z2021-03-02T19:49:51Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-10-21T05:21:28Z2021-10-21T05:21:28ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-03-02T19:49:51.7058503Z2021-03-02T19:49:51.7058503Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:28.8530452Z2021-10-21T05:21:28.8530452Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 02 Mar 2021 19:49:51 GMT
+ - Thu, 21 Oct 2021 05:21:28 GMT
etag:
- - '637503113912100000'
+ - '637703904883730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -131,25 +131,25 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestqd6kevky7y.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-03-02T19:49:52Z2021-03-02T19:49:52Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-10-21T05:21:29Z2021-10-21T05:21:29ZPriority
= 'low'20true2021-03-02T19:49:52.0027557Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:29.0717664Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 02 Mar 2021 19:49:51 GMT
+ - Thu, 21 Oct 2021 05:21:28 GMT
etag:
- - '637503113912100000'
+ - '637703904883730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -171,9 +171,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
string: ''
@@ -181,9 +181,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 02 Mar 2021 19:49:52 GMT
+ - Thu, 21 Oct 2021 05:21:28 GMT
etag:
- - '637503113912100000'
+ - '637703904883730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -203,9 +203,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
string: ''
@@ -213,9 +213,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 02 Mar 2021 19:49:52 GMT
+ - Thu, 21 Oct 2021 05:21:28 GMT
etag:
- - '637503113912100000'
+ - '637703904883730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -235,9 +235,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
@@ -245,9 +245,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 02 Mar 2021 19:49:52 GMT
+ - Thu, 21 Oct 2021 05:21:29 GMT
etag:
- - '637503113912100000'
+ - '637703904883730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_success.yaml
index 7b5c1765cb7e..8e80fa00fc64 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_dict_success.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustesto3ardhmdnl.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:21:32Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:30Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:21:32 GMT
+ - Thu, 21 Oct 2021 05:21:30 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T15:21:32Z2021-04-22T15:21:32Zservicebustesto3ardhmdnlhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:21:30Z2021-10-21T05:21:30Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:21:32.923Z2021-04-22T15:21:32.973ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:30.827Z2021-10-21T05:21:30.86ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:21:33 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
- string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:21:33Z2021-04-22T15:21:33Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-10-21T05:21:31Z2021-10-21T05:21:31ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:21:33.6536071Z2021-04-22T15:21:33.6536071Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:31.3010534Z2021-10-21T05:21:31.3010534Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:21:33 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -131,25 +131,25 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-10-21T05:21:31Z2021-10-21T05:21:31ZPriority
= 'low'20true2021-04-22T15:21:34.169941Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:31.4416285Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:21:34 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -169,25 +169,25 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:21:31Z2021-10-21T05:21:31ZPriority
= 'low'20true2021-04-22T15:21:34.1691241Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:31.4330885Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:21:34 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -203,7 +203,7 @@ interactions:
testcidSET Priority = ''low''20true2021-04-22T15:21:34.169124Zrule'
+ xsi:type="SqlRuleAction">SET Priority = ''low''20true2021-10-21T05:21:31.433088Zrule'
headers:
Accept:
- application/xml
@@ -218,24 +218,24 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-10-21T05:21:31Z2021-10-21T05:21:31ZtestcidSET Priority = 'low'20true2021-04-22T15:21:34.7793219Zrule
+ i:type="SqlRuleAction">SET Priority = 'low'20true2021-10-21T05:21:31.5510372Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:21:34 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -255,24 +255,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:21:31Z2021-10-21T05:21:31ZtestcidSET Priority = 'low'20true2021-04-22T15:21:34.1691241Zrule
+ i:type="SqlRuleAction">SET Priority = 'low'20true2021-10-21T05:21:31.4330885Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:21:34 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -288,7 +288,7 @@ interactions:
updatedcid2021-04-22T15:21:34.169124Zrule'
+ xsi:type="EmptyRuleAction" />2021-10-21T05:21:31.433088Zrule'
headers:
Accept:
- application/xml
@@ -303,24 +303,24 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04rule2021-04-22T15:21:35Z2021-04-22T15:21:35Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05rule2021-10-21T05:21:31Z2021-10-21T05:21:31Zupdatedcid2021-04-22T15:21:35.4043346Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:31.6916371Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:21:35 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -340,24 +340,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustesto3ardhmdnl.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:21:34Z2021-04-22T15:21:34Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:21:31Z2021-10-21T05:21:31Zupdatedcid2021-04-22T15:21:34.1691241Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:31.4330885Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:21:35 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -379,9 +379,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd/rules/rule?api-version=2021-05
response:
body:
string: ''
@@ -389,9 +389,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:21:35 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -411,9 +411,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
string: ''
@@ -421,9 +421,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:21:36 GMT
+ - Thu, 21 Oct 2021 05:21:31 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -443,9 +443,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
@@ -453,9 +453,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:21:36 GMT
+ - Thu, 21 Oct 2021 05:21:32 GMT
etag:
- - '637547016929730000'
+ - '637703904908600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_invalid.yaml
index 559f55c6e973..5dd0b65810fc 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_invalid.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_invalid.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestssikhu6c5u.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-11-23T20:27:38Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:33Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:38 GMT
+ - Thu, 21 Oct 2021 05:21:32 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/fjrui?api-version=2017-04fjrui2020-11-23T20:27:39Z2020-11-23T20:27:39Zservicebustestssikhu6c5uhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:21:33Z2021-10-21T05:21:33Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-11-23T20:27:39.11Z2020-11-23T20:27:39.34ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:33.587Z2021-10-21T05:21:33.63ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:39 GMT
+ - Thu, 21 Oct 2021 05:21:33 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2020-11-23T20:27:40Z2020-11-23T20:27:40Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:21:34Z2021-10-21T05:21:34ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-11-23T20:27:40.0561992Z2020-11-23T20:27:40.0561992Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:34.0847835Z2021-10-21T05:21:34.0847835Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:39 GMT
+ - Thu, 21 Oct 2021 05:21:34 GMT
etag:
- - '637417600593400000'
+ - '637703904936300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -131,25 +131,25 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestssikhu6c5u.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2020-11-23T20:27:40Z2020-11-23T20:27:40Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-10-21T05:21:34Z2021-10-21T05:21:34ZPriority
= 'low'20true2020-11-23T20:27:40.1812113Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:34.3348121Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:39 GMT
+ - Thu, 21 Oct 2021 05:21:34 GMT
etag:
- - '637417600593400000'
+ - '637703904936300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -169,25 +169,25 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestssikhu6c5u.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2020-11-23T20:27:40Z2020-11-23T20:27:40Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:21:34Z2021-10-21T05:21:34ZPriority
= 'low'20true2020-11-23T20:27:40.1758102Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:34.3242269Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:39 GMT
+ - Thu, 21 Oct 2021 05:21:34 GMT
etag:
- - '637417600593400000'
+ - '637703904936300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -203,7 +203,7 @@ interactions:
Priority = ''low''20true2020-11-23T20:27:40.17581Ziewdm'
+ xsi:type="EmptyRuleAction" />2021-10-21T05:21:34.324226Ziewdm'
headers:
Accept:
- application/xml
@@ -212,27 +212,27 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '600'
+ - '601'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/iewdm?api-version=2021-05
response:
body:
string: 404Entity 'servicebustestsbname:Topic:fjrui|eqkovc|iewdm'
- was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:f68ac7fb-fb3b-4273-9db1-cdf58d115911_B1,
- SystemTracker:NoSystemTracker, Timestamp:2020-11-23T20:27:40
+ was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:6b3405cd-aa0f-4cc8-9214-7cbc72acf08c_B9,
+ SystemTracker:NoSystemTracker, Timestamp:2021-10-21T05:21:34
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Mon, 23 Nov 2020 20:27:40 GMT
+ - Thu, 21 Oct 2021 05:21:35 GMT
etag:
- - '637417600593400000'
+ - '637703904936300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -254,9 +254,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
string: ''
@@ -264,9 +264,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:40 GMT
+ - Thu, 21 Oct 2021 05:21:35 GMT
etag:
- - '637417600593400000'
+ - '637703904936300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -286,9 +286,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
string: ''
@@ -296,9 +296,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:41 GMT
+ - Thu, 21 Oct 2021 05:21:35 GMT
etag:
- - '637417600593400000'
+ - '637703904936300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -318,9 +318,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
@@ -328,9 +328,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 23 Nov 2020 20:27:41 GMT
+ - Thu, 21 Oct 2021 05:21:35 GMT
etag:
- - '637417600593400000'
+ - '637703904936300000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_success.yaml
index 4e78f638e63b..1ba344e9eb76 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_rules.test_mgmt_rule_update_success.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestlzb7z2tqdh.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:18:56Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:36Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:18:56 GMT
+ - Thu, 21 Oct 2021 05:21:35 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:18:57Z2021-04-22T15:18:57Zservicebustestlzb7z2tqdhhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:21:36Z2021-10-21T05:21:37Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:18:57.323Z2021-04-22T15:18:57.377ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:36.953Z2021-10-21T05:21:37.013ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:18:57 GMT
+ - Thu, 21 Oct 2021 05:21:36 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:18:58Z2021-04-22T15:18:58Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:21:37Z2021-10-21T05:21:37ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:18:58.0416933Z2021-04-22T15:18:58.0416933Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:37.5706999Z2021-10-21T05:21:37.5706999Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:18:58 GMT
+ - Thu, 21 Oct 2021 05:21:36 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -131,25 +131,25 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:18:58Z2021-04-22T15:18:58Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-10-21T05:21:37Z2021-10-21T05:21:37ZPriority
= 'low'20true2021-04-22T15:18:58.4948313Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:37.7581523Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:18:58 GMT
+ - Thu, 21 Oct 2021 05:21:37 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -169,25 +169,25 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:18:58Z2021-04-22T15:18:58Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:21:37Z2021-10-21T05:21:37ZPriority
= 'low'20true2021-04-22T15:18:58.4985986Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:37.7536548Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:18:58 GMT
+ - Thu, 21 Oct 2021 05:21:37 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -203,7 +203,7 @@ interactions:
testcidSET Priority = ''low''20true2021-04-22T15:18:58.498598Zrule'
+ xsi:type="SqlRuleAction">SET Priority = ''low''20true2021-10-21T05:21:37.753654Zrule'
headers:
Accept:
- application/xml
@@ -218,24 +218,24 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:18:59Z2021-04-22T15:18:59Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-10-21T05:21:37Z2021-10-21T05:21:37ZtestcidSET Priority = 'low'20true2021-04-22T15:18:59.041708Zrule
+ i:type="SqlRuleAction">SET Priority = 'low'20true2021-10-21T05:21:37.9300148Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:18:58 GMT
+ - Thu, 21 Oct 2021 05:21:37 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -255,24 +255,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:18:58Z2021-04-22T15:18:58Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:21:37Z2021-10-21T05:21:37ZtestcidSET Priority = 'low'20true2021-04-22T15:18:58.4985986Zrule
+ i:type="SqlRuleAction">SET Priority = 'low'20true2021-10-21T05:21:37.7536548Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:18:59 GMT
+ - Thu, 21 Oct 2021 05:21:37 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -288,7 +288,7 @@ interactions:
updatedcid2021-04-22T15:18:58.498598Zrule'
+ xsi:type="EmptyRuleAction" />2021-10-21T05:21:37.753654Zrule'
headers:
Accept:
- application/xml
@@ -303,24 +303,24 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
- string: https://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04rule2021-04-22T15:18:59Z2021-04-22T15:18:59Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05rule2021-10-21T05:21:38Z2021-10-21T05:21:38Zupdatedcid2021-04-22T15:18:59.6198338Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:38.1175151Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:18:59 GMT
+ - Thu, 21 Oct 2021 05:21:37 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -340,24 +340,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestlzb7z2tqdh.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2017-04rule2021-04-22T15:18:58Z2021-04-22T15:18:58Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?enrich=false&api-version=2021-05rule2021-10-21T05:21:37Z2021-10-21T05:21:37Zupdatedcid2021-04-22T15:18:58.4985986Zrule
+ i:type="EmptyRuleAction"/>2021-10-21T05:21:37.7536548Zrule
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:18:59 GMT
+ - Thu, 21 Oct 2021 05:21:37 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -379,9 +379,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc/rules/rule?api-version=2021-05
response:
body:
string: ''
@@ -389,9 +389,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:19:00 GMT
+ - Thu, 21 Oct 2021 05:21:37 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -411,9 +411,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
string: ''
@@ -421,9 +421,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:19:00 GMT
+ - Thu, 21 Oct 2021 05:21:37 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -443,9 +443,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
@@ -453,9 +453,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:19:01 GMT
+ - Thu, 21 Oct 2021 05:21:38 GMT
etag:
- - '637547015373770000'
+ - '637703904970130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_by_name.yaml
index d8e183d031db..26660d2a56b7 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_by_name.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_by_name.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:23Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:39Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:23 GMT
+ - Thu, 21 Oct 2021 05:21:39 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:36:24Z2020-09-29T08:36:24Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-10-21T05:21:39Z2021-10-21T05:21:39Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:24.637Z2020-09-29T08:36:24.667ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:39.803Z2021-10-21T05:21:39.87ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:24 GMT
+ - Thu, 21 Oct 2021 05:21:40 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04sub_testkkk2020-09-29T08:36:25Z2020-09-29T08:36:25Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05sub_testkkk2021-10-21T05:21:40Z2021-10-21T05:21:40ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:25.7266754Z2020-09-29T08:36:25.7266754Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:40.3925469Z2021-10-21T05:21:40.3925469Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:25 GMT
+ - Thu, 21 Oct 2021 05:21:40 GMT
etag:
- - '637369653846670000'
+ - '637703904998700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -122,24 +122,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2017-04sub_testkkk2020-09-29T08:36:25Z2020-09-29T08:36:25Zsb://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?enrich=false&api-version=2021-05sub_testkkk2021-10-21T05:21:40Z2021-10-21T05:21:40ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:25.7199052Z2020-09-29T08:36:25.7199052Z2020-09-29T08:36:25.72Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:40.3895964Z2021-10-21T05:21:40.3895964Z2021-10-21T05:21:40.39Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:26 GMT
+ - Thu, 21 Oct 2021 05:21:40 GMT
etag:
- - '637369653846670000'
+ - '637703904998700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -161,9 +161,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf/subscriptions/sub_testkkk?api-version=2021-05
response:
body:
string: ''
@@ -171,9 +171,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:26 GMT
+ - Thu, 21 Oct 2021 05:21:40 GMT
etag:
- - '637369653846670000'
+ - '637703904998700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -193,9 +193,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
string: ''
@@ -203,9 +203,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:26 GMT
+ - Thu, 21 Oct 2021 05:21:40 GMT
etag:
- - '637369653846670000'
+ - '637703904998700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_duplicate.yaml
index b57e6c07acd8..32a84aad7725 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_duplicate.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_duplicate.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:28Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:41Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:27 GMT
+ - Thu, 21 Oct 2021 05:21:41 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:36:28Z2020-09-29T08:36:28Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-10-21T05:21:42Z2021-10-21T05:21:42Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:28.5Z2020-09-29T08:36:28.543ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:42.12Z2021-10-21T05:21:42.18ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:28 GMT
+ - Thu, 21 Oct 2021 05:21:42 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04kkaqo2020-09-29T08:36:29Z2020-09-29T08:36:29Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05kkaqo2021-10-21T05:21:42Z2021-10-21T05:21:42ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:29.1347421Z2020-09-29T08:36:29.1347421Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:42.6353564Z2021-10-21T05:21:42.6353564Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:28 GMT
+ - Thu, 21 Oct 2021 05:21:42 GMT
etag:
- - '637369653885430000'
+ - '637703905021800000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -129,21 +129,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
string: 409The messaging entity 'servicebustestsbname:Topic:dqkodq|kkaqo'
- already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:54918e51-b6a5-4dc2-aa5d-8b5bbfc46407_B4,
- SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:36:29
+ already exists. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:2ec96a7b-0627-494d-a37a-91c40bea0701_B14,
+ SystemTracker:NoSystemTracker, Timestamp:2021-10-21T05:21:42
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:29 GMT
+ - Thu, 21 Oct 2021 05:21:43 GMT
etag:
- - '637369653885430000'
+ - '637703905021800000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -165,9 +165,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq/subscriptions/kkaqo?api-version=2021-05
response:
body:
string: ''
@@ -175,9 +175,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:30 GMT
+ - Thu, 21 Oct 2021 05:21:43 GMT
etag:
- - '637369653885430000'
+ - '637703905021800000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -197,9 +197,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
string: ''
@@ -207,9 +207,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:30 GMT
+ - Thu, 21 Oct 2021 05:21:44 GMT
etag:
- - '637369653885430000'
+ - '637703905021800000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_forward_to.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_forward_to.yaml
index 3d03054ef9a1..6a5aa82034f4 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_forward_to.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_forward_to.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestuxrihuue54.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-19T22:18:32Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:44Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Fri, 19 Mar 2021 22:18:31 GMT
+ - Thu, 21 Oct 2021 05:21:44 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2021-05
response:
body:
- string: https://servicebustestuxrihuue54.servicebus.windows.net/dkfthj?api-version=2017-04dkfthj2021-03-19T22:18:32Z2021-03-19T22:18:33Zservicebustestuxrihuue54https://servicebustestaweyco6xnr.servicebus.windows.net/dkfthj?api-version=2021-05dkfthj2021-10-21T05:21:45Z2021-10-21T05:21:45Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-03-19T22:18:32.96Z2021-03-19T22:18:33.097ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:21:45.207Z2021-10-21T05:21:45.267ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Fri, 19 Mar 2021 22:18:32 GMT
+ - Thu, 21 Oct 2021 05:21:45 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,21 +86,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2021-05
response:
body:
- string: https://servicebustestuxrihuue54.servicebus.windows.net/iweidkforward?api-version=2017-04iweidkforward2021-03-19T22:18:33Z2021-03-19T22:18:33Zservicebustestuxrihuue54https://servicebustestaweyco6xnr.servicebus.windows.net/iweidkforward?api-version=2021-05iweidkforward2021-10-21T05:21:46Z2021-10-21T05:21:46Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-19T22:18:33.9Z2021-03-19T22:18:33.987ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:46.127Z2021-10-21T05:21:46.157ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Fri, 19 Mar 2021 22:18:33 GMT
+ - Thu, 21 Oct 2021 05:21:46 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -114,7 +114,7 @@ interactions:
body: '
sb://servicebustestuxrihuue54.servicebus.windows.net/dkfthjsb://servicebustestuxrihuue54.servicebus.windows.net/dkfthj'
+ type="application/xml">sb://servicebustestaweyco6xnr.servicebus.windows.net/dkfthjsb://servicebustestaweyco6xnr.servicebus.windows.net/dkfthj'
headers:
Accept:
- application/xml
@@ -127,27 +127,27 @@ interactions:
Content-Type:
- application/atom+xml
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestuxrihuue54.servicebus.windows.net%2Fdkfthj&sig=%2fG5jJTxKyPzckZWN363QRs6tOXUuNQHlaEcLB0JvN3M%3d&se=1616195914&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Fdkfthj&sig=CmZdSv2GLAIVvM5jrHrTUsMumzX4EjOk3quuwusmdt0%3d&se=1634797306&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestuxrihuue54.servicebus.windows.net%2Fdkfthj&sig=%2fG5jJTxKyPzckZWN363QRs6tOXUuNQHlaEcLB0JvN3M%3d&se=1616195914&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Fdkfthj&sig=CmZdSv2GLAIVvM5jrHrTUsMumzX4EjOk3quuwusmdt0%3d&se=1634797306&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05
response:
body:
- string: https://servicebustestuxrihuue54.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04kdosakoforward2021-03-19T22:18:34Z2021-03-19T22:18:34Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05kdosakoforward2021-10-21T05:21:46Z2021-10-21T05:21:46ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestuxrihuue54.servicebus.windows.net/dkfthj2021-03-19T22:18:34.6104365Z2021-03-19T22:18:34.6104365Z0001-01-01T00:00:00sb://servicebustestuxrihuue54.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/dkfthj2021-10-21T05:21:46.6331204Z2021-10-21T05:21:46.6331204Z0001-01-01T00:00:00sb://servicebustestaweyco6xnr.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Fri, 19 Mar 2021 22:18:34 GMT
+ - Thu, 21 Oct 2021 05:21:46 GMT
etag:
- - '637517891139870000'
+ - '637703905061570000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -167,24 +167,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestuxrihuue54.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2017-04kdosakoforward2021-03-19T22:18:34Z2021-03-19T22:18:34Zsb://servicebustestaweyco6xnr.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?enrich=false&api-version=2021-05kdosakoforward2021-10-21T05:21:46Z2021-10-21T05:21:46ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestuxrihuue54.servicebus.windows.net/dkfthj2021-03-19T22:18:34.6084681Z2021-03-19T22:18:34.6084681Z2021-03-19T22:18:34.61Z00000sb://servicebustestuxrihuue54.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/dkfthj2021-10-21T05:21:46.6310135Z2021-10-21T05:21:46.6310135Z2021-10-21T05:21:46.6310135Z00000sb://servicebustestaweyco6xnr.servicebus.windows.net/dkfthjP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Fri, 19 Mar 2021 22:18:34 GMT
+ - Thu, 21 Oct 2021 05:21:46 GMT
etag:
- - '637517891139870000'
+ - '637703905061570000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -206,9 +206,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward/subscriptions/kdosakoforward?api-version=2021-05
response:
body:
string: ''
@@ -216,9 +216,9 @@ interactions:
content-length:
- '0'
date:
- - Fri, 19 Mar 2021 22:18:34 GMT
+ - Thu, 21 Oct 2021 05:21:46 GMT
etag:
- - '637517891139870000'
+ - '637703905061570000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -238,9 +238,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidkforward?api-version=2021-05
response:
body:
string: ''
@@ -248,9 +248,9 @@ interactions:
content-length:
- '0'
date:
- - Fri, 19 Mar 2021 22:18:34 GMT
+ - Thu, 21 Oct 2021 05:21:46 GMT
etag:
- - '637517891139870000'
+ - '637703905061570000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -270,9 +270,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.9.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkfthj?api-version=2021-05
response:
body:
string: ''
@@ -280,9 +280,9 @@ interactions:
content-length:
- '0'
date:
- - Fri, 19 Mar 2021 22:18:35 GMT
+ - Thu, 21 Oct 2021 05:21:47 GMT
etag:
- - '637517891130970000'
+ - '637703905052670000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_subscription_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_subscription_description.yaml
index 153ec2be368e..5aa946a0c4f1 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_subscription_description.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_create_with_subscription_description.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestxi2l2ghys7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T16:11:22Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:48Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:11:22 GMT
+ - Thu, 21 Oct 2021 05:21:47 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
- string: https://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-15T16:11:23Z2021-04-15T16:11:23Zservicebustestxi2l2ghys7https://servicebustestaweyco6xnr.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-10-21T05:21:48Z2021-10-21T05:21:48Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-15T16:11:23.527Z2021-04-15T16:11:23.57ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:48.583Z2021-10-21T05:21:48.66ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:11:23 GMT
+ - Thu, 21 Oct 2021 05:21:48 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05
response:
body:
- string: https://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04kdosako2021-04-15T16:11:24Z2021-04-15T16:11:24Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05kdosako2021-10-21T05:21:49Z2021-10-21T05:21:49ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:11:24.2964145Z2021-04-15T16:11:24.2964145Z0001-01-01T00:00:00PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-10-21T05:21:49.1031669Z2021-10-21T05:21:49.1031669Z0001-01-01T00:00:00PT10MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:11:23 GMT
+ - Thu, 21 Oct 2021 05:21:48 GMT
etag:
- - '637540998835700000'
+ - '637703905086600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -122,24 +122,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2017-04kdosako2021-04-15T16:11:24Z2021-04-15T16:11:24Zsb://servicebustestaweyco6xnr.servicebus.windows.net/iweidk/subscriptions/kdosako?enrich=false&api-version=2021-05kdosako2021-10-21T05:21:49Z2021-10-21T05:21:49ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:11:24.3006566Z2021-04-15T16:11:24.3006566Z2021-04-15T16:11:24.3006566Z00000PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-10-21T05:21:49.1132928Z2021-10-21T05:21:49.1132928Z2021-10-21T05:21:49.1132928Z00000PT10MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:11:24 GMT
+ - Thu, 21 Oct 2021 05:21:48 GMT
etag:
- - '637540998835700000'
+ - '637703905086600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -166,23 +166,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2021-05
response:
body:
- string: https://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2017-04pfkxmq2021-04-15T16:11:25Z2021-04-15T16:11:25Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2021-05pfkxmq2021-10-21T05:21:49Z2021-10-21T05:21:49ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:11:25.0054126Z2021-04-15T16:11:25.0054126Z0001-01-01T00:00:00PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-10-21T05:21:49.4468968Z2021-10-21T05:21:49.4468968Z0001-01-01T00:00:00PT10MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:11:24 GMT
+ - Thu, 21 Oct 2021 05:21:48 GMT
etag:
- - '637540998835700000'
+ - '637703905086600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -202,24 +202,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestxi2l2ghys7.servicebus.windows.net/iweidk/subscriptions/pfkxmq?enrich=false&api-version=2017-04pfkxmq2021-04-15T16:11:25Z2021-04-15T16:11:25Zsb://servicebustestaweyco6xnr.servicebus.windows.net/iweidk/subscriptions/pfkxmq?enrich=false&api-version=2021-05pfkxmq2021-10-21T05:21:49Z2021-10-21T05:21:49ZPT13StruePT11Mtruetrue014trueActive2021-04-15T16:11:25.019399Z2021-04-15T16:11:25.019399Z2021-04-15T16:11:25.019399Z00000PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT13StruePT11Mtruetrue014trueActive2021-10-21T05:21:49.4570162Z2021-10-21T05:21:49.4570162Z2021-10-21T05:21:49.4570162Z00000PT10MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:11:24 GMT
+ - Thu, 21 Oct 2021 05:21:48 GMT
etag:
- - '637540998835700000'
+ - '637703905086600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -241,9 +241,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/kdosako?api-version=2021-05
response:
body:
string: ''
@@ -251,9 +251,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 16:11:25 GMT
+ - Thu, 21 Oct 2021 05:21:48 GMT
etag:
- - '637540998835700000'
+ - '637703905086600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -273,9 +273,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk/subscriptions/pfkxmq?api-version=2021-05
response:
body:
string: ''
@@ -283,9 +283,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 16:11:25 GMT
+ - Thu, 21 Oct 2021 05:21:48 GMT
etag:
- - '637540998835700000'
+ - '637703905086600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -305,9 +305,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
string: ''
@@ -315,9 +315,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 16:11:26 GMT
+ - Thu, 21 Oct 2021 05:21:49 GMT
etag:
- - '637540998835700000'
+ - '637703905086600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_delete.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_delete.yaml
index 7122f49471f9..bd4231f17136 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_delete.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_delete.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:35Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:50Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:34 GMT
+ - Thu, 21 Oct 2021 05:21:50 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda?api-version=2017-04test_topicgda2020-09-29T08:36:35Z2020-09-29T08:36:35Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda?api-version=2021-05test_topicgda2021-10-21T05:21:51Z2021-10-21T05:21:51Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:35.773Z2020-09-29T08:36:35.883ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:51.12Z2021-10-21T05:21:51.153ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:35 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-10-21T05:21:51Z2021-10-21T05:21:51ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.4355262Z2020-09-29T08:36:36.4355262Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:51.6302787Z2021-10-21T05:21:51.6302787Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:36 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -122,26 +122,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:36Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36ZSubscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:51Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-10-21T05:21:51Z2021-10-21T05:21:51ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:51.6299491Z2021-10-21T05:21:51.6299491Z2021-10-21T05:21:51.63Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:36 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -168,23 +168,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-10-21T05:21:51Z2021-10-21T05:21:51ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.8105286Z2020-09-29T08:36:36.8105286Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:51.8490327Z2021-10-21T05:21:51.8490327Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:36 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -204,32 +204,32 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:37Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36ZSubscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:51Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05test_sub1da2021-10-21T05:21:51Z2021-10-21T05:21:51ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:51.6299491Z2021-10-21T05:21:51.6299491Z2021-10-21T05:21:51.63Z00000P10675199DT2H48M5.4775807SAvailablefalsehttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-10-21T05:21:51Z2021-10-21T05:21:51ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:51.8487375Z2021-10-21T05:21:51.8487375Z2021-10-21T05:21:51.8487375Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:36 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -249,24 +249,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2017-04test_sub1da2020-09-29T08:36:36Z2020-09-29T08:36:36Zsb://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?enrich=false&api-version=2021-05test_sub1da2021-10-21T05:21:51Z2021-10-21T05:21:51ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z2020-09-29T08:36:36.42392Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:51.6299491Z2021-10-21T05:21:51.6299491Z2021-10-21T05:21:51.63Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:36 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -288,9 +288,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub1da?api-version=2021-05
response:
body:
string: ''
@@ -298,9 +298,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:36 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -318,26 +318,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:37Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04test_sub2gcv2020-09-29T08:36:36Z2020-09-29T08:36:36ZSubscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:52Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05test_sub2gcv2021-10-21T05:21:51Z2021-10-21T05:21:51ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z2020-09-29T08:36:36.8145447Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:51.8487375Z2021-10-21T05:21:51.8487375Z2021-10-21T05:21:51.8487375Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:36 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -359,9 +359,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions/test_sub2gcv?api-version=2021-05
response:
body:
string: ''
@@ -369,9 +369,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:37 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -389,20 +389,20 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:37Z
+ string: Subscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topicgda/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:52Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:37 GMT
+ - Thu, 21 Oct 2021 05:21:51 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -424,9 +424,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topicgda?api-version=2021-05
response:
body:
string: ''
@@ -434,9 +434,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:37 GMT
+ - Thu, 21 Oct 2021 05:21:52 GMT
etag:
- - '637369653958830000'
+ - '637703905111530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_properties_basic.yaml
index e8896be2acd3..5827a58aab28 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_properties_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_get_runtime_properties_basic.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:26Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:53Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:26 GMT
+ - Thu, 21 Oct 2021 05:21:52 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2021-05
response:
body:
- string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa?api-version=2017-04dcvxqa2020-08-17T17:53:27Z2020-08-17T17:53:27Zservicebustesteotyq3ucg7https://servicebustestaweyco6xnr.servicebus.windows.net/dcvxqa?api-version=2021-05dcvxqa2021-10-21T05:21:53Z2021-10-21T05:21:53Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:27.23Z2020-08-17T17:53:27.263ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:53.633Z2021-10-21T05:21:53.693ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:27 GMT
+ - Thu, 21 Oct 2021 05:21:53 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05
response:
body:
- string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04xvazzag2020-08-17T17:53:28Z2020-08-17T17:53:28Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05xvazzag2021-10-21T05:21:54Z2021-10-21T05:21:54ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:28.0266691Z2020-08-17T17:53:28.0266691Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:54.222156Z2021-10-21T05:21:54.222156Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:28 GMT
+ - Thu, 21 Oct 2021 05:21:53 GMT
etag:
- - '637332836072630000'
+ - '637703905136930000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -122,24 +122,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustesteotyq3ucg7.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2017-04xvazzag2020-08-17T17:53:28Z2020-08-17T17:53:28Zsb://servicebustestaweyco6xnr.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?enrich=false&api-version=2021-05xvazzag2021-10-21T05:21:54Z2021-10-21T05:21:54ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:28.0287663Z2020-08-17T17:53:28.0287663Z2020-08-17T17:53:28.03Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:54.2104308Z2021-10-21T05:21:54.2104308Z2021-10-21T05:21:54.2104308Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:28 GMT
+ - Thu, 21 Oct 2021 05:21:53 GMT
etag:
- - '637332836072630000'
+ - '637703905136930000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -161,9 +161,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa/subscriptions/xvazzag?api-version=2021-05
response:
body:
string: ''
@@ -171,9 +171,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 17 Aug 2020 17:53:28 GMT
+ - Thu, 21 Oct 2021 05:21:53 GMT
etag:
- - '637332836072630000'
+ - '637703905136930000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -193,9 +193,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dcvxqa?api-version=2021-05
response:
body:
string: ''
@@ -203,9 +203,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 17 Aug 2020 17:53:28 GMT
+ - Thu, 21 Oct 2021 05:21:54 GMT
etag:
- - '637332836072630000'
+ - '637703905136930000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list.yaml
index 917ded55fe50..0cadf02d53d0 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:42Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:55Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:42 GMT
+ - Thu, 21 Oct 2021 05:21:55 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc?api-version=2017-04lkoqxc2020-09-29T08:36:43Z2020-09-29T08:36:43Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/lkoqxc?api-version=2021-05lkoqxc2021-10-21T05:21:56Z2021-10-21T05:21:56Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:43.043Z2020-09-29T08:36:43.077ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:56.07Z2021-10-21T05:21:56.227ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:43 GMT
+ - Thu, 21 Oct 2021 05:21:56 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,20 +79,20 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:43Z
+ string: Subscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:56Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:43 GMT
+ - Thu, 21 Oct 2021 05:21:56 GMT
etag:
- - '637369654030770000'
+ - '637703905162270000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -119,23 +119,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:36:43Z2020-09-29T08:36:43Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05testsub12021-10-21T05:21:56Z2021-10-21T05:21:56ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:43.8949819Z2020-09-29T08:36:43.8949819Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:56.7802839Z2021-10-21T05:21:56.7802839Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:43 GMT
+ - Thu, 21 Oct 2021 05:21:56 GMT
etag:
- - '637369654030770000'
+ - '637703905162270000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -162,23 +162,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:36:44Z2020-09-29T08:36:44Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05testsub22021-10-21T05:21:57Z2021-10-21T05:21:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:44.4262925Z2020-09-29T08:36:44.4262925Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:57.0459016Z2021-10-21T05:21:57.0459016Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:44 GMT
+ - Thu, 21 Oct 2021 05:21:56 GMT
etag:
- - '637369654030770000'
+ - '637703905162270000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -198,32 +198,32 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:44Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04testsub12020-09-29T08:36:43Z2020-09-29T08:36:43ZSubscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:57Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05testsub12021-10-21T05:21:56Z2021-10-21T05:21:56ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:43.8908707Z2020-09-29T08:36:43.8908707Z2020-09-29T08:36:43.8908707Z00000P10675199DT2H48M5.4775807SAvailablehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04testsub22020-09-29T08:36:44Z2020-09-29T08:36:44ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:56.7658706Z2021-10-21T05:21:56.7658706Z2021-10-21T05:21:56.767Z00000P10675199DT2H48M5.4775807SAvailablefalsehttps://servicebustestaweyco6xnr.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05testsub22021-10-21T05:21:57Z2021-10-21T05:21:57ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:44.4377786Z2020-09-29T08:36:44.4377786Z2020-09-29T08:36:44.4377786Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:57.0471267Z2021-10-21T05:21:57.0471267Z2021-10-21T05:21:57.0471267Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:44 GMT
+ - Thu, 21 Oct 2021 05:21:56 GMT
etag:
- - '637369654030770000'
+ - '637703905162270000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -245,9 +245,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub1?api-version=2021-05
response:
body:
string: ''
@@ -255,9 +255,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:44 GMT
+ - Thu, 21 Oct 2021 05:21:57 GMT
etag:
- - '637369654030770000'
+ - '637703905162270000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -277,9 +277,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions/testsub2?api-version=2021-05
response:
body:
string: ''
@@ -287,9 +287,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:44 GMT
+ - Thu, 21 Oct 2021 05:21:57 GMT
etag:
- - '637369654030770000'
+ - '637703905162270000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -307,20 +307,20 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:44Z
+ string: Subscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/lkoqxc/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:57Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:44 GMT
+ - Thu, 21 Oct 2021 05:21:57 GMT
etag:
- - '637369654030770000'
+ - '637703905162270000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -342,9 +342,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/lkoqxc?api-version=2021-05
response:
body:
string: ''
@@ -352,9 +352,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:45 GMT
+ - Thu, 21 Oct 2021 05:21:57 GMT
etag:
- - '637369654030770000'
+ - '637703905162270000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_properties.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_properties.yaml
index 49d66e8678fb..716c8918b722 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_properties.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_list_runtime_properties.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustesteotyq3ucg7.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:34Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:58Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:33 GMT
+ - Thu, 21 Oct 2021 05:21:58 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2021-05
response:
body:
- string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv?api-version=2017-04dkoamv2020-08-17T17:53:34Z2020-08-17T17:53:34Zservicebustesteotyq3ucg7https://servicebustestaweyco6xnr.servicebus.windows.net/dkoamv?api-version=2021-05dkoamv2021-10-21T05:21:58Z2021-10-21T05:21:58Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T17:53:34.87Z2020-08-17T17:53:34.903ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:21:58.837Z2021-10-21T05:21:58.887ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:34 GMT
+ - Thu, 21 Oct 2021 05:21:59 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,20 +79,20 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:35Z
+ string: Subscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:59Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:34 GMT
+ - Thu, 21 Oct 2021 05:21:59 GMT
etag:
- - '637332836149030000'
+ - '637703905188870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -112,20 +112,20 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:36Z
+ string: Subscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:59Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:35 GMT
+ - Thu, 21 Oct 2021 05:21:59 GMT
etag:
- - '637332836149030000'
+ - '637703905188870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -152,23 +152,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05
response:
body:
- string: https://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-17T17:53:36Z2020-08-17T17:53:36Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-10-21T05:21:59Z2021-10-21T05:21:59ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:36.1601948Z2020-08-17T17:53:36.1601948Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:59.4068659Z2021-10-21T05:21:59.4068659Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:35 GMT
+ - Thu, 21 Oct 2021 05:21:59 GMT
etag:
- - '637332836149030000'
+ - '637703905188870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -188,26 +188,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:36Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-17T17:53:36Z2020-08-17T17:53:36ZSubscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:59Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-10-21T05:21:59Z2021-10-21T05:21:59ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:36.1693589Z2020-08-17T17:53:36.1693589Z2020-08-17T17:53:36.17Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:59.4027056Z2021-10-21T05:21:59.4027056Z2021-10-21T05:21:59.403Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:35 GMT
+ - Thu, 21 Oct 2021 05:21:59 GMT
etag:
- - '637332836149030000'
+ - '637703905188870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -227,26 +227,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:36Zhttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04cxqplc2020-08-17T17:53:36Z2020-08-17T17:53:36ZSubscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:59Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05cxqplc2021-10-21T05:21:59Z2021-10-21T05:21:59ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-08-17T17:53:36.1693589Z2020-08-17T17:53:36.1693589Z2020-08-17T17:53:36.17Z00000P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:21:59.4027056Z2021-10-21T05:21:59.4027056Z2021-10-21T05:21:59.403Z00000P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:35 GMT
+ - Thu, 21 Oct 2021 05:21:59 GMT
etag:
- - '637332836149030000'
+ - '637703905188870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -268,9 +268,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions/cxqplc?api-version=2021-05
response:
body:
string: ''
@@ -278,9 +278,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 17 Aug 2020 17:53:35 GMT
+ - Thu, 21 Oct 2021 05:21:59 GMT
etag:
- - '637332836149030000'
+ - '637703905188870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -298,20 +298,20 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Subscriptionshttps://servicebustesteotyq3ucg7.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2017-042020-08-17T17:53:36Z
+ string: Subscriptionshttps://servicebustestaweyco6xnr.servicebus.windows.net/dkoamv/subscriptions?$skip=0&$top=100&api-version=2021-052021-10-21T05:21:59Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 17:53:36 GMT
+ - Thu, 21 Oct 2021 05:21:59 GMT
etag:
- - '637332836149030000'
+ - '637703905188870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -333,9 +333,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dkoamv?api-version=2021-05
response:
body:
string: ''
@@ -343,9 +343,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 17 Aug 2020 17:53:36 GMT
+ - Thu, 21 Oct 2021 05:22:00 GMT
etag:
- - '637332836149030000'
+ - '637703905188870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_error.yaml
index 970b238060be..304cd126e441 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_error.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_error.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestnkxyo36wpb.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:51:48Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:00Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 02 Mar 2021 19:51:48 GMT
+ - Thu, 21 Oct 2021 05:22:00 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05
response:
body:
- string: https://servicebustestnkxyo36wpb.servicebus.windows.net/dfjdfj?api-version=2017-04dfjdfj2021-03-02T19:51:48Z2021-03-02T19:51:48Zservicebustestnkxyo36wpbhttps://servicebustestaweyco6xnr.servicebus.windows.net/dfjdfj?api-version=2021-05dfjdfj2021-10-21T05:22:01Z2021-10-21T05:22:01Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:51:48.493Z2021-03-02T19:51:48.56ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:01.23Z2021-10-21T05:22:01.277ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 02 Mar 2021 19:51:48 GMT
+ - Thu, 21 Oct 2021 05:22:01 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2021-05
response:
body:
- string: https://servicebustestnkxyo36wpb.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2017-04kwqxd2021-03-02T19:51:49Z2021-03-02T19:51:49Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2021-05kwqxd2021-10-21T05:22:01Z2021-10-21T05:22:01ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-03-02T19:51:49.0648439Z2021-03-02T19:51:49.0648439Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:01.7356824Z2021-10-21T05:22:01.7356824Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 02 Mar 2021 19:51:49 GMT
+ - Thu, 21 Oct 2021 05:22:01 GMT
etag:
- - '637503115085600000'
+ - '637703905212770000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -124,9 +124,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj/subscriptions/kwqxd?api-version=2021-05
response:
body:
string: ''
@@ -134,9 +134,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 02 Mar 2021 19:51:49 GMT
+ - Thu, 21 Oct 2021 05:22:01 GMT
etag:
- - '637503115085600000'
+ - '637703905212770000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -156,9 +156,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05
response:
body:
string: ''
@@ -166,9 +166,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 02 Mar 2021 19:51:49 GMT
+ - Thu, 21 Oct 2021 05:22:02 GMT
etag:
- - '637503115085600000'
+ - '637703905212770000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_success.yaml
index e74795606c89..7b36f4ab7687 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_dict_success.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestf27vchuqgf.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:04:58Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:03Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:04:58 GMT
+ - Thu, 21 Oct 2021 05:22:03 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T15:04:59Z2021-04-22T15:04:59Zservicebustestf27vchuqgfhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:03Z2021-10-21T05:22:03Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:04:59.14Z2021-04-22T15:04:59.19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:03.623Z2021-10-21T05:22:03.66ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:04:59 GMT
+ - Thu, 21 Oct 2021 05:22:03 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
- string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:04:59Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-10-21T05:22:04Z2021-10-21T05:22:04ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:04:59.8631553Z2021-04-22T15:04:59.8631553Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:04.1275171Z2021-10-21T05:22:04.1275171Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:04:59 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -131,23 +131,23 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
- string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:05:00Z2021-04-22T15:05:00Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-10-21T05:22:04Z2021-10-21T05:22:04ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:05:00.2068751Z2021-04-22T15:05:00.2068751Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:04.2056576Z2021-10-21T05:22:04.2056576Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:04:59 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -167,24 +167,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:05:00Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05eqkovcd2021-10-21T05:22:04Z2021-10-21T05:22:04ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:04:59.8612051Z2021-04-22T15:05:00.2049828Z2021-04-22T15:04:59.8612051Z00000P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:04.1198844Z2021-10-21T05:22:04.1980141Z2021-10-21T05:22:04.12Z00000P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:05:00 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -213,23 +213,23 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
- string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:05:00Z2021-04-22T15:05:00Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-10-21T05:22:04Z2021-10-21T05:22:04ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:05:00.7589009Z2021-04-22T15:05:00.7589009Z0001-01-01T00:00:00PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:04.2838011Z2021-10-21T05:22:04.2838011Z0001-01-01T00:00:00PT10MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:05:00 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -249,24 +249,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:05:00Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05eqkovcd2021-10-21T05:22:04Z2021-10-21T05:22:04ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:04:59.8612051Z2021-04-22T15:05:00.8768405Z2021-04-22T15:04:59.8612051Z00000PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:04.1198844Z2021-10-21T05:22:04.291794Z2021-10-21T05:22:04.12Z00000PT10MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:05:00 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -280,7 +280,7 @@ interactions:
body: '
PT12SfalsePT11Mtruetrue14trueActivesb://servicebustestf27vchuqgf.servicebus.windows.net/fjruidsb://servicebustestf27vchuqgf.servicebus.windows.net/fjruidPT10MAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue14trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruidsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruidPT10MAvailable'
headers:
Accept:
- application/xml
@@ -295,27 +295,27 @@ interactions:
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestf27vchuqgf.servicebus.windows.net%2Ffjruid&sig=FwaFbEXORavfgL47hbYM5djMQSSvoy4%2bQ6XOjrEujI8%3d&se=1619107501&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjruid&sig=gV2SHa7sR46Z8qkqmoctelMl2VbSz5xhInrkLjFVX74%3d&se=1634797324&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestf27vchuqgf.servicebus.windows.net%2Ffjruid&sig=FwaFbEXORavfgL47hbYM5djMQSSvoy4%2bQ6XOjrEujI8%3d&se=1619107501&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjruid&sig=gV2SHa7sR46Z8qkqmoctelMl2VbSz5xhInrkLjFVX74%3d&se=1634797324&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
- string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:05:01Z2021-04-22T15:05:01Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-10-21T05:22:04Z2021-10-21T05:22:04ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid2021-04-22T15:05:01.4307831Z2021-04-22T15:05:01.4307831Z0001-01-01T00:00:00sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruidP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid2021-10-21T05:22:04.377529Z2021-10-21T05:22:04.377529Z0001-01-01T00:00:00sb://servicebustestaweyco6xnr.servicebus.windows.net/fjruidP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:05:01 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -335,24 +335,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:05:01Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05eqkovcd2021-10-21T05:22:04Z2021-10-21T05:22:04ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid2021-04-22T15:04:59.8612051Z2021-04-22T15:05:01.4393735Z2021-04-22T15:04:59.8612051Z00000sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruidP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid2021-10-21T05:22:04.1198844Z2021-10-21T05:22:04.3855113Z2021-10-21T05:22:04.12Z00000sb://servicebustestaweyco6xnr.servicebus.windows.net/fjruidP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:05:01 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -381,23 +381,23 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
- string: https://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04eqkovcd2021-04-22T15:05:01Z2021-04-22T15:05:01Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05eqkovcd2021-10-21T05:22:04Z2021-10-21T05:22:04ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:05:01.9777217Z2021-04-22T15:05:01.9777217Z0001-01-01T00:00:00PT15MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:22:04.4713051Z2021-10-21T05:22:04.4713051Z0001-01-01T00:00:00PT15MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:05:01 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -417,24 +417,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestf27vchuqgf.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2017-04eqkovcd2021-04-22T15:04:59Z2021-04-22T15:05:02Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjruid/subscriptions/eqkovcd?enrich=false&api-version=2021-05eqkovcd2021-10-21T05:22:04Z2021-10-21T05:22:04ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:04:59.8612051Z2021-04-22T15:05:02.0018556Z2021-04-22T15:04:59.8612051Z00000PT15MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:22:04.1198844Z2021-10-21T05:22:04.4792601Z2021-10-21T05:22:04.12Z00000PT15MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:05:01 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -456,9 +456,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid/subscriptions/eqkovcd?api-version=2021-05
response:
body:
string: ''
@@ -466,9 +466,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:05:02 GMT
+ - Thu, 21 Oct 2021 05:22:04 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -488,9 +488,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
@@ -498,9 +498,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:05:02 GMT
+ - Thu, 21 Oct 2021 05:22:05 GMT
etag:
- - '637547006991900000'
+ - '637703905236600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_invalid.yaml
index 59745f0598b2..ba48f6612788 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_invalid.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_invalid.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:49Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:05Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:49 GMT
+ - Thu, 21 Oct 2021 05:22:05 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:36:49Z2020-09-29T08:36:49Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-10-21T05:22:06Z2021-10-21T05:22:06Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:36:49.837Z2020-09-29T08:36:49.88ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:06.08Z2021-10-21T05:22:06.153ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:50 GMT
+ - Thu, 21 Oct 2021 05:22:06 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,23 +86,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04kwqxc2020-09-29T08:36:50Z2020-09-29T08:36:50Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05kwqxc2021-10-21T05:22:06Z2021-10-21T05:22:06ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2020-09-29T08:36:50.6002126Z2020-09-29T08:36:50.6002126Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:06.6804127Z2021-10-21T05:22:06.6804127Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:50 GMT
+ - Thu, 21 Oct 2021 05:22:06 GMT
etag:
- - '637369654098800000'
+ - '637703905261530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -116,7 +116,7 @@ interactions:
body: '
PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:36:50.600212Z2020-09-29T08:36:50.600212Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
+ type="application/xml">PT1MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:06.680412Z2021-10-21T05:22:06.680412Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
@@ -131,21 +131,21 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/iewdm?api-version=2021-05
response:
body:
string: 404Entity 'servicebustestsbname:Topic:dfjfj|iewdm'
- was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:8b42b62c-a6cf-45e8-9679-2512ecdfd006_B14,
- SystemTracker:NoSystemTracker, Timestamp:2020-09-29T08:36:51
+ was not found. To know more visit https://aka.ms/sbResourceMgrExceptions. TrackingId:dc9e43db-20a8-4bea-8dc1-7cf2b202071a_B4,
+ SystemTracker:NoSystemTracker, Timestamp:2021-10-21T05:22:06
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:52 GMT
+ - Thu, 21 Oct 2021 05:22:07 GMT
etag:
- - '637369654098800000'
+ - '637703905261530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -159,7 +159,7 @@ interactions:
body: '
P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2020-09-29T08:36:50.600212Z2020-09-29T08:36:50.600212Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
+ type="application/xml">P25DfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:06.680412Z2021-10-21T05:22:06.680412Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
@@ -174,9 +174,9 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/dfjfj?api-version=2021-05
response:
body:
string: '400The supplied lock time exceeds the allowed
@@ -185,15 +185,15 @@ interactions:
Parameter name: LockDuration
- Actual value was 25.00:00:00. TrackingId:351941aa-f78c-432c-a9cf-6393d835e395_G1,
- SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2020-09-29T08:36:52'
+ Actual value was 25.00:00:00. TrackingId:fb4f2132-5799-498a-975e-5891faa44be4_G8,
+ SystemTracker:servicebustestsbname:Topic:dfjfj, Timestamp:2021-10-21T05:22:07'
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:53 GMT
+ - Thu, 21 Oct 2021 05:22:08 GMT
etag:
- - '637369654098800000'
+ - '637703905261530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -215,9 +215,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj/subscriptions/kwqxc?api-version=2021-05
response:
body:
string: ''
@@ -225,9 +225,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:53 GMT
+ - Thu, 21 Oct 2021 05:22:08 GMT
etag:
- - '637369654098800000'
+ - '637703905261530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -247,9 +247,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
string: ''
@@ -257,9 +257,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:36:54 GMT
+ - Thu, 21 Oct 2021 05:22:08 GMT
etag:
- - '637369654098800000'
+ - '637703905261530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_success.yaml
index 111b8b5f3205..ee399fe3ad9c 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_subscriptions.test_mgmt_subscription_update_success.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestskjauwsb3z.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T15:02:39Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:09Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:39 GMT
+ - Thu, 21 Oct 2021 05:22:09 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/dfkla?api-version=2017-04dfkla2021-04-22T15:02:40Z2021-04-22T15:02:40Zservicebustestskjauwsb3zhttps://servicebustestaweyco6xnr.servicebus.windows.net/dfkla?api-version=2021-05dfkla2021-10-21T05:22:10Z2021-10-21T05:22:10Zservicebustestaweyco6xnrPT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-04-22T15:02:40.057Z2021-04-22T15:02:40.09ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1M1024falsefalseP10675199DT2H48M5.4775807SfalsePT10M10true00falseActive2021-10-21T05:22:10.23Z2021-10-21T05:22:10.253ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:40 GMT
+ - Thu, 21 Oct 2021 05:22:10 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,21 +86,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T15:02:41Z2021-04-22T15:02:41Zservicebustestskjauwsb3zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:11Z2021-10-21T05:22:11Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T15:02:41.223Z2021-04-22T15:02:41.26ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:11.107Z2021-10-21T05:22:11.16ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:41 GMT
+ - Thu, 21 Oct 2021 05:22:11 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -127,23 +127,23 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:41Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:11Z2021-10-21T05:22:11ZPT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-04-22T15:02:41.9375754Z2021-04-22T15:02:41.9375754Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT1MfalseP10675199DT2H48M5.4775807Sfalsetrue010trueActive2021-10-21T05:22:11.6259366Z2021-10-21T05:22:11.6259366Z0001-01-01T00:00:00P10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:41 GMT
+ - Thu, 21 Oct 2021 05:22:11 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -157,7 +157,7 @@ interactions:
body: '
PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:02:41.937575Z2021-04-22T15:02:41.937575Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
+ type="application/xml">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:11.625936Z2021-10-21T05:22:11.625936Z0001-01-01T00:00:00.000ZP10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
@@ -172,23 +172,23 @@ interactions:
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:42Z2021-04-22T15:02:42Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:12Z2021-10-21T05:22:12ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:02:42.2813253Z2021-04-22T15:02:42.2813253Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:12.0165705Z2021-10-21T05:22:12.0165705Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:42 GMT
+ - Thu, 21 Oct 2021 05:22:11 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -208,24 +208,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:42Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:11Z2021-10-21T05:22:12ZPT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:42.2783438Z2021-04-22T15:02:41.9344853Z00000P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2MfalseP10675199DT2H48M5.477539Sfalsetrue010trueActive2021-10-21T05:22:11.6327199Z2021-10-21T05:22:12.0545972Z2021-10-21T05:22:11.633Z00000P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:42 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -240,7 +240,7 @@ interactions:
PT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:41.934485Z2021-04-22T15:02:42.278343Z2021-04-22T15:02:41.934485Z00000PT10MAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:11.632719Z2021-10-21T05:22:12.054597Z2021-10-21T05:22:11.633Z00000PT10MAvailable'
headers:
Accept:
- application/xml
@@ -249,29 +249,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1382'
+ - '1379'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:42Z2021-04-22T15:02:42Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:12Z2021-10-21T05:22:12ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:42.8282366Z2021-04-22T15:02:42.8282366Z0001-01-01T00:00:00PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:12.1571957Z2021-10-21T05:22:12.1571957Z0001-01-01T00:00:00PT10MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:42 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -291,24 +291,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:42Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:11Z2021-10-21T05:22:12ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:42.840715Z2021-04-22T15:02:41.9344853Z00000PT10MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:11.6327199Z2021-10-21T05:22:12.1639839Z2021-10-21T05:22:11.633Z00000PT10MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:43 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -323,7 +323,7 @@ interactions:
PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui2021-04-22T15:02:41.934485Z2021-04-22T15:02:42.840715Z2021-04-22T15:02:41.934485Z00000sb://servicebustestskjauwsb3z.servicebus.windows.net/fjruiPT10MAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui2021-10-21T05:22:11.632719Z2021-10-21T05:22:12.163983Z2021-10-21T05:22:11.633Z00000sb://servicebustestaweyco6xnr.servicebus.windows.net/fjruiPT10MAvailable'
headers:
Accept:
- application/xml
@@ -332,33 +332,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1584'
+ - '1581'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestskjauwsb3z.servicebus.windows.net%2Ffjrui&sig=GczHvExOSistT0gXxQw4codO2SJpvfvqRaYEfR3kkRk%3d&se=1619107363&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjrui&sig=CiW5aqQuVhyK6XBxzoCSuJm4356r0adO%2bbNqVwKiKis%3d&se=1634797332&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestskjauwsb3z.servicebus.windows.net%2Ffjrui&sig=GczHvExOSistT0gXxQw4codO2SJpvfvqRaYEfR3kkRk%3d&se=1619107363&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Ffjrui&sig=CiW5aqQuVhyK6XBxzoCSuJm4356r0adO%2bbNqVwKiKis%3d&se=1634797332&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:43Z2021-04-22T15:02:43Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:12Z2021-10-21T05:22:12ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui2021-04-22T15:02:43.4063673Z2021-04-22T15:02:43.4063673Z0001-01-01T00:00:00sb://servicebustestskjauwsb3z.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui2021-10-21T05:22:12.2821952Z2021-10-21T05:22:12.2821952Z0001-01-01T00:00:00sb://servicebustestaweyco6xnr.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:43 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -378,24 +378,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:43Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:11Z2021-10-21T05:22:12ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui2021-04-22T15:02:41.9344853Z2021-04-22T15:02:43.5438339Z2021-04-22T15:02:41.9344853Z00000sb://servicebustestskjauwsb3z.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui2021-10-21T05:22:11.6327199Z2021-10-21T05:22:12.3046763Z2021-10-21T05:22:11.633Z00000sb://servicebustestaweyco6xnr.servicebus.windows.net/fjruiP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:44 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -410,7 +410,7 @@ interactions:
PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/dfkla2021-04-22T15:02:41.934485Z2021-04-22T15:02:43.543833Z2021-04-22T15:02:41.934485Z00000sb://servicebustestskjauwsb3z.servicebus.windows.net/dfklaP10675199DT2H48M5.477539SAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/dfkla2021-10-21T05:22:11.632719Z2021-10-21T05:22:12.304676Z2021-10-21T05:22:11.633Z00000sb://servicebustestaweyco6xnr.servicebus.windows.net/dfklaP10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
@@ -419,33 +419,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1604'
+ - '1601'
Content-Type:
- application/atom+xml
If-Match:
- '*'
ServiceBusDlqSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestskjauwsb3z.servicebus.windows.net%2Fdfkla&sig=aK4FMuVQQCSc9KroxJpqQnt0VvYDiFQ85VhdunumOsI%3d&se=1619107364&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Fdfkla&sig=CoJbkj8U3KTgLTAnQMgUg2OJHp4RF9pRPyIyMsDu%2b5Q%3d&se=1634797332&skn=RootManageSharedAccessKey
ServiceBusSupplementaryAuthorization:
- - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestskjauwsb3z.servicebus.windows.net%2Fdfkla&sig=aK4FMuVQQCSc9KroxJpqQnt0VvYDiFQ85VhdunumOsI%3d&se=1619107364&skn=RootManageSharedAccessKey
+ - SharedAccessSignature sr=sb%3A%2F%2Fservicebustestaweyco6xnr.servicebus.windows.net%2Fdfkla&sig=CoJbkj8U3KTgLTAnQMgUg2OJHp4RF9pRPyIyMsDu%2b5Q%3d&se=1634797332&skn=RootManageSharedAccessKey
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:44Z2021-04-22T15:02:44Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:12Z2021-10-21T05:22:12ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/dfkla2021-04-22T15:02:44.3594638Z2021-04-22T15:02:44.3594638Z0001-01-01T00:00:00sb://servicebustestskjauwsb3z.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/dfkla2021-10-21T05:22:12.391599Z2021-10-21T05:22:12.391599Z0001-01-01T00:00:00sb://servicebustestaweyco6xnr.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:44 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -465,24 +465,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:44Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:11Z2021-10-21T05:22:12ZPT12SfalsePT11Mtruetrue014trueActivesb://servicebustestskjauwsb3z.servicebus.windows.net/dfkla2021-04-22T15:02:41.9344853Z2021-04-22T15:02:44.3719549Z2021-04-22T15:02:41.9344853Z00000sb://servicebustestskjauwsb3z.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActivesb://servicebustestaweyco6xnr.servicebus.windows.net/dfkla2021-10-21T05:22:11.6327199Z2021-10-21T05:22:12.4139779Z2021-10-21T05:22:11.633Z00000sb://servicebustestaweyco6xnr.servicebus.windows.net/dfklaP10675199DT2H48M5.4775807SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:44 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -497,7 +497,7 @@ interactions:
PT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:41.934485Z2021-04-22T15:02:44.371954Z2021-04-22T15:02:41.934485Z00000P10675199DT2H48M5.477539SAvailable'
+ type="application/xml">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:11.632719Z2021-10-21T05:22:12.413977Z2021-10-21T05:22:11.633Z00000P10675199DT2H48M5.477539SAvailable'
headers:
Accept:
- application/xml
@@ -506,29 +506,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1402'
+ - '1399'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:44Z2021-04-22T15:02:44Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:12Z2021-10-21T05:22:12ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:44.9376476Z2021-04-22T15:02:44.9376476Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:12.5198113Z2021-10-21T05:22:12.5198113Z0001-01-01T00:00:00P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:44 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -548,24 +548,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:44Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:11Z2021-10-21T05:22:12ZPT12SfalsePT11Mtruetrue014trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:44.9500921Z2021-04-22T15:02:41.9344853Z00000P10675199DT2H48M5.477539SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT12SfalsePT11Mtruetrue014trueActive2021-10-21T05:22:11.6327199Z2021-10-21T05:22:12.523361Z2021-10-21T05:22:11.633Z00000P10675199DT2H48M5.477539SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:45 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -580,7 +580,7 @@ interactions:
PT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:02:41.934485Z2021-04-22T15:02:44.950092Z2021-04-22T15:02:41.934485Z00000PT10M1SAvailable'
+ type="application/xml">PT3M3SfalsePT11M2Struetrue014trueActive2021-10-21T05:22:11.632719Z2021-10-21T05:22:12.523361Z2021-10-21T05:22:11.633Z00000PT10M1SAvailable'
headers:
Accept:
- application/xml
@@ -589,29 +589,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1387'
+ - '1384'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:45Z2021-04-22T15:02:45Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:12Z2021-10-21T05:22:12ZPT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:02:45.4844637Z2021-04-22T15:02:45.4844637Z0001-01-01T00:00:00PT10M1SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT3M3SfalsePT11M2Struetrue014trueActive2021-10-21T05:22:12.6415743Z2021-10-21T05:22:12.6415743Z0001-01-01T00:00:00PT10M1SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:45 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -631,24 +631,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:45Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:11Z2021-10-21T05:22:12ZPT3M3SfalsePT11M2Struetrue014trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:45.4813476Z2021-04-22T15:02:41.9344853Z00000PT10M1SAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT3M3SfalsePT11M2Struetrue014trueActive2021-10-21T05:22:11.6327199Z2021-10-21T05:22:12.6483507Z2021-10-21T05:22:11.633Z00000PT10M1SAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:45 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -663,7 +663,7 @@ interactions:
PT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:02:41.934485Z2021-04-22T15:02:45.481347Z2021-04-22T15:02:41.934485Z00000PT15MAvailable'
+ type="application/xml">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:22:11.632719Z2021-10-21T05:22:12.64835Z2021-10-21T05:22:11.633Z00000PT15MAvailable'
headers:
Accept:
- application/xml
@@ -672,29 +672,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1383'
+ - '1379'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
- string: https://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04eqkovc2021-04-22T15:02:46Z2021-04-22T15:02:46Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05eqkovc2021-10-21T05:22:12Z2021-10-21T05:22:12ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:02:46.0001018Z2021-04-22T15:02:46.0001018Z0001-01-01T00:00:00PT15MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:22:12.7353237Z2021-10-21T05:22:12.7353237Z0001-01-01T00:00:00PT15MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:45 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -714,24 +714,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05
response:
body:
- string: sb://servicebustestskjauwsb3z.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2017-04eqkovc2021-04-22T15:02:41Z2021-04-22T15:02:46Zsb://servicebustestaweyco6xnr.servicebus.windows.net/fjrui/subscriptions/eqkovc?enrich=false&api-version=2021-05eqkovc2021-10-21T05:22:11Z2021-10-21T05:22:12ZPT17SfalsePT16Mfalsetrue015trueActive2021-04-22T15:02:41.9344853Z2021-04-22T15:02:46.0126234Z2021-04-22T15:02:41.9344853Z00000PT15MAvailable
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT17SfalsePT16Mfalsetrue015trueActive2021-10-21T05:22:11.6327199Z2021-10-21T05:22:12.7421045Z2021-10-21T05:22:11.633Z00000PT15MAvailablefalse
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 15:02:46 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -753,9 +753,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui/subscriptions/eqkovc?api-version=2021-05
response:
body:
string: ''
@@ -763,9 +763,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:02:46 GMT
+ - Thu, 21 Oct 2021 05:22:12 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -785,9 +785,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
@@ -795,9 +795,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:02:47 GMT
+ - Thu, 21 Oct 2021 05:22:13 GMT
etag:
- - '637547005612600000'
+ - '637703905311600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -817,9 +817,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfkla?api-version=2021-05
response:
body:
string: ''
@@ -827,9 +827,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 15:02:47 GMT
+ - Thu, 21 Oct 2021 05:22:13 GMT
etag:
- - '637547005600900000'
+ - '637703905302530000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_queue_basic_v2017_04.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_queue_basic_v2017_04.yaml
new file mode 100644
index 000000000000..b3c56692a9f7
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_queue_basic_v2017_04.yaml
@@ -0,0 +1,461 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestzigzmm4q35.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:06:37Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:37 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestzigzmm4q35.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:06:37Z2021-10-21T05:06:37Zservicebustestzigzmm4q35P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:06:37.663Z2021-10-21T05:06:37.753ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:38 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestzigzmm4q35.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:06:38Zhttps://servicebustestzigzmm4q35.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:06:37Z2021-10-21T05:06:37Zservicebustestzigzmm4q35P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:06:37.663Z2021-10-21T05:06:37.753Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:38 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestzigzmm4q35.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2021-10-21T05:06:37Z2021-10-21T05:06:37Zservicebustestzigzmm4q35P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:06:37.663Z2021-10-21T05:06:37.753Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:38 GMT
+ etag:
+ - '637703895977530000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:06:38 GMT
+ etag:
+ - '637703895977530000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestzigzmm4q35.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:06:39Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:39 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'TopicDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:b33c398c-a1e7-4aa1-b96a-c96c8aea4622_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:topic_can_not_be_created,
+ Timestamp:2021-10-21T05:06:39
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:39 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestzigzmm4q35.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:06:40Z2021-10-21T05:06:40Zservicebustestzigzmm4q35P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:06:40.38Z2021-10-21T05:06:40.45ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:39 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestzigzmm4q35.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:06:41Zhttps://servicebustestzigzmm4q35.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:06:40Z2021-10-21T05:06:40Zservicebustestzigzmm4q35P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:06:40.38Z2021-10-21T05:06:40.45Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:40 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestzigzmm4q35.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2021-10-21T05:06:40Z2021-10-21T05:06:40Zservicebustestzigzmm4q35P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:06:40.38Z2021-10-21T05:06:40.45Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:40 GMT
+ etag:
+ - '637703896004500000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:06:40 GMT
+ etag:
+ - '637703896004500000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestzigzmm4q35.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:06:42Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:42 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'TopicDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:78bfa1e5-66c2-475e-8799-61d37e461ff3_G13, SystemTracker:servicebustestsbname.servicebus.windows.net:topic_can_not_be_created,
+ Timestamp:2021-10-21T05:06:42
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:06:42 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_basic_v2017_04.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_basic_v2017_04.yaml
new file mode 100644
index 000000000000..b2334fbfea9b
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_basic_v2017_04.yaml
@@ -0,0 +1,461 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:22:14Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:14 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:22:14Z2021-10-21T05:22:15Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:14.97Z2021-10-21T05:22:15ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:15 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:22:15Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:22:14Z2021-10-21T05:22:15Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:14.97Z2021-10-21T05:22:15Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:15 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2021-10-21T05:22:14Z2021-10-21T05:22:15Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:14.97Z2021-10-21T05:22:15Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:15 GMT
+ etag:
+ - '637703905350000000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:22:16 GMT
+ etag:
+ - '637703905350000000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:22:16Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:16 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'TopicDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:dd4bbb98-32e1-4f4a-9399-c0d1342d1c9a_G6, SystemTracker:servicebustestsbname.servicebus.windows.net:topic_can_not_be_created,
+ Timestamp:2021-10-21T05:22:17
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:17 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+- request:
+ body: '
+
+ '
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '248'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:22:17Z2021-10-21T05:22:17Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:17.723Z2021-10-21T05:22:17.78ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:17 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:22:18Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2017-04test_topic2021-10-21T05:22:17Z2021-10-21T05:22:17Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:17.723Z2021-10-21T05:22:17.78Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:17 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ response:
+ body:
+ string: https://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2021-10-21T05:22:17Z2021-10-21T05:22:17Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:17.723Z2021-10-21T05:22:17.78Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:17 GMT
+ etag:
+ - '637703905377800000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:22:18 GMT
+ etag:
+ - '637703905377800000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ response:
+ body:
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-10-21T05:22:19Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:18 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_can_not_be_created?api-version=2017-04
+ response:
+ body:
+ string: 400SubCode=40000. The entity description
+ of type 'TopicDescription' has unsupported properties for api-version '2017-04'
+ in the request. Try including the correct api-version query string in the
+ request. TrackingId:fe1c634e-74d4-46a9-adca-eb3bc498f627_G7, SystemTracker:servicebustestsbname.servicebus.windows.net:topic_can_not_be_created,
+ Timestamp:2021-10-21T05:22:20
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:19 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_by_name.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_by_name.yaml
index face8dc5ffb1..cee30c7b4111 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_by_name.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_by_name.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:36:59Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:20Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:36:58 GMT
+ - Thu, 21 Oct 2021 05:22:20 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?api-version=2017-04topic_testaddf2020-09-29T08:37:00Z2020-09-29T08:37:00Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf?api-version=2021-05topic_testaddf2021-10-21T05:22:21Z2021-10-21T05:22:21Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:00.183Z2020-09-29T08:37:00.42ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:21.163Z2021-10-21T05:22:21.2ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:00 GMT
+ - Thu, 21 Oct 2021 05:22:21 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,24 +79,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2017-04topic_testaddf2020-09-29T08:37:00Z2020-09-29T08:37:00Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/topic_testaddf?enrich=false&api-version=2021-05topic_testaddf2021-10-21T05:22:21Z2021-10-21T05:22:21Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:00.183Z2020-09-29T08:37:00.42Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:21.163Z2021-10-21T05:22:21.2Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:01 GMT
+ - Thu, 21 Oct 2021 05:22:21 GMT
etag:
- - '637369654204200000'
+ - '637703905412000000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -118,9 +118,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/topic_testaddf?api-version=2021-05
response:
body:
string: ''
@@ -128,9 +128,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:37:01 GMT
+ - Thu, 21 Oct 2021 05:22:22 GMT
etag:
- - '637369654204200000'
+ - '637703905412000000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_duplicate.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_duplicate.yaml
index b436771e51c5..35b5a2986a8c 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_duplicate.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_duplicate.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:02Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:22Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:01 GMT
+ - Thu, 21 Oct 2021 05:22:21 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dqkodq?api-version=2017-04dqkodq2020-09-29T08:37:02Z2020-09-29T08:37:03Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/dqkodq?api-version=2021-05dqkodq2021-10-21T05:22:23Z2021-10-21T05:22:23Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:02.953Z2020-09-29T08:37:03ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:23.097Z2021-10-21T05:22:23.133ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:02 GMT
+ - Thu, 21 Oct 2021 05:22:22 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -86,22 +86,22 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
string: 409SubCode=40900. Conflict. You're requesting
an operation that isn't allowed in the resource's current state. To know more
- visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:f0c0ed1c-fb92-454a-8ea0-62f1f7fca110_G6,
- SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2020-09-29T08:37:03
+ visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:26d442ad-6fba-4048-b783-633653879044_G3,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:dqkodq, Timestamp:2021-10-21T05:22:23
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:02 GMT
+ - Thu, 21 Oct 2021 05:22:22 GMT
etag:
- - '637369654230000000'
+ - '637703905431330000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -123,9 +123,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dqkodq?api-version=2021-05
response:
body:
string: ''
@@ -133,9 +133,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:37:03 GMT
+ - Thu, 21 Oct 2021 05:22:23 GMT
etag:
- - '637369654230000000'
+ - '637703905431330000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_with_topic_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_with_topic_description.yaml
index 5f61f96d31c1..85b767437c6f 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_with_topic_description.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_create_with_topic_description.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestkuzkhxoacd.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-15T16:05:50Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:24Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:05:50 GMT
+ - Thu, 21 Oct 2021 05:22:24 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
- string: https://servicebustestkuzkhxoacd.servicebus.windows.net/iweidk?api-version=2017-04iweidk2021-04-15T16:05:50Z2021-04-15T16:05:51Zservicebustestkuzkhxoacdhttps://servicebustestaweyco6xnr.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-10-21T05:22:25Z2021-10-21T05:22:25Zservicebustestaweyco6xnrPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:05:50.94Z2021-04-15T16:05:51.077ZfalsePT10MtrueAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-10-21T05:22:25.14Z2021-10-21T05:22:25.337ZfalsePT10MtrueAvailablefalsetrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:05:51 GMT
+ - Thu, 21 Oct 2021 05:22:25 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,24 +79,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestkuzkhxoacd.servicebus.windows.net/iweidk?enrich=false&api-version=2017-04iweidk2021-04-15T16:05:50Z2021-04-15T16:05:51Zservicebustestkuzkhxoacdhttps://servicebustestaweyco6xnr.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-10-21T05:22:25Z2021-10-21T05:22:25Zservicebustestaweyco6xnrPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:05:50.94Z2021-04-15T16:05:51.077Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-10-21T05:22:25.14Z2021-10-21T05:22:25.337Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:05:51 GMT
+ - Thu, 21 Oct 2021 05:22:25 GMT
etag:
- - '637540995510770000'
+ - '637703905453370000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -123,21 +123,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/djsadq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/djsadq?api-version=2021-05
response:
body:
- string: https://servicebustestkuzkhxoacd.servicebus.windows.net/djsadq?api-version=2017-04djsadq2021-04-15T16:05:52Z2021-04-15T16:05:54Zservicebustestkuzkhxoacdhttps://servicebustestaweyco6xnr.servicebus.windows.net/djsadq?api-version=2021-05djsadq2021-10-21T05:22:26Z2021-10-21T05:22:26Zservicebustestaweyco6xnrPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:05:52.377Z2021-04-15T16:05:54.913ZfalsePT10MtrueAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-10-21T05:22:26.26Z2021-10-21T05:22:26.373ZfalsePT10MtrueAvailablefalsetrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:05:55 GMT
+ - Thu, 21 Oct 2021 05:22:26 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -157,24 +157,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/djsadq?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/djsadq?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestkuzkhxoacd.servicebus.windows.net/djsadq?enrich=false&api-version=2017-04djsadq2021-04-15T16:05:52Z2021-04-15T16:05:54Zservicebustestkuzkhxoacdhttps://servicebustestaweyco6xnr.servicebus.windows.net/djsadq?enrich=false&api-version=2021-05djsadq2021-10-21T05:22:26Z2021-10-21T05:22:26Zservicebustestaweyco6xnrPT11M49152falsePT12Mtrue0falsefalseActive2021-04-15T16:05:52.377Z2021-04-15T16:05:54.913Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M49152falsePT12Mtrue0falsefalseActive2021-10-21T05:22:26.26Z2021-10-21T05:22:26.373Z0001-01-01T00:00:00Zfalse000000PT10MtrueAvailablefalsetrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 15 Apr 2021 16:05:55 GMT
+ - Thu, 21 Oct 2021 05:22:26 GMT
etag:
- - '637540995549130000'
+ - '637703905463730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -184,6 +184,45 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: '
+
+ 1024'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/famviq?api-version=2021-05
+ response:
+ body:
+ string: 400SubCode=40000. Bad Request. To know more
+ visit https://aka.ms/sbResourceMgrExceptions. . TrackingId:c9fb4a46-b7d0-4257-9eae-3d1cc8d7b8d4_G13,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:famviq, Timestamp:2021-10-21T05:22:27
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:26 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
- request:
body: null
headers:
@@ -196,9 +235,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
response:
body:
string: ''
@@ -206,9 +245,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 16:05:56 GMT
+ - Thu, 21 Oct 2021 05:22:27 GMT
etag:
- - '637540995510770000'
+ - '637703905453370000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -228,9 +267,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/djsadq?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/djsadq?api-version=2021-05
response:
body:
string: ''
@@ -238,9 +277,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 15 Apr 2021 16:05:57 GMT
+ - Thu, 21 Oct 2021 05:22:27 GMT
etag:
- - '637540995549130000'
+ - '637703905463730000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_delete.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_delete.yaml
index 5c7720f5c072..8deb4204e524 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_delete.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_delete.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:07Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:28Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:07 GMT
+ - Thu, 21 Oct 2021 05:22:27 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:22:29Z2021-10-21T05:22:29Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:29.203Z2021-10-21T05:22:29.237ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:08 GMT
+ - Thu, 21 Oct 2021 05:22:28 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,24 +79,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:09Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkTopicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:30Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:22:29Z2021-10-21T05:22:29Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:29.203Z2021-10-21T05:22:29.237Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:09 GMT
+ - Thu, 21 Oct 2021 05:22:29 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -121,21 +121,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:22:30Z2021-10-21T05:22:30Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:30.593Z2021-10-21T05:22:30.62ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:10 GMT
+ - Thu, 21 Oct 2021 05:22:30 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -155,30 +155,30 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:10Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkTopicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:31Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:22:29Z2021-10-21T05:22:29Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:29.203Z2021-10-21T05:22:29.237Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:22:30Z2021-10-21T05:22:30Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:30.593Z2021-10-21T05:22:30.62Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:10 GMT
+ - Thu, 21 Oct 2021 05:22:30 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -196,24 +196,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-09-29T08:37:08Z2020-09-29T08:37:08Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05test_topic2021-10-21T05:22:29Z2021-10-21T05:22:29Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:08.303Z2020-09-29T08:37:08.363Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:29.203Z2021-10-21T05:22:29.237Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:10 GMT
+ - Thu, 21 Oct 2021 05:22:30 GMT
etag:
- - '637369654283630000'
+ - '637703905492370000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -235,9 +235,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
string: ''
@@ -245,9 +245,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:37:11 GMT
+ - Thu, 21 Oct 2021 05:22:30 GMT
etag:
- - '637369654283630000'
+ - '637703905492370000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -265,24 +265,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:12Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkTopicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:32Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/txt/.-_123?api-version=2021-05txt/.-_1232021-10-21T05:22:30Z2021-10-21T05:22:30Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:30.593Z2021-10-21T05:22:30.62Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:11 GMT
+ - Thu, 21 Oct 2021 05:22:31 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -300,24 +300,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2017-04txt/.-_1232020-09-29T08:37:09Z2020-09-29T08:37:09Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/txt/.-_123?enrich=false&api-version=2021-05txt/.-_1232021-10-21T05:22:30Z2021-10-21T05:22:30Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:09.897Z2020-09-29T08:37:09.95Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:30.593Z2021-10-21T05:22:30.62Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:12 GMT
+ - Thu, 21 Oct 2021 05:22:31 GMT
etag:
- - '637369654299500000'
+ - '637703905506200000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -339,9 +339,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/txt%2F.-_123?api-version=2021-05
response:
body:
string: ''
@@ -349,9 +349,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:37:12 GMT
+ - Thu, 21 Oct 2021 05:22:31 GMT
etag:
- - '637369654299500000'
+ - '637703905506200000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -369,18 +369,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:13Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:33Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:13 GMT
+ - Thu, 21 Oct 2021 05:22:33 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_properties_basic.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_properties_basic.yaml
index 0e9fb972de57..2428e22b196e 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_properties_basic.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_get_runtime_properties_basic.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest32ip2wgoaa.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-17T08:08:21Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:33Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:08:20 GMT
+ - Thu, 21 Oct 2021 05:22:33 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-17T08:08:21Z2020-08-17T08:08:21Zservicebustest32ip2wgoaahttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:22:34Z2021-10-21T05:22:34Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:21.727Z2020-08-17T08:08:21.76ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:34.37Z2021-10-21T05:22:34.44ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:08:21 GMT
+ - Thu, 21 Oct 2021 05:22:34 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -79,24 +79,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustest32ip2wgoaa.servicebus.windows.net/test_topic?enrich=false&api-version=2017-04test_topic2020-08-17T08:08:21Z2020-08-17T08:08:21Zservicebustest32ip2wgoaahttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?enrich=false&api-version=2021-05test_topic2021-10-21T05:22:34Z2021-10-21T05:22:34Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-17T08:08:21.727Z2020-08-17T08:08:21.76Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:34.37Z2021-10-21T05:22:34.44Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Mon, 17 Aug 2020 08:08:21 GMT
+ - Thu, 21 Oct 2021 05:22:34 GMT
etag:
- - '637332485017600000'
+ - '637703905544400000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -118,9 +118,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
string: ''
@@ -128,9 +128,9 @@ interactions:
content-length:
- '0'
date:
- - Mon, 17 Aug 2020 08:08:22 GMT
+ - Thu, 21 Oct 2021 05:22:35 GMT
etag:
- - '637332485017600000'
+ - '637703905544400000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list.yaml
index 1aab1635f415..1fe58860873a 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:17Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:36Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:17 GMT
+ - Thu, 21 Oct 2021 05:22:35 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -38,18 +38,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:18Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:36Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:18 GMT
+ - Thu, 21 Oct 2021 05:22:36 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -74,21 +74,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:37:18Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic_1?api-version=2021-05test_topic_12021-10-21T05:22:36Z2021-10-21T05:22:37Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:18.957Z2020-09-29T08:37:19ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:36.96Z2021-10-21T05:22:37.293ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:19 GMT
+ - Thu, 21 Oct 2021 05:22:37 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -115,21 +115,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:37:19Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic_2?api-version=2021-05test_topic_22021-10-21T05:22:38Z2021-10-21T05:22:38Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:19.8Z2020-09-29T08:37:19.843ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:38.077Z2021-10-21T05:22:38.123ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:20 GMT
+ - Thu, 21 Oct 2021 05:22:38 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -149,30 +149,30 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:20Zhttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_1?api-version=2017-04test_topic_12020-09-29T08:37:18Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkTopicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:38Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic_1?api-version=2021-05test_topic_12021-10-21T05:22:36Z2021-10-21T05:22:37Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:18.957Z2020-09-29T08:37:19Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalsehttps://servicebustestrm7a5oi5hk.servicebus.windows.net/test_topic_2?api-version=2017-04test_topic_22020-09-29T08:37:19Z2020-09-29T08:37:19Zservicebustestrm7a5oi5hkP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:36.96Z2021-10-21T05:22:37.293Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256https://servicebustestaweyco6xnr.servicebus.windows.net/test_topic_2?api-version=2021-05test_topic_22021-10-21T05:22:38Z2021-10-21T05:22:38Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:19.8Z2020-09-29T08:37:19.843Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:38.077Z2021-10-21T05:22:38.123Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:20 GMT
+ - Thu, 21 Oct 2021 05:22:38 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -192,9 +192,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic_1?api-version=2021-05
response:
body:
string: ''
@@ -202,9 +202,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:37:21 GMT
+ - Thu, 21 Oct 2021 05:22:39 GMT
etag:
- - '637369654390000000'
+ - '637703905572930000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -224,9 +224,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic_2?api-version=2021-05
response:
body:
string: ''
@@ -234,9 +234,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:37:21 GMT
+ - Thu, 21 Oct 2021 05:22:39 GMT
etag:
- - '637369654398430000'
+ - '637703905581230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -254,18 +254,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:22Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:40Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:22 GMT
+ - Thu, 21 Oct 2021 05:22:40 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_properties.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_properties.yaml
index ad7f5d46fb60..834147bb35e7 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_properties.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_list_runtime_properties.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:09Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:40Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 18 Aug 2020 21:12:08 GMT
+ - Thu, 21 Oct 2021 05:22:40 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -38,18 +38,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:10Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:41Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 18 Aug 2020 21:12:09 GMT
+ - Thu, 21 Oct 2021 05:22:40 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -67,18 +67,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:10Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:41Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 18 Aug 2020 21:12:09 GMT
+ - Thu, 21 Oct 2021 05:22:41 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -103,21 +103,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
- string: https://servicebustestbsudkdyafp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-18T21:12:11Z2020-08-18T21:12:11Zservicebustestbsudkdyafphttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:22:42Z2021-10-21T05:22:42Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-18T21:12:11.09Z2020-08-18T21:12:11.17ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:42.32Z2021-10-21T05:22:42.417ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 18 Aug 2020 21:12:10 GMT
+ - Thu, 21 Oct 2021 05:22:42 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -137,24 +137,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:11Zhttps://servicebustestbsudkdyafp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-18T21:12:11Z2020-08-18T21:12:11ZservicebustestbsudkdyafpTopicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:43Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:22:42Z2021-10-21T05:22:42Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-18T21:12:11.09Z2020-08-18T21:12:11.17Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:42.32Z2021-10-21T05:22:42.417Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 18 Aug 2020 21:12:11 GMT
+ - Thu, 21 Oct 2021 05:22:42 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -172,24 +172,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:12Zhttps://servicebustestbsudkdyafp.servicebus.windows.net/test_topic?api-version=2017-04test_topic2020-08-18T21:12:11Z2020-08-18T21:12:11ZservicebustestbsudkdyafpTopicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:43Zhttps://servicebustestaweyco6xnr.servicebus.windows.net/test_topic?api-version=2021-05test_topic2021-10-21T05:22:42Z2021-10-21T05:22:42Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-08-18T21:12:11.09Z2020-08-18T21:12:11.17Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:42.32Z2021-10-21T05:22:42.417Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 18 Aug 2020 21:12:11 GMT
+ - Thu, 21 Oct 2021 05:22:42 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -209,9 +209,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/test_topic?api-version=2021-05
response:
body:
string: ''
@@ -219,9 +219,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 18 Aug 2020 21:12:12 GMT
+ - Thu, 21 Oct 2021 05:22:43 GMT
etag:
- - '637333819311700000'
+ - '637703905624170000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -239,18 +239,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestbsudkdyafp.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-08-18T21:12:13Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:44Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 18 Aug 2020 21:12:12 GMT
+ - Thu, 21 Oct 2021 05:22:43 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_premium_create_with_topic_description.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_premium_create_with_topic_description.yaml
new file mode 100644
index 000000000000..62c4f03bc858
--- /dev/null
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_premium_create_with_topic_description.yaml
@@ -0,0 +1,424 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
+ response:
+ body:
+ string: Topicshttps://servicebustestny3npghbcb.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:45Z
+ headers:
+ content-type:
+ - application/atom+xml;type=feed;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:44 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ PT11M3072PT12MtruePT10M12345'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '605'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/iweidk?api-version=2021-05iweidk2021-10-21T05:22:45Z2021-10-21T05:22:45Zservicebustestny3npghbcbPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:45.55Z2021-10-21T05:22:45.797ZtruePT10MfalseAvailablefalsefalse12345
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:45 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/iweidk?enrich=false&api-version=2021-05iweidk2021-10-21T05:22:45Z2021-10-21T05:22:45Zservicebustestny3npghbcbPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:45.55Z2021-10-21T05:22:45.797Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse12345
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:45 GMT
+ etag:
+ - '637703905657970000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ PT11M3072PT12MtruePT10M'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '545'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/cdasmc?api-version=2021-05cdasmc2021-10-21T05:22:46Z2021-10-21T05:22:46Zservicebustestny3npghbcbPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:46.687Z2021-10-21T05:22:46.76ZtruePT10MfalseAvailablefalsefalse1024
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:46 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/cdasmc?enrich=false&api-version=2021-05cdasmc2021-10-21T05:22:46Z2021-10-21T05:22:46Zservicebustestny3npghbcbPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:46.687Z2021-10-21T05:22:46.76Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse1024
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:46 GMT
+ etag:
+ - '637703905667600000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ PT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:46.687Z2021-10-21T05:22:46.760Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsefalse54321'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1708'
+ Content-Type:
+ - application/atom+xml
+ If-Match:
+ - '*'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/cdasmc?api-version=2021-05cdasmc2021-10-21T05:22:47Zservicebustestny3npghbcbPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:46.687Z2021-10-21T05:22:46.76Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse54321
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:46 GMT
+ etag:
+ - '637703905667600000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: GET
+ uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?enrich=false&api-version=2021-05
+ response:
+ body:
+ string: https://servicebustestny3npghbcb.servicebus.windows.net/cdasmc?enrich=false&api-version=2021-05cdasmc2021-10-21T05:22:46Z2021-10-21T05:22:47Zservicebustestny3npghbcbPT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:46.687Z2021-10-21T05:22:47.343Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsefalse54321
+ headers:
+ content-type:
+ - application/atom+xml;type=entry;charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:46 GMT
+ etag:
+ - '637703905673430000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '
+
+ 1023'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '324'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05
+ response:
+ body:
+ string: '400SubCode=40000. The property value for
+ ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace
+ ''servicebustestsbname'' is using ''Premium'' tier.
+
+ Parameter name: MaxMessageSizeInKilobytes
+
+ Actual value was 1023. TrackingId:2616d783-dfff-4a27-9fbc-c196f35e9f69_G0,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-10-21T05:22:47'
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:47 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+- request:
+ body: '
+
+ 102401'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '326'
+ Content-Type:
+ - application/atom+xml
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: PUT
+ uri: https://servicebustestsbname.servicebus.windows.net/rekocd?api-version=2021-05
+ response:
+ body:
+ string: '400SubCode=40000. The property value for
+ ''MaxMessageSizeInKilobytes'' must be between 1024 and 102400 when the namespace
+ ''servicebustestsbname'' is using ''Premium'' tier.
+
+ Parameter name: MaxMessageSizeInKilobytes
+
+ Actual value was 102401. TrackingId:c6d3ca3c-f3fc-4f03-9a95-0a9391166f33_G0,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:rekocd, Timestamp:2021-10-21T05:22:48'
+ headers:
+ content-type:
+ - application/xml; charset=utf-8
+ date:
+ - Thu, 21 Oct 2021 05:22:47 GMT
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ transfer-encoding:
+ - chunked
+ status:
+ code: 400
+ message: Bad Request
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/iweidk?api-version=2021-05
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:22:48 GMT
+ etag:
+ - '637703905657970000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
+ method: DELETE
+ uri: https://servicebustestsbname.servicebus.windows.net/cdasmc?api-version=2021-05
+ response:
+ body:
+ string: ''
+ headers:
+ content-length:
+ - '0'
+ date:
+ - Thu, 21 Oct 2021 05:22:48 GMT
+ etag:
+ - '637703905673430000'
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_error.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_error.yaml
index adbecf008433..2b760d7bfb5f 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_error.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_error.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrzdukahnat.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-03-02T19:52:13Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:50Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 02 Mar 2021 19:52:12 GMT
+ - Thu, 21 Oct 2021 05:22:49 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05
response:
body:
- string: https://servicebustestrzdukahnat.servicebus.windows.net/dfjdfj?api-version=2017-04dfjdfj2021-03-02T19:52:13Z2021-03-02T19:52:13Zservicebustestrzdukahnathttps://servicebustestaweyco6xnr.servicebus.windows.net/dfjdfj?api-version=2021-05dfjdfj2021-10-21T05:22:50Z2021-10-21T05:22:50Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-03-02T19:52:13.657Z2021-03-02T19:52:13.697ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:50.547Z2021-10-21T05:22:50.603ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 02 Mar 2021 19:52:13 GMT
+ - Thu, 21 Oct 2021 05:22:50 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -81,9 +81,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.0 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjdfj?api-version=2021-05
response:
body:
string: ''
@@ -91,9 +91,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 02 Mar 2021 19:52:13 GMT
+ - Thu, 21 Oct 2021 05:22:51 GMT
etag:
- - '637503115336970000'
+ - '637703905706030000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_success.yaml
index c8ca6b41ba55..a5fb386ed24b 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_dict_success.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustest5xccvzoibz.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T14:45:40Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:52Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:45:40 GMT
+ - Thu, 21 Oct 2021 05:22:52 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:45:41Z2021-04-22T14:45:41Zservicebustest5xccvzoibzhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:52Z2021-10-21T05:22:52Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:45:41.447Z2021-04-22T14:45:41.48ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:52.673Z2021-10-21T05:22:52.827ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:45:41 GMT
+ - Thu, 21 Oct 2021 05:22:53 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -74,7 +74,7 @@ interactions:
PT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse'
+ />ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -83,29 +83,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '882'
+ - '940'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:45:42Zservicebustest5xccvzoibzhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:53Zservicebustestaweyco6xnrPT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0ActivetrueP10675199DT2H48M5.477539SfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:45:41 GMT
+ - Thu, 21 Oct 2021 05:22:53 GMT
etag:
- - '637546995414800000'
+ - '637703905728270000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -125,24 +125,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:45:41Z2021-04-22T14:45:42Zservicebustest5xccvzoibzhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:22:52Z2021-10-21T05:22:53Zservicebustestaweyco6xnrPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:45:41.447Z2021-04-22T14:45:42.17Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:52.673Z2021-10-21T05:22:53.32Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:45:42 GMT
+ - Thu, 21 Oct 2021 05:22:53 GMT
etag:
- - '637546995421700000'
+ - '637703905733200000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -157,7 +157,7 @@ interactions:
PT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue'
+ />ActivetruePT10MfalseAvailabletrue256'
headers:
Accept:
- application/xml
@@ -166,29 +166,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '862'
+ - '920'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:45:42Zservicebustest5xccvzoibzhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:53Zservicebustestaweyco6xnrPT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0ActivetruePT10MfalseAvailabletrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:45:42 GMT
+ - Thu, 21 Oct 2021 05:22:53 GMT
etag:
- - '637546995421700000'
+ - '637703905733200000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -208,24 +208,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:45:41Z2021-04-22T14:45:42Zservicebustest5xccvzoibzhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:22:52Z2021-10-21T05:22:53Zservicebustestaweyco6xnrPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:45:41.447Z2021-04-22T14:45:42.717Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:52.673Z2021-10-21T05:22:53.457Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:45:42 GMT
+ - Thu, 21 Oct 2021 05:22:53 GMT
etag:
- - '637546995427170000'
+ - '637703905734570000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -240,7 +240,7 @@ interactions:
PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse'
+ />ActivefalsePT14MfalseAvailablefalse256'
headers:
Accept:
- application/xml
@@ -249,29 +249,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '865'
+ - '923'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
- string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?api-version=2017-04fjruid2021-04-22T14:45:43Zservicebustest5xccvzoibzhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?api-version=2021-05fjruid2021-10-21T05:22:53Zservicebustestaweyco6xnrPT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0ActivefalsePT14MfalseAvailablefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:45:42 GMT
+ - Thu, 21 Oct 2021 05:22:53 GMT
etag:
- - '637546995427170000'
+ - '637703905734570000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -291,24 +291,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustest5xccvzoibz.servicebus.windows.net/fjruid?enrich=false&api-version=2017-04fjruid2021-04-22T14:45:41Z2021-04-22T14:45:43Zservicebustest5xccvzoibzhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjruid?enrich=false&api-version=2021-05fjruid2021-10-21T05:22:52Z2021-10-21T05:22:53Zservicebustestaweyco6xnrPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:45:41.447Z2021-04-22T14:45:43.307Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-10-21T05:22:52.673Z2021-10-21T05:22:53.687Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:45:43 GMT
+ - Thu, 21 Oct 2021 05:22:53 GMT
etag:
- - '637546995433070000'
+ - '637703905736870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -330,9 +330,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjruid?api-version=2021-05
response:
body:
string: ''
@@ -340,9 +340,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 14:45:44 GMT
+ - Thu, 21 Oct 2021 05:22:54 GMT
etag:
- - '637546995433070000'
+ - '637703905736870000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_invalid.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_invalid.yaml
index 4da64e4868d2..eec434597064 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_invalid.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_invalid.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestrm7a5oi5hk.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042020-09-29T08:37:28Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:54Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:28 GMT
+ - Thu, 21 Oct 2021 05:22:54 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
- string: https://servicebustestrm7a5oi5hk.servicebus.windows.net/dfjfj?api-version=2017-04dfjfj2020-09-29T08:37:28Z2020-09-29T08:37:28Zservicebustestrm7a5oi5hkhttps://servicebustestaweyco6xnr.servicebus.windows.net/dfjfj?api-version=2021-05dfjfj2021-10-21T05:22:55Z2021-10-21T05:22:55Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:55.283Z2021-10-21T05:22:55.323ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:29 GMT
+ - Thu, 21 Oct 2021 05:22:55 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -74,7 +74,7 @@ interactions:
P10675199DT2H48M5.477539S1024falsePT10Mtrue0falsefalseActive2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse'
+ />Active2021-10-21T05:22:55.283Z2021-10-21T05:22:55.323ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256'
headers:
Accept:
- application/xml
@@ -83,26 +83,26 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1195'
+ - '1253'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/iewdm?api-version=2021-05
response:
body:
string: 404SubCode=40400. Not Found. The Operation
doesn't exist. To know more visit https://aka.ms/sbResourceMgrExceptions.
- . TrackingId:288e2e47-7cd2-4915-880a-8b1f3ca7f8b7_G14, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm,
- Timestamp:2020-09-29T08:37:30
+ . TrackingId:b4a77aee-f2c8-43c1-b863-ba08779b3e6b_G11, SystemTracker:servicebustestsbname.servicebus.windows.net:iewdm,
+ Timestamp:2021-10-21T05:22:56
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:29 GMT
+ - Thu, 21 Oct 2021 05:22:55 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -117,7 +117,7 @@ interactions:
P10675199DT2H48M5.477539S1024falseP25Dtrue0falsefalseActive2020-09-29T08:37:28.937Z2020-09-29T08:37:28.967ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse'
+ />Active2021-10-21T05:22:55.283Z2021-10-21T05:22:55.323ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256'
headers:
Accept:
- application/xml
@@ -126,15 +126,15 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1194'
+ - '1252'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
string: '400SubCode=40000. The value supplied must
@@ -142,15 +142,15 @@ interactions:
Parameter name: DuplicateDetectionHistoryTimeWindow
- Actual value was 25.00:00:00. TrackingId:c99bb746-a2c0-4777-a914-4ef0d5cd8229_G14,
- SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2020-09-29T08:37:30'
+ Actual value was 25.00:00:00. TrackingId:92c698f3-8446-45dc-81a4-820f9e930fc9_G11,
+ SystemTracker:servicebustestsbname.servicebus.windows.net:dfjfj, Timestamp:2021-10-21T05:22:56'
headers:
content-type:
- application/xml; charset=utf-8
date:
- - Tue, 29 Sep 2020 08:37:30 GMT
+ - Thu, 21 Oct 2021 05:22:55 GMT
etag:
- - '637369654489670000'
+ - '637703905753230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -172,9 +172,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.8.2 (Windows-10-10.0.18362-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/dfjfj?api-version=2021-05
response:
body:
string: ''
@@ -182,9 +182,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 29 Sep 2020 08:37:30 GMT
+ - Thu, 21 Oct 2021 05:22:56 GMT
etag:
- - '637369654489670000'
+ - '637703905753230000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_success.yaml b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_success.yaml
index ac87b0b32eb1..5d9a219a8f3c 100644
--- a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_success.yaml
+++ b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/recordings/test_mgmt_topics.test_mgmt_topic_update_success.yaml
@@ -9,18 +9,18 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-05
response:
body:
- string: Topicshttps://servicebustestosez4o2u7d.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2017-042021-04-22T14:40:20Z
+ string: Topicshttps://servicebustestaweyco6xnr.servicebus.windows.net/$Resources/topics?$skip=0&$top=100&api-version=2021-052021-10-21T05:22:57Z
headers:
content-type:
- application/atom+xml;type=feed;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:19 GMT
+ - Thu, 21 Oct 2021 05:22:57 GMT
server:
- Microsoft-HTTPAPI/2.0
transfer-encoding:
@@ -45,21 +45,21 @@ interactions:
Content-Type:
- application/atom+xml
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:20Zservicebustestosez4o2u7dhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:58Z2021-10-21T05:22:58Zservicebustestaweyco6xnrP10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:20.787ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">P10675199DT2H48M5.4775807S1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:58.137Z2021-10-21T05:22:58.17ZtrueP10675199DT2H48M5.4775807SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:20 GMT
+ - Thu, 21 Oct 2021 05:22:58 GMT
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -74,7 +74,7 @@ interactions:
PT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:40:20.720Z2021-04-22T14:40:20.787ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse'
+ />Active2021-10-21T05:22:58.137Z2021-10-21T05:22:58.170ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256'
headers:
Accept:
- application/xml
@@ -83,29 +83,29 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1174'
+ - '1232'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:21Zservicebustestosez4o2u7dhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:58Zservicebustestaweyco6xnrPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:20.787ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:58.137Z2021-10-21T05:22:58.17ZtrueP10675199DT2H48M5.477539SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:21 GMT
+ - Thu, 21 Oct 2021 05:22:58 GMT
etag:
- - '637546992207870000'
+ - '637703905781700000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -125,24 +125,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:21Zservicebustestosez4o2u7dhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:22:58Z2021-10-21T05:22:58Zservicebustestaweyco6xnrPT2M1024falsePT10Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:21.46Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT2M1024falsePT10Mtrue0falsefalseActive2021-10-21T05:22:58.137Z2021-10-21T05:22:58.637Z0001-01-01T00:00:00Ztrue000000P10675199DT2H48M5.477539SfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:21 GMT
+ - Thu, 21 Oct 2021 05:22:58 GMT
etag:
- - '637546992214600000'
+ - '637703905786370000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -158,7 +158,7 @@ interactions:
PT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:40:20.720Z2021-04-22T14:40:21.460Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue'
+ />Active2021-10-21T05:22:58.137Z2021-10-21T05:22:58.637Z0001-01-01T00:00:00.000Ztrue000000PT10MfalseAvailablefalsetrue256'
headers:
Accept:
- application/xml
@@ -167,30 +167,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1647'
+ - '1705'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:22Zservicebustestosez4o2u7dhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:58Zservicebustestaweyco6xnrPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:21.46Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:58.137Z2021-10-21T05:22:58.637Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:21 GMT
+ - Thu, 21 Oct 2021 05:22:58 GMT
etag:
- - '637546992214600000'
+ - '637703905786370000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -210,24 +210,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:21Zservicebustestosez4o2u7dhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:22:58Z2021-10-21T05:22:58Zservicebustestaweyco6xnrPT11M3072falsePT12Mtrue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:21.99Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M3072falsePT12Mtrue0falsefalseActive2021-10-21T05:22:58.137Z2021-10-21T05:22:58.86Z0001-01-01T00:00:00Ztrue000000PT10MfalseAvailablefalsetrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:22 GMT
+ - Thu, 21 Oct 2021 05:22:58 GMT
etag:
- - '637546992219900000'
+ - '637703905788600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -243,7 +243,7 @@ interactions:
PT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:40:20.720Z2021-04-22T14:40:21.990Z0001-01-01T00:00:00.000Ztrue000000PT10M1SfalseAvailablefalsetrue'
+ />Active2021-10-21T05:22:58.137Z2021-10-21T05:22:58.860Z0001-01-01T00:00:00.000Ztrue000000PT10M1SfalseAvailablefalsetrue256'
headers:
Accept:
- application/xml
@@ -252,30 +252,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1653'
+ - '1711'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:22Zservicebustestosez4o2u7dhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:59Zservicebustestaweyco6xnrPT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:21.99Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M2S3072falsePT12M3Strue0falsefalseActive2021-10-21T05:22:58.137Z2021-10-21T05:22:58.86Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:22 GMT
+ - Thu, 21 Oct 2021 05:22:58 GMT
etag:
- - '637546992219900000'
+ - '637703905788600000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -295,24 +295,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:22Zservicebustestosez4o2u7dhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:22:58Z2021-10-21T05:22:59Zservicebustestaweyco6xnrPT11M2S3072falsePT12M3Strue0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:22.517Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT11M2S3072falsePT12M3Strue0falsefalseActive2021-10-21T05:22:58.137Z2021-10-21T05:22:59.113Z0001-01-01T00:00:00Ztrue000000PT10M1SfalseAvailablefalsetrue256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:22 GMT
+ - Thu, 21 Oct 2021 05:22:58 GMT
etag:
- - '637546992225170000'
+ - '637703905791130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -328,7 +328,7 @@ interactions:
PT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:40:20.720Z2021-04-22T14:40:22.517Z0001-01-01T00:00:00.000Zfalse000000PT14MfalseAvailablefalsefalse'
+ />Active2021-10-21T05:22:58.137Z2021-10-21T05:22:59.113Z0001-01-01T00:00:00.000Zfalse000000PT14MfalseAvailablefalsefalse256'
headers:
Accept:
- application/xml
@@ -337,30 +337,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1650'
+ - '1708'
Content-Type:
- application/atom+xml
If-Match:
- '*'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: PUT
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
- string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?api-version=2017-04fjrui2021-04-22T14:40:23Zservicebustestosez4o2u7dhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?api-version=2021-05fjrui2021-10-21T05:22:59Zservicebustestaweyco6xnrPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:22.517Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-10-21T05:22:58.137Z2021-10-21T05:22:59.113Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:22 GMT
+ - Thu, 21 Oct 2021 05:22:58 GMT
etag:
- - '637546992225170000'
+ - '637703905791130000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -380,24 +380,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: GET
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05
response:
body:
- string: https://servicebustestosez4o2u7d.servicebus.windows.net/fjrui?enrich=false&api-version=2017-04fjrui2021-04-22T14:40:20Z2021-04-22T14:40:23Zservicebustestosez4o2u7dhttps://servicebustestaweyco6xnr.servicebus.windows.net/fjrui?enrich=false&api-version=2021-05fjrui2021-10-21T05:22:58Z2021-10-21T05:22:59Zservicebustestaweyco6xnrPT15M2048falsePT16Mfalse0falsefalseActive2021-04-22T14:40:20.72Z2021-04-22T14:40:23.067Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse
+ xmlns:i="http://www.w3.org/2001/XMLSchema-instance">PT15M2048falsePT16Mfalse0falsefalseActive2021-10-21T05:22:58.137Z2021-10-21T05:22:59.317Z0001-01-01T00:00:00Zfalse000000PT14MfalseAvailablefalsefalse256
headers:
content-type:
- application/atom+xml;type=entry;charset=utf-8
date:
- - Thu, 22 Apr 2021 14:40:23 GMT
+ - Thu, 21 Oct 2021 05:22:59 GMT
etag:
- - '637546992230670000'
+ - '637703905793170000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
@@ -419,9 +419,9 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - azsdk-python-servicebusmanagementclient/2017-04 Python/3.7.9 (Windows-10-10.0.19041-SP0)
+ - azsdk-python-servicebusmanagementclient/2021-05 Python/3.7.10 (Windows-10-10.0.22000-SP0)
method: DELETE
- uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2017-04
+ uri: https://servicebustestsbname.servicebus.windows.net/fjrui?api-version=2021-05
response:
body:
string: ''
@@ -429,9 +429,9 @@ interactions:
content-length:
- '0'
date:
- - Thu, 22 Apr 2021 14:40:23 GMT
+ - Thu, 21 Oct 2021 05:22:59 GMT
etag:
- - '637546992230670000'
+ - '637703905793170000'
server:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_queues.py b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_queues.py
index effac5e2fc8c..75318fefc99f 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
@@ -11,7 +11,7 @@
import functools
import msrest
-from azure.servicebus.management import ServiceBusAdministrationClient, QueueProperties
+from azure.servicebus.management import ServiceBusAdministrationClient, QueueProperties, ApiVersion
from azure.servicebus._common.utils import utc_now
from utilities import get_logger
from azure.core.exceptions import HttpResponseError, ServiceRequestError, ResourceNotFoundError, ResourceExistsError
@@ -28,7 +28,8 @@
MgmtQueueListRuntimeInfoTestHelper,
run_test_mgmt_list_with_parameters,
run_test_mgmt_list_with_negative_parameters,
- clear_queues
+ clear_queues,
+ clear_topics
)
_logger = get_logger(logging.DEBUG)
@@ -223,7 +224,6 @@ def test_mgmt_queue_create_with_invalid_name(self, servicebus_namespace_connecti
with pytest.raises(msrest.exceptions.ValidationError):
mgmt_service.create_queue('')
-
@CachedResourceGroupPreparer(name_prefix='servicebustest')
@CachedServiceBusNamespacePreparer(name_prefix='servicebustest')
def test_mgmt_queue_create_with_queue_description(self, servicebus_namespace_connection_string, **kwargs):
@@ -231,6 +231,7 @@ def test_mgmt_queue_create_with_queue_description(self, servicebus_namespace_con
clear_queues(mgmt_service)
queue_name = "iweidk"
queue_name_2 = "vladsk"
+ queue_name_3 = "famviq"
topic_name = "aghadh"
#TODO: Why don't we have an input model (queueOptions? as superclass of QueueProperties?) and output model to not show these params?
@@ -271,6 +272,12 @@ def test_mgmt_queue_create_with_queue_description(self, servicebus_namespace_con
requires_session=True
)
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_queue(
+ queue_name_3,
+ max_message_size_in_kilobytes=1024 # basic/standard ties does not support
+ )
+
try:
queue = mgmt_service.get_queue(queue_name)
assert queue.name == queue_name
@@ -314,6 +321,104 @@ def test_mgmt_queue_create_with_queue_description(self, servicebus_namespace_con
mgmt_service.delete_topic(topic_name)
mgmt_service.close()
+ @CachedResourceGroupPreparer(name_prefix='servicebustest')
+ @CachedServiceBusNamespacePreparer(name_prefix='servicebustest', sku='Premium')
+ def test_mgmt_queue_premium_create_with_queue_description(self, servicebus_namespace_connection_string, **kwargs):
+ mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string)
+ clear_queues(mgmt_service)
+ queue_name = "iweidk"
+ queue_name_2 = "cpqmva"
+ queue_name_3 = "rekocd"
+
+ mgmt_service.create_queue(
+ queue_name,
+ auto_delete_on_idle=datetime.timedelta(minutes=10),
+ dead_lettering_on_message_expiration=True,
+ default_message_time_to_live=datetime.timedelta(minutes=11),
+ duplicate_detection_history_time_window=datetime.timedelta(minutes=12),
+ enable_batched_operations=True,
+ #enable_express=True, # not enabled on premium
+ #enable_partitioning=True, # not enabled on premium
+ lock_duration=datetime.timedelta(seconds=13),
+ max_delivery_count=14,
+ max_size_in_megabytes=3072,
+ #requires_duplicate_detection=True, # not enabled on premium
+ requires_session=True,
+ max_message_size_in_kilobytes=12345
+ )
+
+ mgmt_service.create_queue(
+ queue_name_2,
+ auto_delete_on_idle="PT10M1S",
+ dead_lettering_on_message_expiration=True,
+ default_message_time_to_live="PT11M2S",
+ duplicate_detection_history_time_window="PT12M3S",
+ enable_batched_operations=True,
+ lock_duration="PT13S",
+ max_delivery_count=14,
+ max_size_in_megabytes=3072,
+ requires_session=True
+ ) # default max_message_size_in_kilobytes is 1024
+
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_queue(
+ queue_name_3,
+ max_message_size_in_kilobytes=1023 # min allowed is 1024
+ )
+
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_queue(
+ queue_name_3,
+ max_message_size_in_kilobytes=102401 # max allowed is 102400
+ )
+
+ try:
+ queue = mgmt_service.get_queue(queue_name)
+ assert queue.name == queue_name
+ assert queue.auto_delete_on_idle == datetime.timedelta(minutes=10)
+ assert queue.dead_lettering_on_message_expiration == True
+ assert queue.default_message_time_to_live == datetime.timedelta(minutes=11)
+ assert queue.duplicate_detection_history_time_window == datetime.timedelta(minutes=12)
+ assert queue.enable_batched_operations == True
+ # enable_express is not supported for the premium sku, see doc
+ # https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-premium-messaging#express-entities
+ # assert queue.enable_express == True
+ # partitioning is not available for the the premium sku, see doc
+ # https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-partitioning
+ # assert queue.enable_partitioning == True
+ assert queue.lock_duration == datetime.timedelta(seconds=13)
+ assert queue.max_delivery_count == 14
+ assert queue.max_size_in_megabytes % 3072 == 0 # TODO: In my local test, I don't see a multiple of the input number. To confirm
+ # This is disabled due to the following error:
+ # azure.core.exceptions.HttpResponseError: SubCode=40000. Both DelayedPersistence property and RequiresDuplicateDetection property cannot be enabled together.
+ # To know more visit https://aka.ms/sbResourceMgrExceptions.
+ #assert queue.requires_duplicate_detection == True
+ assert queue.requires_session == True
+ assert queue.max_message_size_in_kilobytes == 12345
+
+ queue_2 = mgmt_service.get_queue(queue_name_2)
+ assert queue_2.name == queue_name_2
+ assert queue_2.auto_delete_on_idle == datetime.timedelta(minutes=10, seconds=1)
+ assert queue_2.dead_lettering_on_message_expiration == True
+ assert queue_2.default_message_time_to_live == datetime.timedelta(minutes=11, seconds=2)
+ assert queue_2.duplicate_detection_history_time_window == datetime.timedelta(minutes=12, seconds=3)
+ assert queue_2.enable_batched_operations == True
+ assert queue_2.lock_duration == datetime.timedelta(seconds=13)
+ assert queue_2.max_delivery_count == 14
+ assert queue_2.max_size_in_megabytes % 3072 == 0
+ assert queue_2.requires_session == True
+ assert queue_2.max_message_size_in_kilobytes == 1024
+
+ queue_2.max_message_size_in_kilobytes = 54321
+ mgmt_service.update_queue(queue_2)
+ queue_2_new = mgmt_service.get_queue(queue_name_2)
+ assert queue_2_new.max_message_size_in_kilobytes == 54321
+
+ finally:
+ mgmt_service.delete_queue(queue_name)
+ mgmt_service.delete_queue(queue_name_2)
+ mgmt_service.close()
+
@CachedResourceGroupPreparer(name_prefix='servicebustest')
@CachedServiceBusNamespacePreparer(name_prefix='servicebustest')
def test_mgmt_queue_create_duplicate(self, servicebus_namespace_connection_string, **kwargs):
@@ -681,3 +786,40 @@ def test_mgmt_queue_update_dict_error(self, servicebus_namespace_connection_stri
mgmt_service.update_queue(queue_description_only_name)
finally:
mgmt_service.delete_queue(queue_name)
+
+ @CachedResourceGroupPreparer(name_prefix='servicebustest')
+ @CachedServiceBusNamespacePreparer(name_prefix='servicebustest')
+ def test_mgmt_queue_basic_v2017_04(self, servicebus_namespace_connection_string, servicebus_namespace,
+ servicebus_namespace_key_name, servicebus_namespace_primary_key):
+ mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string, api_version=ApiVersion.V2017_04)
+ clear_queues(mgmt_service)
+
+ mgmt_service.create_queue("test_queue")
+ queues = list(mgmt_service.list_queues())
+ assert len(queues) == 1 and queues[0].name == "test_queue"
+ queue = mgmt_service.get_queue("test_queue")
+ assert queue.name == "test_queue"
+ mgmt_service.delete_queue("test_queue")
+ queues = list(mgmt_service.list_queues())
+ assert len(queues) == 0
+
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_queue("queue_can_not_be_created", max_message_size_in_kilobytes=1024)
+
+ fully_qualified_namespace = servicebus_namespace.name + '.servicebus.windows.net'
+ mgmt_service = ServiceBusAdministrationClient(
+ fully_qualified_namespace,
+ credential=ServiceBusSharedKeyCredential(servicebus_namespace_key_name, servicebus_namespace_primary_key),
+ api_version=ApiVersion.V2017_04
+ )
+ mgmt_service.create_queue("test_queue")
+ queues = list(mgmt_service.list_queues())
+ assert len(queues) == 1 and queues[0].name == "test_queue"
+ queue = mgmt_service.get_queue("test_queue")
+ assert queue.name == "test_queue"
+ mgmt_service.delete_queue("test_queue")
+ queues = list(mgmt_service.list_queues())
+ assert len(queues) == 0
+
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_queue("queue_can_not_be_created", max_message_size_in_kilobytes=1024)
diff --git a/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_topics.py b/sdk/servicebus/azure-servicebus/tests/mgmt_tests/test_mgmt_topics.py
index bf5eca8c1981..5f59c8d57ee4 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
@@ -8,7 +8,8 @@
import datetime
import msrest
-from azure.servicebus.management import ServiceBusAdministrationClient, TopicProperties
+from azure.servicebus.management import ServiceBusAdministrationClient, TopicProperties, ApiVersion
+from azure.servicebus._base_handler import ServiceBusSharedKeyCredential
from utilities import get_logger
from azure.core.exceptions import HttpResponseError, ResourceExistsError
@@ -47,6 +48,8 @@ def test_mgmt_topic_create_with_topic_description(self, servicebus_namespace_con
clear_topics(mgmt_service)
topic_name = "iweidk"
topic_name_2 = "djsadq"
+ topic_name_3 = "famviq"
+
try:
mgmt_service.create_topic(
topic_name=topic_name,
@@ -88,6 +91,85 @@ def test_mgmt_topic_create_with_topic_description(self, servicebus_namespace_con
assert topic_2.enable_partitioning
assert topic_2.max_size_in_megabytes % 3072 == 0
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_topic(
+ topic_name_3,
+ max_message_size_in_kilobytes=1024 # basic/standard ties does not support
+ )
+
+ finally:
+ mgmt_service.delete_topic(topic_name)
+ mgmt_service.delete_topic(topic_name_2)
+
+ @CachedResourceGroupPreparer(name_prefix='servicebustest')
+ @CachedServiceBusNamespacePreparer(name_prefix='servicebustest', sku='Premium')
+ def test_mgmt_topic_premium_create_with_topic_description(self, servicebus_namespace_connection_string, **kwargs):
+ mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string)
+ clear_topics(mgmt_service)
+ topic_name = "iweidk"
+ topic_name_2 = "cdasmc"
+ topic_name_3 = "rekocd"
+ try:
+ mgmt_service.create_topic(
+ topic_name=topic_name,
+ auto_delete_on_idle=datetime.timedelta(minutes=10),
+ default_message_time_to_live=datetime.timedelta(minutes=11),
+ duplicate_detection_history_time_window=datetime.timedelta(minutes=12),
+ enable_batched_operations=True,
+ #enable_express=True,
+ #enable_partitioning=True,
+ max_size_in_megabytes=3072,
+ max_message_size_in_kilobytes=12345
+ )
+ topic = mgmt_service.get_topic(topic_name)
+ assert topic.name == topic_name
+ assert topic.auto_delete_on_idle == datetime.timedelta(minutes=10)
+ assert topic.default_message_time_to_live == datetime.timedelta(minutes=11)
+ assert topic.duplicate_detection_history_time_window == datetime.timedelta(minutes=12)
+ assert topic.enable_batched_operations
+ # enable_express is not supported for the premium sku, see doc
+ # https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-premium-messaging#express-entities
+ # assert topic.enable_express
+ # partitioning is not available for the the premium sku, see doc
+ # https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-partitioning
+ # assert topic.enable_partitioning
+ assert topic.max_size_in_megabytes % 3072 == 0
+ assert topic.max_message_size_in_kilobytes == 12345
+
+ mgmt_service.create_topic(
+ topic_name=topic_name_2,
+ auto_delete_on_idle="PT10M",
+ default_message_time_to_live="PT11M",
+ duplicate_detection_history_time_window="PT12M",
+ enable_batched_operations=True,
+ max_size_in_megabytes=3072
+ )
+ topic_2 = mgmt_service.get_topic(topic_name_2)
+ assert topic_2.name == topic_name_2
+ assert topic_2.auto_delete_on_idle == datetime.timedelta(minutes=10)
+ assert topic_2.default_message_time_to_live == datetime.timedelta(minutes=11)
+ assert topic_2.duplicate_detection_history_time_window == datetime.timedelta(minutes=12)
+ assert topic_2.enable_batched_operations
+ assert topic_2.max_size_in_megabytes % 3072 == 0
+ assert topic_2.max_message_size_in_kilobytes == 1024
+
+ topic_2.max_message_size_in_kilobytes = 54321
+ mgmt_service.update_topic(topic_2)
+ topic_2_new = mgmt_service.get_topic(topic_name_2)
+ assert topic_2_new.max_message_size_in_kilobytes == 54321
+
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_topic(
+ topic_name=topic_name_3,
+ max_message_size_in_kilobytes=1023
+ )
+
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_topic(
+ topic_name=topic_name_3,
+ max_message_size_in_kilobytes=102401
+ )
+
finally:
mgmt_service.delete_topic(topic_name)
mgmt_service.delete_topic(topic_name_2)
@@ -404,3 +486,41 @@ def test_mgmt_topic_update_dict_error(self, servicebus_namespace_connection_stri
mgmt_service.update_topic(topic_description_only_name)
finally:
mgmt_service.delete_topic(topic_name)
+
+ @CachedResourceGroupPreparer(name_prefix='servicebustest')
+ @CachedServiceBusNamespacePreparer(name_prefix='servicebustest')
+ def test_mgmt_topic_basic_v2017_04(self, servicebus_namespace_connection_string, servicebus_namespace,
+ servicebus_namespace_key_name, servicebus_namespace_primary_key):
+ mgmt_service = ServiceBusAdministrationClient.from_connection_string(servicebus_namespace_connection_string, api_version=ApiVersion.V2017_04)
+ clear_topics(mgmt_service)
+
+ mgmt_service.create_topic("test_topic")
+ topics = list(mgmt_service.list_topics())
+ assert len(topics) == 1 and topics[0].name == "test_topic"
+ topic = mgmt_service.get_topic("test_topic")
+ assert topic.name == "test_topic"
+ mgmt_service.delete_topic("test_topic")
+ topics = list(mgmt_service.list_topics())
+ assert len(topics) == 0
+
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_topic("topic_can_not_be_created", max_message_size_in_kilobytes=1024)
+
+ fully_qualified_namespace = servicebus_namespace.name + '.servicebus.windows.net'
+ mgmt_service = ServiceBusAdministrationClient(
+ fully_qualified_namespace,
+ credential=ServiceBusSharedKeyCredential(servicebus_namespace_key_name, servicebus_namespace_primary_key),
+ api_version=ApiVersion.V2017_04
+ )
+
+ mgmt_service.create_topic("test_topic")
+ topics = list(mgmt_service.list_topics())
+ assert len(topics) == 1 and topics[0].name == "test_topic"
+ topic = mgmt_service.get_topic("test_topic")
+ assert topic.name == "test_topic"
+ mgmt_service.delete_topic("test_topic")
+ topics = list(mgmt_service.list_topics())
+ assert len(topics) == 0
+
+ with pytest.raises(HttpResponseError):
+ mgmt_service.create_topic("topic_can_not_be_created", max_message_size_in_kilobytes=1024)