From 95c5a12b6b3ca30c582f03bfd0f373b411af31d1 Mon Sep 17 00:00:00 2001 From: Shubham Chaudhari Date: Fri, 27 Sep 2024 02:05:02 +0530 Subject: [PATCH 1/4] Servicebus new feature update' --- .../cli/command_modules/servicebus/_params.py | 14 ++ .../latest/servicebus/namespace/__init__.py | 1 + .../latest/servicebus/namespace/_create.py | 97 +++++++- .../latest/servicebus/namespace/_failover.py | 224 ++++++++++++++++++ .../latest/servicebus/namespace/_update.py | 105 +++++++- .../aaz/latest/servicebus/namespace/_wait.py | 40 +++- .../cli/command_modules/servicebus/action.py | 29 +++ .../command_modules/servicebus/commands.py | 5 + .../servicebus/operations/namespace_custom.py | 86 ++++++- 9 files changed, 566 insertions(+), 35 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_failover.py diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/_params.py b/src/azure-cli/azure/cli/command_modules/servicebus/_params.py index 92c777f7a38..c6888f64845 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/_params.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/_params.py @@ -18,6 +18,7 @@ def load_arguments_sb(self, _): _validate_duplicate_detection_history_time_window, \ _validate_default_message_time_to_live, \ _validate_lock_duration, validate_partner_namespace, validate_premiumsku_capacity + from azure.cli.command_modules.servicebus.action import AlertAddlocation (SkuName, FilterType, TlsVersion) = self.get_models('SkuName', 'FilterType', 'TlsVersion', resource_type=ResourceType.MGMT_SERVICEBUS) @@ -48,6 +49,10 @@ def load_arguments_sb(self, _): help='This determines if traffic is allowed over public network. By default it is enabled. If value is SecuredByPerimeter then Inbound and Outbound communication is controlled by the network security perimeter and profile\' access rules.') c.argument('premium_messaging_partitions', options_list=['--premium-messaging-partitions', '--premium-partitions'], is_preview=True, type=int, help='The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4') c.argument('alternate_name', help='Alternate name specified when alias and namespace names are same.') + c.argument('geo_data_replication_config', action=AlertAddlocation, nargs='+', + help='A list of regions where replicas of the namespace are maintained Object') + c.argument('max_replication_lag_duration_in_seconds', type=int, + help='The maximum acceptable lag for data replication operations from the primary replica to a quorum of secondary replicas') with self.argument_context('servicebus namespace create') as c: c.argument('location', arg_type=get_location_type(self.cli_ctx), validator=get_default_location_from_resource_group) @@ -151,3 +156,12 @@ def load_arguments_sb(self, _): c.argument('require_infrastructure_encryption', options_list=['--infra-encryption'], arg_type=get_three_state_flag(), help='A boolean value that indicates whether Infrastructure Encryption (Double Encryption)') + +# Location + with self.argument_context('servicebus namespace replica', resource_type=ResourceType.MGMT_SERVICEBUS) as c: + c.argument('namespace_name', options_list=['--namespace-name'], id_part=None, help='Name of the Namespace') + + for scope in ['servicebus namespace replica add', 'servicebus namespace replica remove']: + with self.argument_context(scope, resource_type=ResourceType.MGMT_SERVICEBUS) as c: + c.argument('geo_data_replication_config', action=AlertAddlocation, nargs='+', + help='A list of regions where replicas of the namespace are maintained Object') diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/__init__.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/__init__.py index 0ac5374e2bf..036f12f754f 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/__init__.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/__init__.py @@ -16,3 +16,4 @@ from ._update import * from ._wait import * from ._exists import * +from ._failover import * diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_create.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_create.py index 5086b41ce71..1b93c322f22 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_create.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_create.py @@ -25,9 +25,9 @@ class Create(AAZCommand): """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-01-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2023-01-01-preview"], ] } @@ -54,7 +54,6 @@ def _build_arguments_schema(cls, *args, **kwargs): required=True, ) _args_schema.resource_group = AAZResourceGroupNameArg( - help="The resourceGroup name", required=True, ) @@ -139,6 +138,11 @@ def _build_arguments_schema(cls, *args, **kwargs): arg_group="Properties", help="Properties of BYOK Encryption description", ) + _args_schema.geo_data_replication = AAZObjectArg( + options=["--geo-data-replication"], + arg_group="Properties", + help="Geo Data Replication settings for the namespace", + ) _args_schema.minimum_tls_version = AAZStrArg( options=["--minimum-tls-version"], arg_group="Properties", @@ -205,6 +209,34 @@ def _build_arguments_schema(cls, *args, **kwargs): help="Version of KeyVault", ) + geo_data_replication = cls._args_schema.geo_data_replication + geo_data_replication.locations = AAZListArg( + options=["locations"], + help="A list of regions where replicas of the namespace are maintained.", + ) + geo_data_replication.max_replication_lag_duration_in_seconds = AAZIntArg( + options=["max-lag", "max-replication-lag-duration-in-seconds"], + help="The maximum acceptable lag for data replication operations from the primary replica to a quorum of secondary replicas. When the lag exceeds the configured amount, operations on the primary replica will be failed. The allowed values are 0 and 5 minutes to 1 day.", + ) + + locations = cls._args_schema.geo_data_replication.locations + locations.Element = AAZObjectArg() + + _element = cls._args_schema.geo_data_replication.locations.Element + _element.cluster_arm_id = AAZStrArg( + options=["cluster-arm-id"], + help="Optional property that denotes the ARM ID of the Cluster. This is required, if a namespace replica should be placed in a Dedicated Event Hub Cluster", + ) + _element.location_name = AAZStrArg( + options=["location-name"], + help="Azure regions where a replica of the namespace is maintained", + ) + _element.role_type = AAZStrArg( + options=["role-type"], + help="GeoDR Role Types", + enum={"Primary": "Primary", "Secondary": "Secondary"}, + ) + private_endpoint_connections = cls._args_schema.private_endpoint_connections private_endpoint_connections.Element = AAZObjectArg() @@ -322,7 +354,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-01-01-preview", required=True, ), } @@ -347,7 +379,7 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) - _builder.set_prop("identity", AAZObjectType, ".identity") + _builder.set_prop("identity", AAZObjectType, ".identity", typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("sku", AAZObjectType, ".sku") @@ -366,7 +398,8 @@ def content(self): if properties is not None: properties.set_prop("alternateName", AAZStrType, ".alternate_name") properties.set_prop("disableLocalAuth", AAZBoolType, ".disable_local_auth") - properties.set_prop("encryption", AAZObjectType, ".encryption") + properties.set_prop("encryption", AAZObjectType, ".encryption", typ_kwargs={"flags": {"client_flatten": True}}) + properties.set_prop("geoDataReplication", AAZObjectType, ".geo_data_replication") properties.set_prop("minimumTlsVersion", AAZStrType, ".minimum_tls_version") properties.set_prop("premiumMessagingPartitions", AAZIntType, ".premium_messaging_partitions") properties.set_prop("privateEndpointConnections", AAZListType, ".private_endpoint_connections") @@ -385,7 +418,7 @@ def content(self): _elements = _builder.get(".properties.encryption.keyVaultProperties[]") if _elements is not None: - _elements.set_prop("identity", AAZObjectType) + _elements.set_prop("identity", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _elements.set_prop("keyName", AAZStrType, ".key_name") _elements.set_prop("keyVaultUri", AAZStrType, ".key_vault_uri") _elements.set_prop("keyVersion", AAZStrType, ".key_version") @@ -394,6 +427,21 @@ def content(self): if identity is not None: identity.set_prop("userAssignedIdentity", AAZStrType, ".user_assigned_identity") + geo_data_replication = _builder.get(".properties.geoDataReplication") + if geo_data_replication is not None: + geo_data_replication.set_prop("locations", AAZListType, ".locations") + geo_data_replication.set_prop("maxReplicationLagDurationInSeconds", AAZIntType, ".max_replication_lag_duration_in_seconds") + + locations = _builder.get(".properties.geoDataReplication.locations") + if locations is not None: + locations.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.geoDataReplication.locations[]") + if _elements is not None: + _elements.set_prop("clusterArmId", AAZStrType, ".cluster_arm_id") + _elements.set_prop("locationName", AAZStrType, ".location_name") + _elements.set_prop("roleType", AAZStrType, ".role_type") + private_endpoint_connections = _builder.get(".properties.privateEndpointConnections") if private_endpoint_connections is not None: private_endpoint_connections.set_elements(AAZObjectType, ".") @@ -450,7 +498,9 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.identity = AAZObjectType() + _schema_on_200_201.identity = AAZObjectType( + flags={"client_flatten": True}, + ) _schema_on_200_201.location = AAZStrType( flags={"required": True}, ) @@ -509,7 +559,12 @@ def _build_schema_on_200_201(cls): properties.disable_local_auth = AAZBoolType( serialized_name="disableLocalAuth", ) - properties.encryption = AAZObjectType() + properties.encryption = AAZObjectType( + flags={"client_flatten": True}, + ) + properties.geo_data_replication = AAZObjectType( + serialized_name="geoDataReplication", + ) properties.metric_id = AAZStrType( serialized_name="metricId", flags={"read_only": True}, @@ -560,7 +615,9 @@ def _build_schema_on_200_201(cls): key_vault_properties.Element = AAZObjectType() _element = cls._schema_on_200_201.properties.encryption.key_vault_properties.Element - _element.identity = AAZObjectType() + _element.identity = AAZObjectType( + flags={"client_flatten": True}, + ) _element.key_name = AAZStrType( serialized_name="keyName", ) @@ -576,6 +633,26 @@ def _build_schema_on_200_201(cls): serialized_name="userAssignedIdentity", ) + geo_data_replication = cls._schema_on_200_201.properties.geo_data_replication + geo_data_replication.locations = AAZListType() + geo_data_replication.max_replication_lag_duration_in_seconds = AAZIntType( + serialized_name="maxReplicationLagDurationInSeconds", + ) + + locations = cls._schema_on_200_201.properties.geo_data_replication.locations + locations.Element = AAZObjectType() + + _element = cls._schema_on_200_201.properties.geo_data_replication.locations.Element + _element.cluster_arm_id = AAZStrType( + serialized_name="clusterArmId", + ) + _element.location_name = AAZStrType( + serialized_name="locationName", + ) + _element.role_type = AAZStrType( + serialized_name="roleType", + ) + private_endpoint_connections = cls._schema_on_200_201.properties.private_endpoint_connections private_endpoint_connections.Element = AAZObjectType() diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_failover.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_failover.py new file mode 100644 index 00000000000..f0df52a775b --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_failover.py @@ -0,0 +1,224 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# +# Code generated by aaz-dev-tools +# -------------------------------------------------------------------------------------------- + +# pylint: skip-file +# flake8: noqa + +from azure.cli.core.aaz import * + + +@register_command( + "servicebus namespace failover", +) +class Failover(AAZCommand): + """GeoDR Failover + """ + + _aaz_info = { + "version": "2023-01-01-preview", + "resources": [ + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}/failover", "2023-01-01-preview"], + ] + } + + AZ_SUPPORT_NO_WAIT = True + + def _handler(self, command_args): + super()._handler(command_args) + return self.build_lro_poller(self._execute_operations, self._output) + + _args_schema = None + + @classmethod + def _build_arguments_schema(cls, *args, **kwargs): + if cls._args_schema is not None: + return cls._args_schema + cls._args_schema = super()._build_arguments_schema(*args, **kwargs) + + # define Arg Group "" + + _args_schema = cls._args_schema + _args_schema.namespace_name = AAZStrArg( + options=["--namespace-name"], + help="The namespace name", + required=True, + id_part="name", + fmt=AAZStrArgFormat( + max_length=50, + min_length=6, + ), + ) + _args_schema.resource_group = AAZResourceGroupNameArg( + required=True, + ) + + # define Arg Group "Properties" + + _args_schema = cls._args_schema + _args_schema.force = AAZBoolArg( + options=["--force"], + arg_group="Properties", + help="If Force is false then graceful failover is attempted after ensuring no data loss. If Force flag is set to true, Forced failover is attempted with possible data loss.", + ) + _args_schema.primary_location = AAZStrArg( + options=["--primary-location"], + arg_group="Properties", + help="Query parameter for the new primary location after failover.", + ) + return cls._args_schema + + def _execute_operations(self): + self.pre_operations() + yield self.NamespacesFailover(ctx=self.ctx)() + self.post_operations() + + @register_callback + def pre_operations(self): + pass + + @register_callback + def post_operations(self): + pass + + def _output(self, *args, **kwargs): + result = self.deserialize_output(self.ctx.vars.instance, client_flatten=True) + return result + + class NamespacesFailover(AAZHttpOperation): + CLIENT_TYPE = "MgmtClient" + + def __call__(self, *args, **kwargs): + request = self.make_request() + session = self.client.send_request(request=request, stream=False, **kwargs) + if session.http_response.status_code in [202]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + if session.http_response.status_code in [200, 201]: + return self.client.build_lro_polling( + self.ctx.args.no_wait, + session, + self.on_200_201, + self.on_error, + lro_options={"final-state-via": "azure-async-operation"}, + path_format_arguments=self.url_parameters, + ) + + return self.on_error(session.http_response) + + @property + def url(self): + return self.client.format_url( + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceBus/namespaces/{namespaceName}/failover", + **self.url_parameters + ) + + @property + def method(self): + return "POST" + + @property + def error_format(self): + return "MgmtErrorFormat" + + @property + def url_parameters(self): + parameters = { + **self.serialize_url_param( + "namespaceName", self.ctx.args.namespace_name, + required=True, + ), + **self.serialize_url_param( + "resourceGroupName", self.ctx.args.resource_group, + required=True, + ), + **self.serialize_url_param( + "subscriptionId", self.ctx.subscription_id, + required=True, + ), + } + return parameters + + @property + def query_parameters(self): + parameters = { + **self.serialize_query_param( + "api-version", "2023-01-01-preview", + required=True, + ), + } + return parameters + + @property + def header_parameters(self): + parameters = { + **self.serialize_header_param( + "Content-Type", "application/json", + ), + **self.serialize_header_param( + "Accept", "application/json", + ), + } + return parameters + + @property + def content(self): + _content_value, _builder = self.new_content_builder( + self.ctx.args, + typ=AAZObjectType, + typ_kwargs={"flags": {"required": True, "client_flatten": True}} + ) + _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + + properties = _builder.get(".properties") + if properties is not None: + properties.set_prop("force", AAZBoolType, ".force") + properties.set_prop("primaryLocation", AAZStrType, ".primary_location") + + return self.serialize_content(_content_value) + + def on_200_201(self, session): + data = self.deserialize_http_content(session) + self.ctx.set_var( + "instance", + data, + schema_builder=self._build_schema_on_200_201 + ) + + _schema_on_200_201 = None + + @classmethod + def _build_schema_on_200_201(cls): + if cls._schema_on_200_201 is not None: + return cls._schema_on_200_201 + + cls._schema_on_200_201 = AAZObjectType() + + _schema_on_200_201 = cls._schema_on_200_201 + _schema_on_200_201.properties = AAZObjectType( + flags={"client_flatten": True}, + ) + + properties = cls._schema_on_200_201.properties + properties.force = AAZBoolType() + properties.primary_location = AAZStrType( + serialized_name="primaryLocation", + ) + + return cls._schema_on_200_201 + + +class _FailoverHelper: + """Helper class for Failover""" + + +__all__ = ["Failover"] diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_update.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_update.py index ddbf46ebc60..2ac84812e61 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_update.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_update.py @@ -23,9 +23,9 @@ class Update(AAZCommand): """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-01-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2023-01-01-preview"], ] } @@ -59,10 +59,48 @@ def _build_arguments_schema(cls, *args, **kwargs): ), ) _args_schema.resource_group = AAZResourceGroupNameArg( - help="The resourceGroup name", required=True, ) + # define Arg Group "GeoDataReplication" + + _args_schema = cls._args_schema + _args_schema.locations = AAZListArg( + options=["--locations"], + arg_group="GeoDataReplication", + help="A list of regions where replicas of the namespace are maintained.", + nullable=True, + ) + _args_schema.max_replication_lag_duration_in_seconds = AAZIntArg( + options=["--max-lag", "--max-replication-lag-duration-in-seconds"], + arg_group="GeoDataReplication", + help="The maximum acceptable lag for data replication operations from the primary replica to a quorum of secondary replicas. When the lag exceeds the configured amount, operations on the primary replica will be failed. The allowed values are 0 and 5 minutes to 1 day.", + nullable=True, + ) + + locations = cls._args_schema.locations + locations.Element = AAZObjectArg( + nullable=True, + ) + + _element = cls._args_schema.locations.Element + _element.cluster_arm_id = AAZStrArg( + options=["cluster-arm-id"], + help="Optional property that denotes the ARM ID of the Cluster. This is required, if a namespace replica should be placed in a Dedicated Event Hub Cluster", + nullable=True, + ) + _element.location_name = AAZStrArg( + options=["location-name"], + help="Azure regions where a replica of the namespace is maintained", + nullable=True, + ) + _element.role_type = AAZStrArg( + options=["role-type"], + help="GeoDR Role Types", + nullable=True, + enum={"Primary": "Primary", "Secondary": "Secondary"}, + ) + # define Arg Group "Parameters" _args_schema = cls._args_schema @@ -341,7 +379,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-01-01-preview", required=True, ), } @@ -440,7 +478,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-01-01-preview", required=True, ), } @@ -498,7 +536,7 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("identity", AAZObjectType, ".identity") + _builder.set_prop("identity", AAZObjectType, ".identity", typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("sku", AAZObjectType) _builder.set_prop("tags", AAZDictType, ".tags") @@ -516,7 +554,8 @@ def _update_instance(self, instance): if properties is not None: properties.set_prop("alternateName", AAZStrType, ".alternate_name") properties.set_prop("disableLocalAuth", AAZBoolType, ".disable_local_auth") - properties.set_prop("encryption", AAZObjectType, ".encryption") + properties.set_prop("encryption", AAZObjectType, ".encryption", typ_kwargs={"flags": {"client_flatten": True}}) + properties.set_prop("geoDataReplication", AAZObjectType) properties.set_prop("minimumTlsVersion", AAZStrType, ".minimum_tls_version") properties.set_prop("premiumMessagingPartitions", AAZIntType, ".premium_messaging_partitions") properties.set_prop("privateEndpointConnections", AAZListType, ".private_endpoint_connections") @@ -534,7 +573,7 @@ def _update_instance(self, instance): _elements = _builder.get(".properties.encryption.keyVaultProperties[]") if _elements is not None: - _elements.set_prop("identity", AAZObjectType) + _elements.set_prop("identity", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _elements.set_prop("keyName", AAZStrType, ".key_name") _elements.set_prop("keyVaultUri", AAZStrType, ".key_vault_uri") _elements.set_prop("keyVersion", AAZStrType, ".key_version") @@ -543,6 +582,21 @@ def _update_instance(self, instance): if identity is not None: identity.set_prop("userAssignedIdentity", AAZStrType, ".user_assigned_identity") + geo_data_replication = _builder.get(".properties.geoDataReplication") + if geo_data_replication is not None: + geo_data_replication.set_prop("locations", AAZListType, ".locations") + geo_data_replication.set_prop("maxReplicationLagDurationInSeconds", AAZIntType, ".max_replication_lag_duration_in_seconds") + + locations = _builder.get(".properties.geoDataReplication.locations") + if locations is not None: + locations.set_elements(AAZObjectType, ".") + + _elements = _builder.get(".properties.geoDataReplication.locations[]") + if _elements is not None: + _elements.set_prop("clusterArmId", AAZStrType, ".cluster_arm_id") + _elements.set_prop("locationName", AAZStrType, ".location_name") + _elements.set_prop("roleType", AAZStrType, ".role_type") + private_endpoint_connections = _builder.get(".properties.privateEndpointConnections") if private_endpoint_connections is not None: private_endpoint_connections.set_elements(AAZObjectType, ".") @@ -612,7 +666,9 @@ def _build_schema_sb_namespace_read(cls, _schema): sb_namespace_read.id = AAZStrType( flags={"read_only": True}, ) - sb_namespace_read.identity = AAZObjectType() + sb_namespace_read.identity = AAZObjectType( + flags={"client_flatten": True}, + ) sb_namespace_read.location = AAZStrType( flags={"required": True}, ) @@ -671,7 +727,12 @@ def _build_schema_sb_namespace_read(cls, _schema): properties.disable_local_auth = AAZBoolType( serialized_name="disableLocalAuth", ) - properties.encryption = AAZObjectType() + properties.encryption = AAZObjectType( + flags={"client_flatten": True}, + ) + properties.geo_data_replication = AAZObjectType( + serialized_name="geoDataReplication", + ) properties.metric_id = AAZStrType( serialized_name="metricId", flags={"read_only": True}, @@ -722,7 +783,9 @@ def _build_schema_sb_namespace_read(cls, _schema): key_vault_properties.Element = AAZObjectType() _element = _schema_sb_namespace_read.properties.encryption.key_vault_properties.Element - _element.identity = AAZObjectType() + _element.identity = AAZObjectType( + flags={"client_flatten": True}, + ) _element.key_name = AAZStrType( serialized_name="keyName", ) @@ -738,6 +801,26 @@ def _build_schema_sb_namespace_read(cls, _schema): serialized_name="userAssignedIdentity", ) + geo_data_replication = _schema_sb_namespace_read.properties.geo_data_replication + geo_data_replication.locations = AAZListType() + geo_data_replication.max_replication_lag_duration_in_seconds = AAZIntType( + serialized_name="maxReplicationLagDurationInSeconds", + ) + + locations = _schema_sb_namespace_read.properties.geo_data_replication.locations + locations.Element = AAZObjectType() + + _element = _schema_sb_namespace_read.properties.geo_data_replication.locations.Element + _element.cluster_arm_id = AAZStrType( + serialized_name="clusterArmId", + ) + _element.location_name = AAZStrType( + serialized_name="locationName", + ) + _element.role_type = AAZStrType( + serialized_name="roleType", + ) + private_endpoint_connections = _schema_sb_namespace_read.properties.private_endpoint_connections private_endpoint_connections.Element = AAZObjectType() diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_wait.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_wait.py index 83bbedbadc3..f56533af9e5 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_wait.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_wait.py @@ -20,7 +20,7 @@ class Wait(AAZWaitCommand): _aaz_info = { "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2023-01-01-preview"], ] } @@ -51,7 +51,6 @@ def _build_arguments_schema(cls, *args, **kwargs): ), ) _args_schema.resource_group = AAZResourceGroupNameArg( - help="The resourceGroup name", required=True, ) return cls._args_schema @@ -121,7 +120,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-01-01-preview", required=True, ), } @@ -157,7 +156,9 @@ def _build_schema_on_200(cls): _schema_on_200.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200.identity = AAZObjectType() + _schema_on_200.identity = AAZObjectType( + flags={"client_flatten": True}, + ) _schema_on_200.location = AAZStrType( flags={"required": True}, ) @@ -216,7 +217,12 @@ def _build_schema_on_200(cls): properties.disable_local_auth = AAZBoolType( serialized_name="disableLocalAuth", ) - properties.encryption = AAZObjectType() + properties.encryption = AAZObjectType( + flags={"client_flatten": True}, + ) + properties.geo_data_replication = AAZObjectType( + serialized_name="geoDataReplication", + ) properties.metric_id = AAZStrType( serialized_name="metricId", flags={"read_only": True}, @@ -267,7 +273,9 @@ def _build_schema_on_200(cls): key_vault_properties.Element = AAZObjectType() _element = cls._schema_on_200.properties.encryption.key_vault_properties.Element - _element.identity = AAZObjectType() + _element.identity = AAZObjectType( + flags={"client_flatten": True}, + ) _element.key_name = AAZStrType( serialized_name="keyName", ) @@ -283,6 +291,26 @@ def _build_schema_on_200(cls): serialized_name="userAssignedIdentity", ) + geo_data_replication = cls._schema_on_200.properties.geo_data_replication + geo_data_replication.locations = AAZListType() + geo_data_replication.max_replication_lag_duration_in_seconds = AAZIntType( + serialized_name="maxReplicationLagDurationInSeconds", + ) + + locations = cls._schema_on_200.properties.geo_data_replication.locations + locations.Element = AAZObjectType() + + _element = cls._schema_on_200.properties.geo_data_replication.locations.Element + _element.cluster_arm_id = AAZStrType( + serialized_name="clusterArmId", + ) + _element.location_name = AAZStrType( + serialized_name="locationName", + ) + _element.role_type = AAZStrType( + serialized_name="roleType", + ) + private_endpoint_connections = cls._schema_on_200.properties.private_endpoint_connections private_endpoint_connections.Element = AAZObjectType() diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/action.py b/src/azure-cli/azure/cli/command_modules/servicebus/action.py index 5a17b699531..1a51ba416df 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/action.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/action.py @@ -99,3 +99,32 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use if "action" not in IpRuleList: IpRuleList["action"] = 'Allow' return IpRuleList + +class AlertAddlocation(argparse._AppendAction): + def __call__(self, parser, namespace, values, option_string=None): + action = self.get_action(values, option_string) + super(AlertAddlocation, self).__call__(parser, namespace, action, option_string) + + def get_action(self, values, option_string): # pylint: disable=no-self-use + from azure.cli.core import CLIError + from azure.cli.core.azclierror import InvalidArgumentValueError + LocationObject = {} + for (k, v) in (x.split('=', 1) for x in values): + if k == 'location-name': + LocationObject["location_name"] = v + elif k == 'role-type': + LocationObject["role_type"] = v + elif k == 'cluster-arm-id': + LocationObject["cluster_arm_id"] = v + else: + raise InvalidArgumentValueError( + "Invalid Argument for:'{}' Only allowed arguments are 'location-name, role-type and cluster-arm-id'".format( + option_string)) + + if (LocationObject["location_name"] is None) or (LocationObject["role_type"] is None): + raise CLIError('location-name and role-type are mandatory properties') + + if "cluster_arm_id" not in LocationObject: + LocationObject["cluster_arm_id"] = '' + + return LocationObject diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/commands.py b/src/azure-cli/azure/cli/command_modules/servicebus/commands.py index acf83110e9e..c9b08f663f6 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/commands.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/commands.py @@ -55,3 +55,8 @@ def load_command_table(self, _): with self.command_group('servicebus namespace encryption', custom_command_type=sb_namespace_custom) as g: g.custom_command('add', 'cli_add_encryption') g.custom_command('remove', 'cli_remove_encryption') + +# Replica Location Region + with self.command_group('servicebus namespace replica', custom_command_type=sb_namespace_custom) as g: + g.custom_command('add', 'cli_add_location') + g.custom_command('remove', 'cli_remove_location') diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/operations/namespace_custom.py b/src/azure-cli/azure/cli/command_modules/servicebus/operations/namespace_custom.py index 1f9b2dcbe5c..af2434d471b 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/operations/namespace_custom.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/operations/namespace_custom.py @@ -20,11 +20,27 @@ def create_keyvault_object(col): return vault_object +def create_replica_location_object(col): + replica_location_object = {} + replica_location_object.update({ + "location_name": col['locationName'], + "role_type": col['roleType'] + }) + if 'clusterArmId' in col: + replica_location_object.update({ + "cluster_arm_id": col['clusterArmId'] + }) + return replica_location_object + + def create_servicebus_namespace(cmd, resource_group_name, namespace_name, location=None, tags=None, sku='Standard', capacity=None, zone_redundant=None, mi_user_assigned=None, mi_system_assigned=None, encryption_config=None, minimum_tls_version=None, disable_local_auth=None, alternate_name=None, public_network_access=None, - require_infrastructure_encryption=None, premium_messaging_partitions=None): + require_infrastructure_encryption=None, premium_messaging_partitions=None, + max_replication_lag_duration_in_seconds=None, + geo_data_replication_config=None + ): from azure.cli.command_modules.servicebus.aaz.latest.servicebus.namespace import Create user_assigned_identity = {} @@ -62,13 +78,6 @@ def create_servicebus_namespace(cmd, resource_group_name, namespace_name, locati "type": identity_type, "user_assigned_identities": user_assigned_identity }}) - else: - command_args_dict.update({ - "identity": { - "type": identity_type, - "user_assigned_identities": None - } - }) if encryption_config: command_args_dict.update({"encryption": { @@ -76,6 +85,18 @@ def create_servicebus_namespace(cmd, resource_group_name, namespace_name, locati "key_source": "Microsoft.KeyVault", "require_infrastructure_encryption": require_infrastructure_encryption }}) + + list_replication_object = [] + if geo_data_replication_config: + for val in geo_data_replication_config: + list_replication_object.append(val) + command_args_dict.update({ + "geo_data_replication": { + "locations": list_replication_object, + "max_replication_lag_duration_in_seconds": max_replication_lag_duration_in_seconds + } + }) + return Create(cli_ctx=cmd.cli_ctx)(command_args=command_args_dict) @@ -341,3 +362,52 @@ def set_georecovery_alias(cmd, resource_group_name, namespace_name, alias, "alias": alias } return Create(cli_ctx=cmd.cli_ctx)(command_args=command_arg_dict) + + +def cli_add_location(cmd, resource_group_name, namespace_name, geo_data_replication_config): + from azure.cli.command_modules.servicebus.aaz.latest.servicebus.namespace import Update + from azure.cli.command_modules.servicebus.aaz.latest.servicebus.namespace import Show + + servicebusnm = Show(cli_ctx=cmd.cli_ctx)(command_args={ + "resource_group": resource_group_name, + "namespace_name": namespace_name + }) + location_object = [] + for col in geo_data_replication_config: + location_object.append(col) + + if 'geoDataReplication' in servicebusnm: + for col in servicebusnm['geoDataReplication']['locations']: + replica_object = create_replica_location_object(col) + if replica_object not in location_object: + location_object.append(replica_object) + + return Update(cli_ctx=cmd.cli_ctx)(command_args={ + "resource_group": resource_group_name, + "namespace_name": namespace_name, + "locations": location_object + }) + + +def cli_remove_location(cmd, resource_group_name, namespace_name, geo_data_replication_config): + from azure.cli.command_modules.servicebus.aaz.latest.servicebus.namespace import Update + from azure.cli.command_modules.servicebus.aaz.latest.servicebus.namespace import Show + + servicebusnm = Show(cli_ctx=cmd.cli_ctx)(command_args={ + "resource_group": resource_group_name, + "namespace_name": namespace_name + }) + + replica_location_object = [] + + for col in servicebusnm['geoDataReplication']['locations']: + replica_object = create_replica_location_object(col) + replica_location_object.append(replica_object) + for col in geo_data_replication_config: + if col in replica_location_object: + replica_location_object.remove(col) + return Update(cli_ctx=cmd.cli_ctx)(command_args={ + "resource_group": resource_group_name, + "namespace_name": namespace_name, + "locations": replica_location_object + }) From 5faee204ac39bac1f0d8f90a3608b664b1965717 Mon Sep 17 00:00:00 2001 From: Shubham Chaudhari Date: Sun, 29 Sep 2024 13:28:55 +0530 Subject: [PATCH 2/4] updates' --- ...ivate_endpoint_connection_service_bus.yaml | 539 +-- .../cli/command_modules/servicebus/_help.py | 23 + .../latest/servicebus/namespace/_create.py | 18 +- .../latest/servicebus/namespace/_delete.py | 6 +- .../latest/servicebus/namespace/_exists.py | 6 +- .../aaz/latest/servicebus/namespace/_list.py | 10 +- .../aaz/latest/servicebus/namespace/_show.py | 6 +- .../latest/servicebus/namespace/_update.py | 14 +- .../servicebus/operations/namespace_custom.py | 6 + .../latest/recordings/test_sb_alias.yaml | 1391 ++++-- .../latest/recordings/test_sb_auth_rule.yaml | 711 +-- .../latest/recordings/test_sb_migration.yaml | 1773 ++++--- .../latest/recordings/test_sb_namespace.yaml | 2372 +++------- .../test_sb_namespace_encryption.yaml | 120 +- .../recordings/test_sb_namespace_msi.yaml | 4183 +++++++---------- .../latest/recordings/test_sb_network.yaml | 1114 ++--- .../recordings/test_sb_privateendpoint.yaml | 945 ++-- .../latest/recordings/test_sb_queue.yaml | 1214 ++--- .../latest/recordings/test_sb_rules.yaml | 482 +- .../recordings/test_sb_subscription.yaml | 1034 ++-- .../latest/recordings/test_sb_topic.yaml | 1110 +++-- .../test_servicebus_namespace_commands.py | 21 +- 22 files changed, 7933 insertions(+), 9165 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_service_bus.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_service_bus.yaml index c406d984fdb..669290a83b8 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_service_bus.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_service_bus.yaml @@ -1,7 +1,6 @@ interactions: - request: - body: '{"identity": {"type": "None"}, "location": "eastus", "sku": {"name": "Premium", - "tier": "Premium"}}' + body: '{"location": "eastus", "sku": {"name": "Premium", "tier": "Premium"}}' headers: Accept: - application/json @@ -12,27 +11,27 @@ interactions: Connection: - keep-alive Content-Length: - - '99' + - '69' Content-Type: - application/json ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-06-25T02:33:56.5258025Z","updatedAt":"2024-06-25T02:33:56.5258025Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:08:11.4433249Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '800' + - '948' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:33:56 GMT + - Sat, 28 Sep 2024 19:08:11 GMT expires: - '-1' pragma: @@ -44,15 +43,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 37f68571-c9ad-43ab-8e9d-20b2328173eb + - 7f721bec-5782-4edd-b6ea-38a2f5a32212 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G1|2024-06-25T02:33:56 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - EASTUS|EASTUS|G11|2024-09-28T19:08:11 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1198' x-msedge-ref: - - 'Ref A: 3EEAE47608564A54ABF6DD075F0E97C0 Ref B: MAA201060516035 Ref C: 2024-06-25T02:33:52Z' + - 'Ref A: C1206149132048EB8BDD87E5004A6E85 Ref B: OSA221030115011 Ref C: 2024-09-28T19:08:06Z' status: code: 201 message: Created @@ -70,71 +67,21 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2022-10-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-06-25T02:33:56.5258025Z","updatedAt":"2024-06-25T02:33:56.5258025Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' - headers: - cache-control: - - no-cache - content-length: - - '800' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 25 Jun 2024 02:33:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-cache: - - CONFIG_NOCACHE - x-content-type-options: - - nosniff - x-ms-messaging-activity-id: - - cac2b242-c18c-44b2-ad61-1574024b47d1 - x-ms-messaging-routing-id: - - EASTUS|EASTUS|G9|2024-06-25T02:33:58 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' - x-msedge-ref: - - 'Ref A: 887AF1B0D31641E6932AA5EF542423FB Ref B: MAA201060516035 Ref C: 2024-06-25T02:33:57Z' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - -g -n -l --sku - User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-06-25T02:33:56.5258025Z","updatedAt":"2024-06-25T02:33:56.5258025Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:08:11.4433249Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '800' + - '948' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:34:30 GMT + - Sat, 28 Sep 2024 19:08:12 GMT expires: - '-1' pragma: @@ -146,13 +93,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 7fbe353b-e9e2-4a17-b68a-bfb6307ec822 + - dfa9a687-c7e3-452a-9217-8ab41bd8eaf0 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G14|2024-06-25T02:34:30 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - EASTUS|EASTUS|G7|2024-09-28T19:08:12 x-msedge-ref: - - 'Ref A: D3C3CA88A55648BFB86B2C4B1C626D12 Ref B: MAA201060516035 Ref C: 2024-06-25T02:34:29Z' + - 'Ref A: 2824024325BE43388CFAB8DDFA61BFA5 Ref B: OSA221030115011 Ref C: 2024-09-28T19:08:11Z' status: code: 200 message: OK @@ -170,21 +115,21 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-06-25T02:33:56.5258025Z","updatedAt":"2024-06-25T02:33:56.5258025Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:08:11.4433249Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '800' + - '948' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:35:02 GMT + - Sat, 28 Sep 2024 19:08:42 GMT expires: - '-1' pragma: @@ -196,13 +141,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 8c7be1e6-b13a-4f94-9fe5-1c4b48712d2a + - 4f68065a-6b36-4934-a926-1ffb9065b5b9 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G13|2024-06-25T02:35:02 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - EASTUS|EASTUS|G9|2024-09-28T19:08:43 x-msedge-ref: - - 'Ref A: 449CB5A402DF438CB41D09C7757FFCEF Ref B: MAA201060516035 Ref C: 2024-06-25T02:35:01Z' + - 'Ref A: E7E3BD1EAB414186975581359A0BBE4E Ref B: OSA221030115011 Ref C: 2024-09-28T19:08:42Z' status: code: 200 message: OK @@ -220,21 +163,21 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-25T02:33:56.5258025Z","updatedAt":"2024-06-25T02:35:03.3757447Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:09:04.5292704Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '799' + - '945' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:35:34 GMT + - Sat, 28 Sep 2024 19:09:13 GMT expires: - '-1' pragma: @@ -246,13 +189,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 18aff5c5-540b-4e00-b9fa-55eac4fe1818 + - 4ba86583-1805-4338-ba4f-f260b78ee7be x-ms-messaging-routing-id: - - EASTUS|EASTUS|G14|2024-06-25T02:35:34 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - EASTUS|EASTUS|G14|2024-09-28T19:09:14 x-msedge-ref: - - 'Ref A: EFD888FBF9EB4628A67161A73D2C17BC Ref B: MAA201060516035 Ref C: 2024-06-25T02:35:33Z' + - 'Ref A: 4A78DD4C3EE04F3D91A5619633FE11C3 Ref B: OSA221030115011 Ref C: 2024-09-28T19:09:13Z' status: code: 200 message: OK @@ -270,12 +211,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-25T02:33:56.5258025Z","updatedAt":"2024-06-25T02:35:03.3757447Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:09:04.5292704Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache @@ -284,7 +225,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:35:38 GMT + - Sat, 28 Sep 2024 19:09:15 GMT expires: - '-1' pragma: @@ -296,13 +237,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 463ecb18-646c-424e-88c2-e3e47cdcc28c + - be29e1a7-f88e-4efd-a250-9ead216bb5ce x-ms-messaging-routing-id: - - EASTUS|EASTUS|G1|2024-06-25T02:35:39 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - EASTUS|EASTUS|G6|2024-09-28T19:09:16 x-msedge-ref: - - 'Ref A: 536BA0E14EAE41479BB7619A46DDB524 Ref B: MAA201060516011 Ref C: 2024-06-25T02:35:38Z' + - 'Ref A: 274DA0125A0E4BB9B3902DFEB5086138 Ref B: OSA221030115037 Ref C: 2024-09-28T19:09:15Z' status: code: 200 message: OK @@ -320,12 +259,12 @@ interactions: ParameterSetName: - --name -g --type User-Agent: - - python/3.9.5 (Windows-10-10.0.22631-SP0) AZURECLI/2.61.0 + - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.64.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateLinkResources?api-version=2021-06-01-preview response: body: - string: '{"value":[{"id":"subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateLinkResources/namespace","name":"namespace","type":"Microsoft.ServiceBus/namespaces/privateLinkResources","properties":{"groupId":"namespace","requiredMembers":["namespace"],"requiredZoneNames":["privatelink.servicebus.windows.net"]}}]}' + string: '{"value":[{"id":"subscriptions/326100e2-f69d-4268-8503-075374f62b6e/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateLinkResources/namespace","name":"namespace","type":"Microsoft.ServiceBus/namespaces/privateLinkResources","properties":{"groupId":"namespace","requiredMembers":["namespace"],"requiredZoneNames":["privatelink.servicebus.windows.net"]}}]}' headers: cache-control: - no-cache @@ -334,7 +273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:35:43 GMT + - Sat, 28 Sep 2024 19:09:18 GMT expires: - '-1' pragma: @@ -346,13 +285,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 635f8d80-d183-4552-b81a-ed0b79b1b7d2 + - c215e540-f18c-4f9c-86a4-02c0be074993 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G8|2024-06-25T02:35:44 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - EASTUS|EASTUS|G3|2024-09-28T19:09:18 x-msedge-ref: - - 'Ref A: B14D6C9150304F6A82F9062C06A11782 Ref B: MAA201060516011 Ref C: 2024-06-25T02:35:43Z' + - 'Ref A: 8504E593361A4F7DA38274D196CF7079 Ref B: OSA221030116029 Ref C: 2024-09-28T19:09:18Z' status: code: 200 message: OK @@ -370,21 +307,21 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_private_endpoint_connection_service_bus000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001","name":"test_private_endpoint_connection_service_bus000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_service_bus","date":"2024-06-25T02:33:42Z","module":"network","DateCreated":"2024-06-25T02:33:51Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001","name":"test_private_endpoint_connection_service_bus000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_service_bus","date":"2024-09-28T19:08:02Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '526' + - '451' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:35:48 GMT + - Sat, 28 Sep 2024 19:09:18 GMT expires: - '-1' pragma: @@ -395,10 +332,8 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' x-msedge-ref: - - 'Ref A: 24449398C14243B48EF8F13C63CE67C5 Ref B: MAA201060513053 Ref C: 2024-06-25T02:35:48Z' + - 'Ref A: 7712B499B6C04061ABE3EFAC9FA7B66A Ref B: TYO201100117031 Ref C: 2024-09-28T19:09:19Z' status: code: 200 message: OK @@ -422,38 +357,25 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002\",\r\n - \ \"etag\": \"W/\\\"1b3fe237-915b-4b10-819c-4c0583d08461\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"5357fe72-36af-4d4c-b0ee-394ccb3201b5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli-subnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003\",\r\n - \ \"etag\": \"W/\\\"1b3fe237-915b-4b10-819c-4c0583d08461\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: '{"name":"cli-vnet-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002","etag":"W/\"629bd91a-b092-413a-8dd3-f421524ec380\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"07f40854-728d-4573-826c-02a1551adf9d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"629bd91a-b092-413a-8dd3-f421524ec380\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2081f7b-495e-4ba7-b672-b25ee62f9a17?api-version=2022-01-01&t=638548797549670302&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=I8Qv65Bq4zew48v2spCMRUwrFUOXvM1ppqqgauQysnp4KuI2VT25m4taj2UkztJs08fNYqqTvURBzVeLirC187f6_qAwCPgLhlWh1sjvwTYNlK1pqifhJdP7CFw-zLm81xU9XD7jevrbAyu5HUzZhTrJoNFCWJjvHMlwAyEBKE0T5cPHrGnpS-XPkLzdUyx8O9vI18teqoiOXQGyWtGxV6vms5ax-hD4MzlwyIPLS-AN1K51MDDfXrZMG5R4Dl_SLcgFwpM3hXLxXnuPZse0AE5T1szsmoF_k8qxIK-1Sfur5GC04RRX4z8t_4I_mktZm4_Roif3SjT76xbI7NI5mA&h=8yQUbCdPIjdhH_RKril_Lp_OrkCRPG3SW9veaI_DxWo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/96ec009a-e945-4f46-9098-a8e82c00f2da?api-version=2022-01-01&t=638631473635695145&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HPaPL_7--JDhCl6ykxz76ClWJ45m64P-G-oWN3EPJabyGtTkGVa4pnZrl8aVEspB-EIfVKfRuiwEOcv8oXDrgkvsY_ClxIHuzhjD8q4q79j0-zz2sTC2liVZvfLvxnNMB1lM4YzRBcJC-I-_f3iSCpc8P6FehTsm6hwC2PtRjqW-cjtzMBQI1nqqog29Pv3hjeujIGFIb0Yw6TnNKHjuRNAmtFlM2RVTdWd04a1ir8Uh_q4zyfj8-Ku3EsxXhBE3XqTPXnRHMlXyVit1yCVvy23YuFKMQ7Sfyg5B0rEyI_cueX6Ix7KsVxjXgU09pEvxd9KhLsXzwi3yjijUErTEsQ&h=hIxtGQ65qW-VtD-Duw8JClie147xnQS62VG_zpIzMes cache-control: - no-cache content-length: - - '1335' + - '1072' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:35:54 GMT + - Sat, 28 Sep 2024 19:09:23 GMT expires: - '-1' pragma: @@ -465,13 +387,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f23ee415-e323-4d91-8bef-40b5bad112ea - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 7d3928f6-1203-4d48-8e0f-ef4950a230a5 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: 359DCCE8DAA54633A20AB4F7F2AB71EC Ref B: MAA201060513037 Ref C: 2024-06-25T02:35:51Z' + - 'Ref A: 9C1662BE7E7246F380638CEF4538E741 Ref B: TYO201151003023 Ref C: 2024-09-28T19:09:19Z' status: code: 201 message: Created @@ -489,21 +409,21 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2081f7b-495e-4ba7-b672-b25ee62f9a17?api-version=2022-01-01&t=638548797549670302&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=I8Qv65Bq4zew48v2spCMRUwrFUOXvM1ppqqgauQysnp4KuI2VT25m4taj2UkztJs08fNYqqTvURBzVeLirC187f6_qAwCPgLhlWh1sjvwTYNlK1pqifhJdP7CFw-zLm81xU9XD7jevrbAyu5HUzZhTrJoNFCWJjvHMlwAyEBKE0T5cPHrGnpS-XPkLzdUyx8O9vI18teqoiOXQGyWtGxV6vms5ax-hD4MzlwyIPLS-AN1K51MDDfXrZMG5R4Dl_SLcgFwpM3hXLxXnuPZse0AE5T1szsmoF_k8qxIK-1Sfur5GC04RRX4z8t_4I_mktZm4_Roif3SjT76xbI7NI5mA&h=8yQUbCdPIjdhH_RKril_Lp_OrkCRPG3SW9veaI_DxWo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/96ec009a-e945-4f46-9098-a8e82c00f2da?api-version=2022-01-01&t=638631473635695145&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HPaPL_7--JDhCl6ykxz76ClWJ45m64P-G-oWN3EPJabyGtTkGVa4pnZrl8aVEspB-EIfVKfRuiwEOcv8oXDrgkvsY_ClxIHuzhjD8q4q79j0-zz2sTC2liVZvfLvxnNMB1lM4YzRBcJC-I-_f3iSCpc8P6FehTsm6hwC2PtRjqW-cjtzMBQI1nqqog29Pv3hjeujIGFIb0Yw6TnNKHjuRNAmtFlM2RVTdWd04a1ir8Uh_q4zyfj8-Ku3EsxXhBE3XqTPXnRHMlXyVit1yCVvy23YuFKMQ7Sfyg5B0rEyI_cueX6Ix7KsVxjXgU09pEvxd9KhLsXzwi3yjijUErTEsQ&h=hIxtGQ65qW-VtD-Duw8JClie147xnQS62VG_zpIzMes response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:35:55 GMT + - Sat, 28 Sep 2024 19:09:23 GMT expires: - '-1' pragma: @@ -515,11 +435,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a8193012-fb7d-4487-9c9c-6b5e99e74364 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 3ccccd86-9e1c-44f9-9e8d-eb14ce930348 x-msedge-ref: - - 'Ref A: 1B2963FD60BE4F878E480CE2CACAF7F5 Ref B: MAA201060513037 Ref C: 2024-06-25T02:35:56Z' + - 'Ref A: D2082FA641894819A89693D8D3B676AB Ref B: TYO201151003023 Ref C: 2024-09-28T19:09:23Z' status: code: 200 message: OK @@ -537,21 +455,21 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2081f7b-495e-4ba7-b672-b25ee62f9a17?api-version=2022-01-01&t=638548797549670302&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=I8Qv65Bq4zew48v2spCMRUwrFUOXvM1ppqqgauQysnp4KuI2VT25m4taj2UkztJs08fNYqqTvURBzVeLirC187f6_qAwCPgLhlWh1sjvwTYNlK1pqifhJdP7CFw-zLm81xU9XD7jevrbAyu5HUzZhTrJoNFCWJjvHMlwAyEBKE0T5cPHrGnpS-XPkLzdUyx8O9vI18teqoiOXQGyWtGxV6vms5ax-hD4MzlwyIPLS-AN1K51MDDfXrZMG5R4Dl_SLcgFwpM3hXLxXnuPZse0AE5T1szsmoF_k8qxIK-1Sfur5GC04RRX4z8t_4I_mktZm4_Roif3SjT76xbI7NI5mA&h=8yQUbCdPIjdhH_RKril_Lp_OrkCRPG3SW9veaI_DxWo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/96ec009a-e945-4f46-9098-a8e82c00f2da?api-version=2022-01-01&t=638631473635695145&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HPaPL_7--JDhCl6ykxz76ClWJ45m64P-G-oWN3EPJabyGtTkGVa4pnZrl8aVEspB-EIfVKfRuiwEOcv8oXDrgkvsY_ClxIHuzhjD8q4q79j0-zz2sTC2liVZvfLvxnNMB1lM4YzRBcJC-I-_f3iSCpc8P6FehTsm6hwC2PtRjqW-cjtzMBQI1nqqog29Pv3hjeujIGFIb0Yw6TnNKHjuRNAmtFlM2RVTdWd04a1ir8Uh_q4zyfj8-Ku3EsxXhBE3XqTPXnRHMlXyVit1yCVvy23YuFKMQ7Sfyg5B0rEyI_cueX6Ix7KsVxjXgU09pEvxd9KhLsXzwi3yjijUErTEsQ&h=hIxtGQ65qW-VtD-Duw8JClie147xnQS62VG_zpIzMes response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:06 GMT + - Sat, 28 Sep 2024 19:09:34 GMT expires: - '-1' pragma: @@ -563,11 +481,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 244c0d5c-5a89-4f4e-80ff-8380d2cd95f7 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 4932b02e-4788-4fa6-9e2c-0c2806190d36 x-msedge-ref: - - 'Ref A: AF50ACFB3BF34612BBFA030E680E9EB7 Ref B: MAA201060513037 Ref C: 2024-06-25T02:36:07Z' + - 'Ref A: 75CE0B7CDA3A409296E7467B5276B40E Ref B: TYO201151003023 Ref C: 2024-09-28T19:09:33Z' status: code: 200 message: OK @@ -585,36 +501,23 @@ interactions: ParameterSetName: - -n -g --subnet-name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002\",\r\n - \ \"etag\": \"W/\\\"caf75b66-2579-436d-b167-ab50c216d3f3\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"5357fe72-36af-4d4c-b0ee-394ccb3201b5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli-subnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003\",\r\n - \ \"etag\": \"W/\\\"caf75b66-2579-436d-b167-ab50c216d3f3\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: '{"name":"cli-vnet-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002","etag":"W/\"a99c38cb-715b-4317-ad8e-6c02666694e0\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"07f40854-728d-4573-826c-02a1551adf9d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"a99c38cb-715b-4317-ad8e-6c02666694e0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '1337' + - '1074' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:08 GMT + - Sat, 28 Sep 2024 19:09:34 GMT etag: - - W/"caf75b66-2579-436d-b167-ab50c216d3f3" + - W/"a99c38cb-715b-4317-ad8e-6c02666694e0" expires: - '-1' pragma: @@ -626,11 +529,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f964e534-61d3-4db6-ab5c-3a12c1bec159 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - f4ad388e-863a-47cb-92d9-825b57b9855e x-msedge-ref: - - 'Ref A: 0A341702B2804A72ACE0FF6FC24BF140 Ref B: MAA201060513037 Ref C: 2024-06-25T02:36:09Z' + - 'Ref A: 48844776AFB74E8189019E9389E8A734 Ref B: TYO201151003023 Ref C: 2024-09-28T19:09:34Z' status: code: 200 message: OK @@ -648,28 +549,23 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"cli-subnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003\",\r\n - \ \"etag\": \"W/\\\"caf75b66-2579-436d-b167-ab50c216d3f3\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"a99c38cb-715b-4317-ad8e-6c02666694e0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '630' + - '557' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:13 GMT + - Sat, 28 Sep 2024 19:09:35 GMT etag: - - W/"caf75b66-2579-436d-b167-ab50c216d3f3" + - W/"a99c38cb-715b-4317-ad8e-6c02666694e0" expires: - '-1' pragma: @@ -681,11 +577,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 549f41b1-b1b4-4d32-9e84-52d4f51af118 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - ce574887-4ee7-4ec6-980a-8ace90a334c2 x-msedge-ref: - - 'Ref A: F407AE2CFA3345128F1EFBFD06FD5A86 Ref B: MAA201060516045 Ref C: 2024-06-25T02:36:13Z' + - 'Ref A: 984CF9EC27DE4700B0A464A6E82644EA Ref B: TYO201100116029 Ref C: 2024-09-28T19:09:35Z' status: code: 200 message: OK @@ -710,30 +604,25 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"cli-subnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003\",\r\n - \ \"etag\": \"W/\\\"589da861-517b-4c50-80aa-2a0337f2ebd2\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"34b8d966-0e08-4740-8c38-ae6a33f05112\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e4b31d5-b2cb-4cdf-8dac-4de2183120f8?api-version=2024-01-01&t=638548797762390530&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=LQKeqVhz0iLZzKUjDDDW9--yDXb2IUE2bjelrv4jHGLaEEt4CqeUSWVgo50Uo5dPhFTKpxp_Fs-zhKJ-gyhI-egi9s12zR36n02MLrk-2Rj27yNl37q6NHrU1RziwTbjmU7hQkfp2WfrZ4s-R_lvtvcRRRx7gyDn9EkKoj_JUpkzNPNNLpiVT2g2XvpbEa1O5QOTb55D2-_lfRewEdjhtJTDCt8aOs9P-zF5YUkIHWG1UiA8HL8n89jI-IBhGHvzXiONiIOBlS2qgFtep9NF0eyuA2qjLbeu0NvBq1M2aK1uAAEaHIje98iVi1pAMDG6y4KQQDqz1jajfOd_n4CQTg&h=Ilhd4hDSzV9WD3lyIvhymNS8DqkqEG4Uwf69Vd01o9w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2576ff8c-9e15-4230-a8ee-fcb08e397e24?api-version=2024-01-01&t=638631473779113698&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=S-tGwUrM4ElZPUeqAWsFlp58e6YD0L0-uTyleu2qsl70jTL16Q8QSPfdH2IQRdjHY1EzaMIIbBult36tA5rochkWFewUpORtyQXzHiJWC6_Vby4otNIGNZM3P0He5FBhQ2aJpw8Ca0MBppiFuLpw_HHwEMPlrpEUhx5eczNW1XSbOqooZ2JSxSw6xnHUx7AnyT4-k7VbNjQCVDBaMXj0Bhm5An2F629_2SFcuwgq3oQp3wuycNjc0pqjaErjdchIub6vZtOl-7EeQz09nxAz21BSfCwfi0mDeGC-6mU0cxmFz3iq7wKDO-oNEYmn4fnRlVlUts6C0u1skLVHUqNXiQ&h=80lfIDaQev_9t4Pg65gNGW021eihuDfmM8VeIxbnC84 cache-control: - no-cache content-length: - - '630' + - '557' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:16 GMT + - Sat, 28 Sep 2024 19:09:37 GMT expires: - '-1' pragma: @@ -745,13 +634,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - def25486-485c-4cf1-9033-30e877c57fb4 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 3c65bee9-b392-46b5-8a04-9d65306d27b5 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: D77061CD50214292BE0D00A3642BDC6B Ref B: MAA201060516045 Ref C: 2024-06-25T02:36:14Z' + - 'Ref A: 19A48175D52F4982882B7FEDE0D206E1 Ref B: TYO201100116029 Ref C: 2024-09-28T19:09:36Z' status: code: 200 message: OK @@ -769,21 +656,21 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6e4b31d5-b2cb-4cdf-8dac-4de2183120f8?api-version=2024-01-01&t=638548797762390530&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=LQKeqVhz0iLZzKUjDDDW9--yDXb2IUE2bjelrv4jHGLaEEt4CqeUSWVgo50Uo5dPhFTKpxp_Fs-zhKJ-gyhI-egi9s12zR36n02MLrk-2Rj27yNl37q6NHrU1RziwTbjmU7hQkfp2WfrZ4s-R_lvtvcRRRx7gyDn9EkKoj_JUpkzNPNNLpiVT2g2XvpbEa1O5QOTb55D2-_lfRewEdjhtJTDCt8aOs9P-zF5YUkIHWG1UiA8HL8n89jI-IBhGHvzXiONiIOBlS2qgFtep9NF0eyuA2qjLbeu0NvBq1M2aK1uAAEaHIje98iVi1pAMDG6y4KQQDqz1jajfOd_n4CQTg&h=Ilhd4hDSzV9WD3lyIvhymNS8DqkqEG4Uwf69Vd01o9w + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2576ff8c-9e15-4230-a8ee-fcb08e397e24?api-version=2024-01-01&t=638631473779113698&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=S-tGwUrM4ElZPUeqAWsFlp58e6YD0L0-uTyleu2qsl70jTL16Q8QSPfdH2IQRdjHY1EzaMIIbBult36tA5rochkWFewUpORtyQXzHiJWC6_Vby4otNIGNZM3P0He5FBhQ2aJpw8Ca0MBppiFuLpw_HHwEMPlrpEUhx5eczNW1XSbOqooZ2JSxSw6xnHUx7AnyT4-k7VbNjQCVDBaMXj0Bhm5An2F629_2SFcuwgq3oQp3wuycNjc0pqjaErjdchIub6vZtOl-7EeQz09nxAz21BSfCwfi0mDeGC-6mU0cxmFz3iq7wKDO-oNEYmn4fnRlVlUts6C0u1skLVHUqNXiQ&h=80lfIDaQev_9t4Pg65gNGW021eihuDfmM8VeIxbnC84 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:17 GMT + - Sat, 28 Sep 2024 19:09:38 GMT expires: - '-1' pragma: @@ -795,11 +682,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44403fba-2eff-419e-8f11-4e30d7098c64 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - a22a0e2c-2291-4f2a-9c98-34a04326058d x-msedge-ref: - - 'Ref A: 516CFDFA27CA49DF81700C37BCED3EA1 Ref B: MAA201060516045 Ref C: 2024-06-25T02:36:17Z' + - 'Ref A: 561B9820CD73435FA61B6B919EC438FD Ref B: TYO201100116029 Ref C: 2024-09-28T19:09:37Z' status: code: 200 message: OK @@ -817,28 +702,23 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"cli-subnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003\",\r\n - \ \"etag\": \"W/\\\"589da861-517b-4c50-80aa-2a0337f2ebd2\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"34b8d966-0e08-4740-8c38-ae6a33f05112\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '630' + - '557' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:20 GMT + - Sat, 28 Sep 2024 19:09:39 GMT etag: - - W/"589da861-517b-4c50-80aa-2a0337f2ebd2" + - W/"34b8d966-0e08-4740-8c38-ae6a33f05112" expires: - '-1' pragma: @@ -850,11 +730,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 93dd288c-360e-4890-a270-8be69d60fc7d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 9897d45d-6c53-44b7-9014-0ce278f40c56 x-msedge-ref: - - 'Ref A: C3F2F1E2DB734486A6B39E716682C9CA Ref B: MAA201060516045 Ref C: 2024-06-25T02:36:19Z' + - 'Ref A: 4343E050F50D4A6BB46D543D6915617C Ref B: TYO201100116029 Ref C: 2024-09-28T19:09:38Z' status: code: 200 message: OK @@ -873,21 +751,21 @@ interactions: - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id --group-id User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_private_endpoint_connection_service_bus000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001","name":"test_private_endpoint_connection_service_bus000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_service_bus","date":"2024-06-25T02:33:42Z","module":"network","DateCreated":"2024-06-25T02:33:51Z","Creator":"v-taoxuzeng@microsoft.com"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001","name":"test_private_endpoint_connection_service_bus000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_service_bus","date":"2024-09-28T19:08:02Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '526' + - '451' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:24 GMT + - Sat, 28 Sep 2024 19:09:40 GMT expires: - '-1' pragma: @@ -898,10 +776,8 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' x-msedge-ref: - - 'Ref A: B50997E5E6D34A038802521309E80E82 Ref B: MAA201060514029 Ref C: 2024-06-25T02:36:24Z' + - 'Ref A: 58ECAC5BF39A44B2AB99543E47783F76 Ref B: OSA221030113029 Ref C: 2024-09-28T19:09:40Z' status: code: 200 message: OK @@ -927,43 +803,26 @@ interactions: - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id --group-id User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cli-pe-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004\",\r\n - \ \"etag\": \"W/\\\"21aa6b09-e87b-4a53-8f0e-58deb8e38821\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"a6a1ca4f-fde4-4d1d-afe9-423c0fea3e1b\",\r\n \"privateLinkServiceConnections\": - [\r\n {\r\n \"name\": \"cli-pec-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004/privateLinkServiceConnections/cli-pec-000005\",\r\n - \ \"etag\": \"W/\\\"21aa6b09-e87b-4a53-8f0e-58deb8e38821\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006\",\r\n - \ \"groupIds\": [\r\n \"namespace\"\r\n ],\r\n - \ \"privateLinkServiceConnectionState\": {\r\n \"status\": - \"Approved\",\r\n \"description\": \"Auto Approved\",\r\n \"actionsRequired\": - \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n - \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n - \ \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003\"\r\n - \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000004.nic.bc3ddd9d-ae94-4de5-a3db-c6c75999ccf9\"\r\n - \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" + string: '{"name":"cli-pe-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004","etag":"W/\"410f79d1-3435-4a12-9b2d-326ff6baf367\"","type":"Microsoft.Network/privateEndpoints","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"60435c63-3b39-4847-9188-e12d29593c9a","privateLinkServiceConnections":[{"name":"cli-pec-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004/privateLinkServiceConnections/cli-pec-000005","etag":"W/\"410f79d1-3435-4a12-9b2d-326ff6baf367\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","groupIds":["namespace"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto + Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000004.nic.26c51a09-a7a9-4a18-bee7-a88f5d2c63fe"}],"customDnsConfigs":[]}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2eb1eb4-4cb7-4ae0-8593-a6ba6dab9c5c?api-version=2022-01-01&t=638548797911515064&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=NvoKOTO_hDAS9YjNXYquu1fwLrsw1aslnfBUadNoADoHOHY9Sqz-1Hc9Kg9E-pOgugVOf_epknxPhsRUGccMAtM6givaw-qmaVwXqQp6DnHXXWygLSqcx14AvnDqh9YwqbVPlE9-fixxW5tgZg-fv9qt9NYwV835M6IQ6RJnJebwlVxo4o4ex4EkdtU9jq1zvWAqkZTOoyFux9hFJIUBdzwxZNpBCCWZOtb-Z01H9OQ30BREk0GwGcUYbinPOQCMuXS4WjF6ih6Lm_0-pfz_p5u1SAWAfJXAAr19UtGg03Q8wvFVWj6QufhxeLunFiKSWUeqSms_kopKYmIay0m9Ow&h=dVaJvaqmmBVL-SK2Zelw6792rkL1Md_QD69RWUTnzmI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M cache-control: - no-cache content-length: - - '2192' + - '1823' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:30 GMT + - Sat, 28 Sep 2024 19:09:43 GMT expires: - '-1' pragma: @@ -975,13 +834,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3aa2e40d-45cb-42e8-9ee6-77a6f7c3146b - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - b4d9ab7b-61d5-4809-972b-1d7e6137d835 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: 8EEF02E401DD4CED85A2DFEAF50CC34A Ref B: MAA201060514023 Ref C: 2024-06-25T02:36:27Z' + - 'Ref A: 1563CD9176514EB0BC8F53F50F8E060C Ref B: TYO201151005011 Ref C: 2024-09-28T19:09:40Z' status: code: 201 message: Created @@ -1000,21 +857,21 @@ interactions: - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id --group-id User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2eb1eb4-4cb7-4ae0-8593-a6ba6dab9c5c?api-version=2022-01-01&t=638548797911515064&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=NvoKOTO_hDAS9YjNXYquu1fwLrsw1aslnfBUadNoADoHOHY9Sqz-1Hc9Kg9E-pOgugVOf_epknxPhsRUGccMAtM6givaw-qmaVwXqQp6DnHXXWygLSqcx14AvnDqh9YwqbVPlE9-fixxW5tgZg-fv9qt9NYwV835M6IQ6RJnJebwlVxo4o4ex4EkdtU9jq1zvWAqkZTOoyFux9hFJIUBdzwxZNpBCCWZOtb-Z01H9OQ30BREk0GwGcUYbinPOQCMuXS4WjF6ih6Lm_0-pfz_p5u1SAWAfJXAAr19UtGg03Q8wvFVWj6QufhxeLunFiKSWUeqSms_kopKYmIay0m9Ow&h=dVaJvaqmmBVL-SK2Zelw6792rkL1Md_QD69RWUTnzmI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:32 GMT + - Sat, 28 Sep 2024 19:09:44 GMT expires: - '-1' pragma: @@ -1026,11 +883,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6387f266-711f-46d9-aaee-4568294192c9 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - f34f0e38-5069-4186-8111-f94ecf887de8 x-msedge-ref: - - 'Ref A: 9252B82D423A485985A5A88FB8DC139A Ref B: MAA201060514023 Ref C: 2024-06-25T02:36:32Z' + - 'Ref A: FBA15046FCEA4761B676D3B68C529DD3 Ref B: TYO201151005011 Ref C: 2024-09-28T19:09:44Z' status: code: 200 message: OK @@ -1049,21 +904,21 @@ interactions: - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id --group-id User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2eb1eb4-4cb7-4ae0-8593-a6ba6dab9c5c?api-version=2022-01-01&t=638548797911515064&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=NvoKOTO_hDAS9YjNXYquu1fwLrsw1aslnfBUadNoADoHOHY9Sqz-1Hc9Kg9E-pOgugVOf_epknxPhsRUGccMAtM6givaw-qmaVwXqQp6DnHXXWygLSqcx14AvnDqh9YwqbVPlE9-fixxW5tgZg-fv9qt9NYwV835M6IQ6RJnJebwlVxo4o4ex4EkdtU9jq1zvWAqkZTOoyFux9hFJIUBdzwxZNpBCCWZOtb-Z01H9OQ30BREk0GwGcUYbinPOQCMuXS4WjF6ih6Lm_0-pfz_p5u1SAWAfJXAAr19UtGg03Q8wvFVWj6QufhxeLunFiKSWUeqSms_kopKYmIay0m9Ow&h=dVaJvaqmmBVL-SK2Zelw6792rkL1Md_QD69RWUTnzmI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:36:45 GMT + - Sat, 28 Sep 2024 19:09:54 GMT expires: - '-1' pragma: @@ -1075,11 +930,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 59f34a6e-8659-482b-a99d-2693750f7b41 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - ead62c8e-3081-49d5-bd84-6342075a49e3 x-msedge-ref: - - 'Ref A: ED6F8CDD776C4897BEAE540C6448E362 Ref B: MAA201060514023 Ref C: 2024-06-25T02:36:45Z' + - 'Ref A: 571D6EC005DA4BDCB1D8954C13DBDAEE Ref B: TYO201151005011 Ref C: 2024-09-28T19:09:55Z' status: code: 200 message: OK @@ -1098,21 +951,21 @@ interactions: - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id --group-id User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2eb1eb4-4cb7-4ae0-8593-a6ba6dab9c5c?api-version=2022-01-01&t=638548797911515064&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=NvoKOTO_hDAS9YjNXYquu1fwLrsw1aslnfBUadNoADoHOHY9Sqz-1Hc9Kg9E-pOgugVOf_epknxPhsRUGccMAtM6givaw-qmaVwXqQp6DnHXXWygLSqcx14AvnDqh9YwqbVPlE9-fixxW5tgZg-fv9qt9NYwV835M6IQ6RJnJebwlVxo4o4ex4EkdtU9jq1zvWAqkZTOoyFux9hFJIUBdzwxZNpBCCWZOtb-Z01H9OQ30BREk0GwGcUYbinPOQCMuXS4WjF6ih6Lm_0-pfz_p5u1SAWAfJXAAr19UtGg03Q8wvFVWj6QufhxeLunFiKSWUeqSms_kopKYmIay0m9Ow&h=dVaJvaqmmBVL-SK2Zelw6792rkL1Md_QD69RWUTnzmI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:37:07 GMT + - Sat, 28 Sep 2024 19:10:15 GMT expires: - '-1' pragma: @@ -1124,11 +977,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b8d3569f-0ac9-487e-8f9e-46d30bcadd75 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - abe7bf44-50bd-4b8a-ba82-96669e3ac866 x-msedge-ref: - - 'Ref A: 033927895436441A8B8F6C4B3D862688 Ref B: MAA201060514023 Ref C: 2024-06-25T02:37:07Z' + - 'Ref A: F491591453F849AD98531F031EC307EE Ref B: TYO201151005011 Ref C: 2024-09-28T19:10:15Z' status: code: 200 message: OK @@ -1147,21 +998,21 @@ interactions: - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id --group-id User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d2eb1eb4-4cb7-4ae0-8593-a6ba6dab9c5c?api-version=2022-01-01&t=638548797911515064&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=NvoKOTO_hDAS9YjNXYquu1fwLrsw1aslnfBUadNoADoHOHY9Sqz-1Hc9Kg9E-pOgugVOf_epknxPhsRUGccMAtM6givaw-qmaVwXqQp6DnHXXWygLSqcx14AvnDqh9YwqbVPlE9-fixxW5tgZg-fv9qt9NYwV835M6IQ6RJnJebwlVxo4o4ex4EkdtU9jq1zvWAqkZTOoyFux9hFJIUBdzwxZNpBCCWZOtb-Z01H9OQ30BREk0GwGcUYbinPOQCMuXS4WjF6ih6Lm_0-pfz_p5u1SAWAfJXAAr19UtGg03Q8wvFVWj6QufhxeLunFiKSWUeqSms_kopKYmIay0m9Ow&h=dVaJvaqmmBVL-SK2Zelw6792rkL1Md_QD69RWUTnzmI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:37:48 GMT + - Sat, 28 Sep 2024 19:10:55 GMT expires: - '-1' pragma: @@ -1173,11 +1024,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 31768fc3-5368-4598-971b-3cee22d74aa0 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 77ef090c-2744-43f0-b689-b859bdffcd8a x-msedge-ref: - - 'Ref A: A5378A041F8942A783600BD052F269EB Ref B: MAA201060514023 Ref C: 2024-06-25T02:37:48Z' + - 'Ref A: CAE1FB82B46B4DEE82B8BD21D27C4530 Ref B: TYO201151005011 Ref C: 2024-09-28T19:10:55Z' status: code: 200 message: OK @@ -1196,43 +1045,23 @@ interactions: - -g -n --vnet-name --subnet --connection-name --private-connection-resource-id --group-id User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cli-pe-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004\",\r\n - \ \"etag\": \"W/\\\"00838181-0bff-4542-bc0c-aad7f3e5e36d\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"a6a1ca4f-fde4-4d1d-afe9-423c0fea3e1b\",\r\n \"privateLinkServiceConnections\": - [\r\n {\r\n \"name\": \"cli-pec-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004/privateLinkServiceConnections/cli-pec-000005\",\r\n - \ \"etag\": \"W/\\\"00838181-0bff-4542-bc0c-aad7f3e5e36d\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006\",\r\n - \ \"groupIds\": [\r\n \"namespace\"\r\n ],\r\n - \ \"privateLinkServiceConnectionState\": {\r\n \"status\": - \"Approved\",\r\n \"description\": \"Auto-Approved\",\r\n \"actionsRequired\": - \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n - \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n - \ \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003\"\r\n - \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000004.nic.bc3ddd9d-ae94-4de5-a3db-c6c75999ccf9\"\r\n - \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": - \"cli-test-resource-000006.servicebus.windows.net\",\r\n \"ipAddresses\": - [\r\n \"10.0.0.4\"\r\n ]\r\n }\r\n ]\r\n }\r\n}" + string: '{"name":"cli-pe-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004","etag":"W/\"821cb5ba-48d1-4a2e-bd3c-3607f11c440e\"","type":"Microsoft.Network/privateEndpoints","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"60435c63-3b39-4847-9188-e12d29593c9a","privateLinkServiceConnections":[{"name":"cli-pec-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004/privateLinkServiceConnections/cli-pec-000005","etag":"W/\"821cb5ba-48d1-4a2e-bd3c-3607f11c440e\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","groupIds":["namespace"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000004.nic.26c51a09-a7a9-4a18-bee7-a88f5d2c63fe"}],"customDnsConfigs":[{"fqdn":"cli-test-resource-000006.servicebus.windows.net","ipAddresses":["10.0.0.4"]}]}}' headers: cache-control: - no-cache content-length: - - '2344' + - '1909' content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:37:49 GMT + - Sat, 28 Sep 2024 19:10:55 GMT etag: - - W/"00838181-0bff-4542-bc0c-aad7f3e5e36d" + - W/"821cb5ba-48d1-4a2e-bd3c-3607f11c440e" expires: - '-1' pragma: @@ -1244,11 +1073,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c12f59da-2d09-4bbe-ade7-f3ba95a0c8f4 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 57ebce6f-8068-4e41-b786-28b43bf5ebb9 x-msedge-ref: - - 'Ref A: 813543D1BC2A49BD867B90CDD066FE2E Ref B: MAA201060514023 Ref C: 2024-06-25T02:37:49Z' + - 'Ref A: 1CE186B2CC554DF3B186AA6821304178 Ref B: TYO201151005011 Ref C: 2024-09-28T19:10:56Z' status: code: 200 message: OK @@ -1266,12 +1093,12 @@ interactions: ParameterSetName: - --name -g --type User-Agent: - - python/3.9.5 (Windows-10-10.0.22631-SP0) AZURECLI/2.61.0 + - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.64.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections?api-version=2021-06-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4ca03b34-804a-4da7-8728-4717b51b1b4b","name":"4ca03b34-804a-4da7-8728-4717b51b1b4b","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1","name":"4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}]}' headers: cache-control: - no-cache @@ -1280,7 +1107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:37:54 GMT + - Sat, 28 Sep 2024 19:10:57 GMT expires: - '-1' pragma: @@ -1292,13 +1119,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - b8da1835-6a40-43be-a7aa-98403ad43314 + - f39aa259-26e5-4098-a6fb-49962acd7640 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G1|2024-06-25T02:37:54 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - EASTUS|EASTUS|G13|2024-09-28T19:10:58 x-msedge-ref: - - 'Ref A: 41C969858E804144945A683627F648B1 Ref B: MAA201060516023 Ref C: 2024-06-25T02:37:53Z' + - 'Ref A: 472C1A1A6F84454E8A595CD9AB8E755A Ref B: OSA221030115027 Ref C: 2024-09-28T19:10:57Z' status: code: 200 message: OK @@ -1316,12 +1141,12 @@ interactions: ParameterSetName: - --name -g --resource-name --type User-Agent: - - python/3.9.5 (Windows-10-10.0.22631-SP0) AZURECLI/2.61.0 + - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.64.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4ca03b34-804a-4da7-8728-4717b51b1b4b?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4ca03b34-804a-4da7-8728-4717b51b1b4b","name":"4ca03b34-804a-4da7-8728-4717b51b1b4b","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1","name":"4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' headers: cache-control: - no-cache @@ -1330,7 +1155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 25 Jun 2024 02:37:57 GMT + - Sat, 28 Sep 2024 19:10:58 GMT expires: - '-1' pragma: @@ -1342,13 +1167,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 6e7e0741-e139-43cb-8fee-8424ba2f8a70 + - 38d3197d-6932-447c-b24a-90dd10aa9e2a x-ms-messaging-routing-id: - - EASTUS|EASTUS|G7|2024-06-25T02:37:58 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - EASTUS|EASTUS|G8|2024-09-28T19:10:59 x-msedge-ref: - - 'Ref A: 0E47CF2EAA2C451DB1ECDEEE9D89F5DD Ref B: MAA201060513023 Ref C: 2024-06-25T02:37:57Z' + - 'Ref A: 8BC2B31DBCCE4667899862A1E878DB87 Ref B: TYO201100113009 Ref C: 2024-09-28T19:10:58Z' status: code: 200 message: OK @@ -1368,21 +1191,21 @@ interactions: ParameterSetName: - --name -g --resource-name --type -y User-Agent: - - python/3.9.5 (Windows-10-10.0.22631-SP0) AZURECLI/2.61.0 + - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.64.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4ca03b34-804a-4da7-8728-4717b51b1b4b?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1?api-version=2021-06-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4ca03b34-804a-4da7-8728-4717b51b1b4b/operationStatus/4ca03b34-804a-4da7-8728-4717b51b1b4b?api-version=2021-06-01-preview&operationType=Delete&t=638548798828067310&c=MIIHpTCCBo2gAwIBAgITfwNAzkFewm_NciphkAAEA0DOQTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjQwNTE3MTkyMjQwWhcNMjUwNTEyMTkyMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJuJT5HwtZYeMETB2FErJ9p7P7i0j5K1z_6Q8ubSfyaHW5BXsFmRWgdTUjKJeDSJeyiDXrTUG_vHsfl5LFuBUd0wRJdi6qPSdJBdjtQBJeEuHnufrh29AhuQ3GWJDrfdtarbHmIM-iXChLaLDQRvAyrn53r4TLJtSXo-E1Nrko3diGh5O-pU8z8JNR1eM_KSRpMlbaKuCB6O4iL0UDcKoYasw64KhNhDeBWLNuZeFBOZlFiurb2p7OZLyPrCVo9R7w5IOOIJ1by-Z8xXliKu4y8En6XZW4zydhykuZhlt1QXtLV_wQlqMBqHzqniOg0cFlPxbHSUfAw3EPoQWdvzZzUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBSkfu1z-bxmu3Ewf496cDhz0adszDAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAGTAsFHn-v_Myc5P-Oa3IJEoH6iGQLYP4rMw8VHz6mNtg8tKrt7uCKm8hnXaILxDW53ybQpLCrIkir-vEkIZRaG_S7xsSov4PJ14t7p21zw25PTidIeFY3Kdx4uG8vhZBZ6nkgAOPe6v-VA7WmYBikI6El7jpz1MaRJMtqxJQIEXw_PbacRK7lughh6X2XvVv0LbV5_jSkYanML03gsTTOQItymOtXsNk0sKM8rhG4XBRFy8vSDa9vBXfWHw3S2-ZvYKpnaklc8_16F4aVu2cPRlAXwaG6XJGkkwl1ClCALQlYxeUWeobHFi0RpMZDprs7h6rHmFARmjrWRf_3vnxqg&s=Ai6yMHtPY_VXNhn6BPjXXPclNN9ukqdGs7PXZZo0uu_QKbNPvFmAPp928925zXqxJiBhNEFIu-EG3urvpTCWAvhiO_NAiLAz7eOnekIoBIuR3m1mnUyyguwkUMWP9UuDpeuLbVn7oOMwJ3fGvRmP5Gbbqr0AbGB7TCQFu37682D18Vcvv1HFa6KlvbqIt1WBwOnwdHjpL61sBX3uOZPH_ZC3YngKX_KUFQakn4K5EaV1cS2drI82HdkqEVlqkT_082GINzTVE2um1klTXr9vcFqbXYgqPXj8uQv4hxKffdkxKPpm_P3lh4UxBMBshcjAdHaKxVJwYPKFmIvjYaEM-g&h=P_925YGHzXcLM_TyOT93NGuNzDPSJyeZ_0kyYdHAtmk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1/operationStatus/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1?api-version=2021-06-01-preview&operationType=Delete&t=638631474610150971&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=OAwHb5L0AqzNlgpFDGpnKTzOto1AQ7eqLhWWo_lIOz-WhjuqNOqUw649Hpey7QFT3AV0nYGdk9uP59caWUkVEmqbsW6UqYCwrZCH6TMZeyOBDf3mj0Bx7QuoRqakdXGq-kvQDTTacc3HLdbYvBTNg5byid1vQ4SIz2xTuKaaJmIhvfRkDA9WxVkXVFOVbiT2pa8LhoOHMaLWbZYZRHGbrjf0qRO6md-gQUAhft3LDUHj4zjR02OE7MMJw3_MyThs_wdQDrjcZCqNkFZsWKj4fFnkR4DtzgxNFWJKTNHicsxfbh7H_lQQrtQXGq2LES2LvzwJZu9k6pOEWUNiafJz6Q&h=bASXf6o2lDsWB0Z9itFoOH0KkkCFZS-glvInhomO5kg cache-control: - no-cache content-length: - '0' date: - - Tue, 25 Jun 2024 02:38:02 GMT + - Sat, 28 Sep 2024 19:11:00 GMT expires: - '-1' pragma: @@ -1394,15 +1217,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000004640 + - 00000001-0000-0000-0002-000000006456 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G5|2024-06-25T02:38:02 + - EASTUS|EASTUS|G9|2024-09-28T19:11:00 x-ms-ratelimit-remaining-subscription-deletes: - - '199' - x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '14999' x-msedge-ref: - - 'Ref A: 33123BE830ED4E4881BBD36D02700B09 Ref B: MAA201060514037 Ref C: 2024-06-25T02:38:01Z' + - 'Ref A: CDB3FBD349DA43C0988DE7282C54F695 Ref B: OSA221030113037 Ref C: 2024-09-28T19:10:59Z' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/_help.py b/src/azure-cli/azure/cli/command_modules/servicebus/_help.py index f3f8577156b..45942507327 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/_help.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/_help.py @@ -329,6 +329,29 @@ crafted: true """ +helps['servicebus namespace replica'] = """ +type: group +short-summary: Manage servicebus namespace replicas. +""" + +helps['servicebus namespace replica add'] = """ +type: command +short-summary: Add one or more Replica properties to a namespace. +examples: + - name: Add one or more Replica properties to a namespace. + text: | + az servicebus namespace replica add --namespace-name mynamespace -g MyResourceGroup --geo-data-replication-config role-type=Secondary location-name=mylocation +""" + +helps['servicebus namespace replica remove'] = """ +type: command +short-summary: Remove one or more Replica properties to a namespace. +examples: + - name: Remove one or more Replica properties to a namespace. + text: | + az servicebus namespace replica remove --namespace-name mynamespace -g MyResourceGroup --geo-data-replication-config role-type=Secondary location-name=mylocation +""" + helps['servicebus queue'] = """ type: group short-summary: Manage Azure Service Bus Queue and Authorization Rule diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_create.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_create.py index 1b93c322f22..1f974172f01 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_create.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_create.py @@ -379,7 +379,7 @@ def content(self): typ=AAZObjectType, typ_kwargs={"flags": {"required": True, "client_flatten": True}} ) - _builder.set_prop("identity", AAZObjectType, ".identity", typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("identity", AAZObjectType, ".identity") _builder.set_prop("location", AAZStrType, ".location", typ_kwargs={"flags": {"required": True}}) _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("sku", AAZObjectType, ".sku") @@ -398,7 +398,7 @@ def content(self): if properties is not None: properties.set_prop("alternateName", AAZStrType, ".alternate_name") properties.set_prop("disableLocalAuth", AAZBoolType, ".disable_local_auth") - properties.set_prop("encryption", AAZObjectType, ".encryption", typ_kwargs={"flags": {"client_flatten": True}}) + properties.set_prop("encryption", AAZObjectType, ".encryption") properties.set_prop("geoDataReplication", AAZObjectType, ".geo_data_replication") properties.set_prop("minimumTlsVersion", AAZStrType, ".minimum_tls_version") properties.set_prop("premiumMessagingPartitions", AAZIntType, ".premium_messaging_partitions") @@ -418,7 +418,7 @@ def content(self): _elements = _builder.get(".properties.encryption.keyVaultProperties[]") if _elements is not None: - _elements.set_prop("identity", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _elements.set_prop("identity", AAZObjectType) _elements.set_prop("keyName", AAZStrType, ".key_name") _elements.set_prop("keyVaultUri", AAZStrType, ".key_vault_uri") _elements.set_prop("keyVersion", AAZStrType, ".key_version") @@ -498,9 +498,7 @@ def _build_schema_on_200_201(cls): _schema_on_200_201.id = AAZStrType( flags={"read_only": True}, ) - _schema_on_200_201.identity = AAZObjectType( - flags={"client_flatten": True}, - ) + _schema_on_200_201.identity = AAZObjectType() _schema_on_200_201.location = AAZStrType( flags={"required": True}, ) @@ -559,9 +557,7 @@ def _build_schema_on_200_201(cls): properties.disable_local_auth = AAZBoolType( serialized_name="disableLocalAuth", ) - properties.encryption = AAZObjectType( - flags={"client_flatten": True}, - ) + properties.encryption = AAZObjectType() properties.geo_data_replication = AAZObjectType( serialized_name="geoDataReplication", ) @@ -615,9 +611,7 @@ def _build_schema_on_200_201(cls): key_vault_properties.Element = AAZObjectType() _element = cls._schema_on_200_201.properties.encryption.key_vault_properties.Element - _element.identity = AAZObjectType( - flags={"client_flatten": True}, - ) + _element.identity = AAZObjectType() _element.key_name = AAZStrType( serialized_name="keyName", ) diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_delete.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_delete.py index 61b82adf9b9..8eb996cd547 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_delete.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_delete.py @@ -22,9 +22,9 @@ class Delete(AAZCommand): """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-01-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2023-01-01-preview"], ] } @@ -147,7 +147,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-01-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_exists.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_exists.py index 1795506874d..da463add888 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_exists.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_exists.py @@ -19,9 +19,9 @@ class Exists(AAZCommand): """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-01-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.servicebus/checknameavailability", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.servicebus/checknameavailability", "2023-01-01-preview"], ] } @@ -108,7 +108,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-01-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_list.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_list.py index 69a8551c1d1..f6f11d193a4 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_list.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_list.py @@ -25,10 +25,10 @@ class List(AAZCommand): """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-01-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/providers/microsoft.servicebus/namespaces", "2022-10-01-preview"], - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/providers/microsoft.servicebus/namespaces", "2023-01-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces", "2023-01-01-preview"], ] } @@ -117,7 +117,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-01-01-preview", required=True, ), } @@ -383,7 +383,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-01-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_show.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_show.py index 27c134db1e8..347d17570cc 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_show.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_show.py @@ -22,9 +22,9 @@ class Show(AAZCommand): """ _aaz_info = { - "version": "2022-10-01-preview", + "version": "2023-01-01-preview", "resources": [ - ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2022-10-01-preview"], + ["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/microsoft.servicebus/namespaces/{}", "2023-01-01-preview"], ] } @@ -125,7 +125,7 @@ def url_parameters(self): def query_parameters(self): parameters = { **self.serialize_query_param( - "api-version", "2022-10-01-preview", + "api-version", "2023-01-01-preview", required=True, ), } diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_update.py b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_update.py index 2ac84812e61..6bcbb73a427 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_update.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/aaz/latest/servicebus/namespace/_update.py @@ -536,7 +536,7 @@ def _update_instance(self, instance): value=instance, typ=AAZObjectType ) - _builder.set_prop("identity", AAZObjectType, ".identity", typ_kwargs={"flags": {"client_flatten": True}}) + _builder.set_prop("identity", AAZObjectType, ".identity") _builder.set_prop("properties", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) _builder.set_prop("sku", AAZObjectType) _builder.set_prop("tags", AAZDictType, ".tags") @@ -554,7 +554,7 @@ def _update_instance(self, instance): if properties is not None: properties.set_prop("alternateName", AAZStrType, ".alternate_name") properties.set_prop("disableLocalAuth", AAZBoolType, ".disable_local_auth") - properties.set_prop("encryption", AAZObjectType, ".encryption", typ_kwargs={"flags": {"client_flatten": True}}) + properties.set_prop("encryption", AAZObjectType, ".encryption") properties.set_prop("geoDataReplication", AAZObjectType) properties.set_prop("minimumTlsVersion", AAZStrType, ".minimum_tls_version") properties.set_prop("premiumMessagingPartitions", AAZIntType, ".premium_messaging_partitions") @@ -573,7 +573,7 @@ def _update_instance(self, instance): _elements = _builder.get(".properties.encryption.keyVaultProperties[]") if _elements is not None: - _elements.set_prop("identity", AAZObjectType, typ_kwargs={"flags": {"client_flatten": True}}) + _elements.set_prop("identity", AAZObjectType) _elements.set_prop("keyName", AAZStrType, ".key_name") _elements.set_prop("keyVaultUri", AAZStrType, ".key_vault_uri") _elements.set_prop("keyVersion", AAZStrType, ".key_version") @@ -666,9 +666,7 @@ def _build_schema_sb_namespace_read(cls, _schema): sb_namespace_read.id = AAZStrType( flags={"read_only": True}, ) - sb_namespace_read.identity = AAZObjectType( - flags={"client_flatten": True}, - ) + sb_namespace_read.identity = AAZObjectType() sb_namespace_read.location = AAZStrType( flags={"required": True}, ) @@ -727,9 +725,7 @@ def _build_schema_sb_namespace_read(cls, _schema): properties.disable_local_auth = AAZBoolType( serialized_name="disableLocalAuth", ) - properties.encryption = AAZObjectType( - flags={"client_flatten": True}, - ) + properties.encryption = AAZObjectType() properties.geo_data_replication = AAZObjectType( serialized_name="geoDataReplication", ) diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/operations/namespace_custom.py b/src/azure-cli/azure/cli/command_modules/servicebus/operations/namespace_custom.py index af2434d471b..61ea8db208b 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/operations/namespace_custom.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/operations/namespace_custom.py @@ -66,6 +66,12 @@ def create_servicebus_namespace(cmd, resource_group_name, namespace_name, locati if mi_system_assigned: identity_type = SYSTEM + command_args_dict.update({ + "identity": { + "type": identity_type, + "user_assigned_identities": None + } + }) if mi_user_assigned: if mi_system_assigned: diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_alias.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_alias.yaml index 99731cdb122..959add06ccc 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_alias.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_alias.yaml @@ -1,8 +1,7 @@ interactions: - request: - body: '{"identity": {"type": "None"}, "location": "SouthCentralUS", "sku": {"name": - "Premium", "tier": "Premium"}, "tags": {"{tag2: value2,": "", "tag1: value1}": - ""}}' + body: '{"location": "SouthCentralUS", "sku": {"name": "Premium", "tier": "Premium"}, + "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' headers: Accept: - application/json @@ -13,50 +12,49 @@ interactions: Connection: - keep-alive Content-Length: - - '160' + - '130' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-03T10:03:45.383Z","updatedAt":"2023-05-03T10:03:45.383Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T20:13:11.3489061Z","updatedAt":"2024-09-28T20:13:11.3489061Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '774' + - '935' content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:03:47 GMT + - Sat, 28 Sep 2024 20:13:11 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 3d04d6df-a14a-4d77-9743-e6d5fc71bb54 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G1|2024-09-28T20:13:11 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: D4EC309630D446B28DA0C8C9AFFAFA23 Ref B: OSA221030115017 Ref C: 2024-09-28T20:13:07Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -71,39 +69,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-03T10:03:45.383Z","updatedAt":"2023-05-03T10:03:45.383Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T20:13:11.3489061Z","updatedAt":"2024-09-28T20:13:11.3489061Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '774' + - '935' content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:04:18 GMT + - Sat, 28 Sep 2024 20:13:12 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4295d56d-4099-49d3-afdd-5c490d56f59d + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G14|2024-09-28T20:13:12 + x-msedge-ref: + - 'Ref A: 330D55D57A3D40C4ACB38B2D177D7C2A Ref B: OSA221030115017 Ref C: 2024-09-28T20:13:12Z' status: code: 200 message: OK @@ -121,39 +118,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-03T10:03:45.383Z","updatedAt":"2023-05-03T10:03:45.383Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T20:13:11.3489061Z","updatedAt":"2024-09-28T20:13:11.3489061Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '774' + - '935' content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:04:48 GMT + - Sat, 28 Sep 2024 20:13:43 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9d20bcba-4196-460f-a8a4-18dac1579f2f + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G3|2024-09-28T20:13:43 + x-msedge-ref: + - 'Ref A: FDD00F071A6140E680F2F8FAD87ED0CD Ref B: OSA221030115017 Ref C: 2024-09-28T20:13:43Z' status: code: 200 message: OK @@ -171,39 +167,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-03T10:03:45.383Z","updatedAt":"2023-05-03T10:04:58.023Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T20:13:11.3489061Z","updatedAt":"2024-09-28T20:14:13.0378576Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '772' + - '932' content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:05:20 GMT + - Sat, 28 Sep 2024 20:14:13 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - fec0240f-2875-4a7f-8072-42bf0fd578dc + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G14|2024-09-28T20:14:14 + x-msedge-ref: + - 'Ref A: EDEF300D36DB44D387F82B345D790940 Ref B: OSA221030115017 Ref C: 2024-09-28T20:14:13Z' status: code: 200 message: OK @@ -221,46 +216,44 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-03T10:03:45.383Z","updatedAt":"2023-05-03T10:04:58.023Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T20:13:11.3489061Z","updatedAt":"2024-09-28T20:14:13.0378576Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '772' + - '932' content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:05:43 GMT + - Sat, 28 Sep 2024 20:14:15 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 8b9a9d5a-1153-414d-8362-ac1bbe129b75 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G2|2024-09-28T20:14:15 + x-msedge-ref: + - 'Ref A: 7BA407CBC2894CCDB0F1268D4D7A7E83 Ref B: TYO201100113037 Ref C: 2024-09-28T20:14:15Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "NorthCentralUS", "sku": {"name": - "Premium", "tier": "Premium"}, "tags": {"{tag2: value2,": "", "tag1: value1}": - ""}}' + body: '{"location": "NorthCentralUS", "sku": {"name": "Premium", "tier": "Premium"}, + "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' headers: Accept: - application/json @@ -271,47 +264,95 @@ interactions: Connection: - keep-alive Content-Length: - - '160' + - '130' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","name":"sb-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000003","createdAt":"2023-05-03T10:06:40.597Z","updatedAt":"2023-05-03T10:06:40.597Z","serviceBusEndpoint":"https://sb-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","name":"sb-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000003","serviceBusEndpoint":"https://sb-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T20:14:19.9081967Z","updatedAt":"2024-09-28T20:14:19Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '774' + - '927' content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:06:43 GMT + - Sat, 28 Sep 2024 20:14:19 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 917a8d71-d66b-4c40-ac07-a61c04942c9e + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G2|2024-09-28T20:14:20 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: B9E9CC4F95F44EFC8FC14F8777E9FD11 Ref B: OSA221030115027 Ref C: 2024-09-28T20:14:16Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --tags --sku + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","name":"sb-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000003","serviceBusEndpoint":"https://sb-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T20:14:19.9081967Z","updatedAt":"2024-09-28T20:14:19Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '927' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:14:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - f8250f53-5092-49ce-a674-4534906c43ec + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G1|2024-09-28T20:14:21 + x-msedge-ref: + - 'Ref A: 3FAC07EC7B354F399E99CB4303230F59 Ref B: OSA221030115027 Ref C: 2024-09-28T20:14:20Z' status: code: 200 message: OK @@ -329,39 +370,136 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","name":"sb-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000003","createdAt":"2023-05-03T10:06:40.597Z","updatedAt":"2023-05-03T10:07:56.69Z","serviceBusEndpoint":"https://sb-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","name":"sb-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000003","serviceBusEndpoint":"https://sb-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T20:14:19.9081967Z","updatedAt":"2024-09-28T20:14:19Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '771' + - '927' content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:08:30 GMT + - Sat, 28 Sep 2024 20:14:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - db50f1e7-a058-415e-88ad-55f8c0540926 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G1|2024-09-28T20:14:52 + x-msedge-ref: + - 'Ref A: E49A0553E9254D22A5B5E78DBA021B3E Ref B: OSA221030115027 Ref C: 2024-09-28T20:14:51Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --tags --sku + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","name":"sb-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000003","serviceBusEndpoint":"https://sb-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T20:14:19.9081967Z","updatedAt":"2024-09-28T20:14:19Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '927' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:15:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - c059ea35-4825-43c4-b7f1-3ea0fe59b753 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G0|2024-09-28T20:15:23 + x-msedge-ref: + - 'Ref A: D82F07277B014141AC85FDFFAB8BFB31 Ref B: OSA221030115027 Ref C: 2024-09-28T20:15:22Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --tags --sku + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","name":"sb-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000003","serviceBusEndpoint":"https://sb-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T20:14:19.9081967Z","updatedAt":"2024-09-28T20:15:24Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '924' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:15:53 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 0c4a3c21-164a-4b17-a610-8c0211b0f78b + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G1|2024-09-28T20:15:54 + x-msedge-ref: + - 'Ref A: A4618A0C476842F993DF7727B3067C09 Ref B: OSA221030115027 Ref C: 2024-09-28T20:15:53Z' status: code: 200 message: OK @@ -379,39 +517,38 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","name":"sb-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000003","createdAt":"2023-05-03T10:06:40.597Z","updatedAt":"2023-05-03T10:07:56.69Z","serviceBusEndpoint":"https://sb-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","name":"sb-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000003","serviceBusEndpoint":"https://sb-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T20:14:19.9081967Z","updatedAt":"2024-09-28T20:15:24Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '771' + - '924' content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:08:53 GMT + - Sat, 28 Sep 2024 20:15:54 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7fdb2efd-85d1-452d-ba4b-b6f3436fc117 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G3|2024-09-28T20:15:55 + x-msedge-ref: + - 'Ref A: 68ADB9173DB948E6B719FB1D26847050 Ref B: OSA221030113031 Ref C: 2024-09-28T20:15:54Z' status: code: 200 message: OK @@ -433,7 +570,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --rights User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000004?api-version=2022-01-01-preview response: @@ -447,23 +584,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:09:02 GMT + - Sat, 28 Sep 2024 20:16:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 88dff02d-ada6-44a2-bc01-c43eb416d5aa + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G7|2024-09-28T20:16:03 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 6EC14C7E300F479CA8B5CBF1DB855447 Ref B: OSA221030113011 Ref C: 2024-09-28T20:15:56Z' status: code: 200 message: OK @@ -481,12 +620,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/cliAutho000004","name":"cliAutho000004","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"southcentralus","properties":{"rights":["Send"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/cliAutho000004","name":"cliAutho000004","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"southcentralus","properties":{"rights":["Send"]}}' headers: cache-control: - no-cache @@ -495,21 +634,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:09:47 GMT + - Sat, 28 Sep 2024 20:16:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 34894132-cb95-407b-bd1b-27dd9e5d8dec + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G6|2024-09-28T20:16:05 + x-msedge-ref: + - 'Ref A: 4AA8CAF0C08141A295615CE4B4033C4F Ref B: OSA221030114025 Ref C: 2024-09-28T20:16:04Z' status: code: 200 message: OK @@ -531,7 +672,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/CheckNameAvailability?api-version=2022-10-01-preview response: @@ -545,26 +686,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:10:12 GMT + - Sat, 28 Sep 2024 20:16:05 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 93E1BA261EAB452D92147525BB2BA123 Ref B: OSA221030113019 Ref C: 2024-09-28T20:16:05Z' status: code: 200 message: OK @@ -586,7 +724,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name -a --partner-namespace User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -600,26 +738,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:10:22 GMT + - Sat, 28 Sep 2024 20:16:26 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 1E1540E4ACA749D78A54B474765032E9 Ref B: OSA221030113039 Ref C: 2024-09-28T20:16:06Z' status: code: 200 message: OK @@ -637,7 +772,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -651,24 +786,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:11:07 GMT + - Sat, 28 Sep 2024 20:16:27 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 54D2EFE931494C228D97D378A790200B Ref B: OSA221030113011 Ref C: 2024-09-28T20:16:27Z' status: code: 200 message: OK @@ -686,7 +818,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -700,24 +832,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:11:11 GMT + - Sat, 28 Sep 2024 20:16:30 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 43D4F9E3EAAB4C96B686E88B0F160DD2 Ref B: OSA221030113047 Ref C: 2024-09-28T20:16:28Z' status: code: 200 message: OK @@ -735,7 +864,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -749,24 +878,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:11:14 GMT + - Sat, 28 Sep 2024 20:16:31 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 431CF8C50352477E8C6878EB09EE300E Ref B: OSA221030116053 Ref C: 2024-09-28T20:16:30Z' status: code: 200 message: OK @@ -784,7 +910,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -798,24 +924,113 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:11:49 GMT + - Sat, 28 Sep 2024 20:17:03 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 69274DA0F0174439805C615D6834147D Ref B: TYO201151001023 Ref C: 2024-09-28T20:17:02Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus georecovery-alias show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --namespace-name --alias + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Accepted","partnerNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","role":"Primary","type":"MetadataReplication"}}' + headers: + cache-control: + - no-cache + content-length: + - '545' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:17:34 GMT + expires: + - '-1' + pragma: + - no-cache + server-sb: + - Service-Bus-Resource-Provider/CH3 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 68A232304EA54848A30A95743507559E Ref B: TYO201100115025 Ref C: 2024-09-28T20:17:33Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus georecovery-alias show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --namespace-name --alias + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Accepted","partnerNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","role":"Primary","type":"MetadataReplication"}}' + headers: + cache-control: + - no-cache + content-length: + - '545' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:18:05 GMT + expires: + - '-1' + pragma: + - no-cache + server-sb: + - Service-Bus-Resource-Provider/CH3 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2DD87DB758C8497C9FF29A5F252BFBF9 Ref B: OSA221030116021 Ref C: 2024-09-28T20:18:05Z' status: code: 200 message: OK @@ -833,7 +1048,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -847,24 +1062,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:12:22 GMT + - Sat, 28 Sep 2024 20:18:37 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C360316979594AB38BE0AB69C4253A4C Ref B: TYO201100115007 Ref C: 2024-09-28T20:18:36Z' status: code: 200 message: OK @@ -882,7 +1094,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005/authorizationRules/cliAutho000004?api-version=2022-10-01-preview response: @@ -897,24 +1109,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:12:25 GMT + - Sat, 28 Sep 2024 20:18:39 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 18C94CB4EC4147B1AF89719B570909A1 Ref B: OSA221030114009 Ref C: 2024-09-28T20:18:38Z' status: code: 200 message: OK @@ -934,12 +1143,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005/authorizationRules/cliAutho000004/listKeys?api-version=2022-10-01-preview response: body: - string: '{"aliasPrimaryConnectionString":"Endpoint=sb://clialiasazasxmgbhcmc.servicebus.windows.net/;SharedAccessKeyName=cliAutho000004;SharedAccessKey=WbeKCeIhJZLTeKksbFnbrOXX9m2nCb4Sq+ASbLxTcM8=","aliasSecondaryConnectionString":"Endpoint=sb://clialiasazasxmgbhcmc.servicebus.windows.net/;SharedAccessKeyName=cliAutho000004;SharedAccessKey=JyLVuLcVAIWFMJWce3MX4DWTeNpmJqzTO+ASbGp3afM=","primaryKey":"WbeKCeIhJZLTeKksbFnbrOXX9m2nCb4Sq+ASbLxTcM8=","secondaryKey":"JyLVuLcVAIWFMJWce3MX4DWTeNpmJqzTO+ASbGp3afM=","keyName":"cliAutho000004"}' + string: '{"aliasPrimaryConnectionString":"Endpoint=sb://clialiascitpgk7bqny7.servicebus.windows.net/;SharedAccessKeyName=cliAutho000004;SharedAccessKey=DRiX8imqfLsMI5QBLftqF3iaNyYI2MpcV+ASbGK1iLA=","aliasSecondaryConnectionString":"Endpoint=sb://clialiascitpgk7bqny7.servicebus.windows.net/;SharedAccessKeyName=cliAutho000004;SharedAccessKey=zPry4ALXb+aOceozCc5Z/dDrw+VOkI/hG+ASbEUhflw=","primaryKey":"DRiX8imqfLsMI5QBLftqF3iaNyYI2MpcV+ASbGK1iLA=","secondaryKey":"zPry4ALXb+aOceozCc5Z/dDrw+VOkI/hG+ASbEUhflw=","keyName":"cliAutho000004"}' headers: cache-control: - no-cache @@ -948,26 +1157,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:12:48 GMT + - Sat, 28 Sep 2024 20:18:40 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 1279F4A6047846B3A9D509894D8F3863 Ref B: OSA221030113045 Ref C: 2024-09-28T20:18:39Z' status: code: 200 message: OK @@ -985,7 +1191,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005/authorizationRules?api-version=2022-10-01-preview response: @@ -1001,24 +1207,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:13:15 GMT + - Sat, 28 Sep 2024 20:18:43 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 9745F5AE395449EA9E6144C62ED3BB44 Ref B: OSA221030114039 Ref C: 2024-09-28T20:18:42Z' status: code: 200 message: OK @@ -1038,7 +1241,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005/breakPairing?api-version=2022-10-01-preview response: @@ -1050,22 +1253,23 @@ interactions: content-length: - '0' date: - - Wed, 03 May 2023 10:13:38 GMT + - Sat, 28 Sep 2024 20:18:44 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: BDDF0772C6974C82874D8F02F4A6A9CB Ref B: TYO201151006009 Ref C: 2024-09-28T20:18:44Z' status: code: 200 message: OK @@ -1083,7 +1287,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -1097,24 +1301,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:13:41 GMT + - Sat, 28 Sep 2024 20:18:46 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: FDB2EFA3BA7A4533827A5BE23ADE8233 Ref B: TYO201151002023 Ref C: 2024-09-28T20:18:46Z' status: code: 200 message: OK @@ -1132,7 +1333,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -1146,24 +1347,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:14:35 GMT + - Sat, 28 Sep 2024 20:19:17 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B2810A2588AA4524A60B8B242AA4669A Ref B: OSA221030114051 Ref C: 2024-09-28T20:19:17Z' status: code: 200 message: OK @@ -1181,65 +1379,108 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Succeeded","partnerNamespace":"","role":"PrimaryNotReplicating","type":"MetadataReplication"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Accepted","partnerNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","role":"Primary","type":"MetadataReplication"}}' headers: cache-control: - no-cache content-length: - - '413' + - '545' content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:15:50 GMT + - Sat, 28 Sep 2024 20:19:48 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 492C11E04ECE404089825243E7900501 Ref B: OSA221030116039 Ref C: 2024-09-28T20:19:48Z' status: code: 200 message: OK - request: - body: '{"properties": {"partnerNamespace": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus georecovery-alias set + - servicebus georecovery-alias show Connection: - keep-alive - Content-Length: - - '187' - Content-Type: - - application/json ParameterSetName: - - --resource-group --namespace-name --alias --partner-namespace + - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) - method: PUT + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Accepted","partnerNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","role":"Primary","type":"MetadataReplication"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Succeeded","partnerNamespace":"","role":"PrimaryNotReplicating","type":"MetadataReplication"}}' + headers: + cache-control: + - no-cache + content-length: + - '413' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:20:20 GMT + expires: + - '-1' + pragma: + - no-cache + server-sb: + - Service-Bus-Resource-Provider/SN1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: BCA9509ADDE14C1987C3ADD2F2A635E9 Ref B: TYO201151002062 Ref C: 2024-09-28T20:20:19Z' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"partnerNamespace": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus georecovery-alias set + Connection: + - keep-alive + Content-Length: + - '187' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --namespace-name --alias --partner-namespace + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Accepted","partnerNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","role":"Primary","type":"MetadataReplication"}}' headers: cache-control: - no-cache @@ -1248,26 +1489,161 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:16:06 GMT + - Sat, 28 Sep 2024 20:20:39 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 148EFB67CA7F4E3D895BAF3E6FE64A94 Ref B: TYO201151004011 Ref C: 2024-09-28T20:20:20Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus georecovery-alias show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --namespace-name --alias + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Accepted","partnerNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","role":"Primary","type":"MetadataReplication"}}' + headers: + cache-control: + - no-cache + content-length: + - '545' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:20:40 GMT + expires: + - '-1' + pragma: + - no-cache + server-sb: + - Service-Bus-Resource-Provider/SN1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 32D59561216F4B47AD035A65080F76F3 Ref B: TYO201100115031 Ref C: 2024-09-28T20:20:39Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus georecovery-alias show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --namespace-name --alias + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Accepted","partnerNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","role":"Primary","type":"MetadataReplication"}}' + headers: + cache-control: + - no-cache + content-length: + - '545' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:21:11 GMT + expires: + - '-1' + pragma: + - no-cache + server-sb: + - Service-Bus-Resource-Provider/SN1 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: D8673D94D03D4C2EB3C9612D355E0F4F Ref B: TYO201100113047 Ref C: 2024-09-28T20:21:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus georecovery-alias show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --namespace-name --alias + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Accepted","partnerNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003","role":"Primary","type":"MetadataReplication"}}' + headers: + cache-control: + - no-cache + content-length: + - '545' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:21:43 GMT + expires: + - '-1' + pragma: + - no-cache + server-sb: + - Service-Bus-Resource-Provider/CH3 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 96EBA91292FB4418A6F906E4EF5837D5 Ref B: OSA221030116023 Ref C: 2024-09-28T20:21:42Z' status: code: 200 message: OK @@ -1285,7 +1661,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -1299,24 +1675,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:17:12 GMT + - Sat, 28 Sep 2024 20:22:14 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/DM2 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/DM2 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 53963EB7A7E041C79CF6D6758AE683A4 Ref B: OSA221030115009 Ref C: 2024-09-28T20:22:13Z' status: code: 200 message: OK @@ -1334,7 +1707,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -1348,24 +1721,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:17:45 GMT + - Sat, 28 Sep 2024 20:22:46 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 94D7359592CB4084B7BD3D13B417FE5F Ref B: OSA221030116049 Ref C: 2024-09-28T20:22:45Z' status: code: 200 message: OK @@ -1387,7 +1757,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003/disasterRecoveryConfigs/cliAlias000005/failover?api-version=2022-10-01-preview response: @@ -1399,22 +1769,23 @@ interactions: content-length: - '0' date: - - Wed, 03 May 2023 10:17:47 GMT + - Sat, 28 Sep 2024 20:22:47 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 575EDEA87036463FAB6E16B8C3AF5218 Ref B: OSA221030114039 Ref C: 2024-09-28T20:22:47Z' status: code: 200 message: OK @@ -1432,7 +1803,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -1446,24 +1817,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:18:06 GMT + - Sat, 28 Sep 2024 20:22:48 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 932176522DFA437AB116313830A6BD82 Ref B: OSA221030113029 Ref C: 2024-09-28T20:22:48Z' status: code: 200 message: OK @@ -1481,7 +1849,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -1495,24 +1863,67 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:19:00 GMT + - Sat, 28 Sep 2024 20:23:20 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: 8982DC9E243B4036AF9FBC4D70C899AD Ref B: OSA221030115021 Ref C: 2024-09-28T20:23:20Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus georecovery-alias show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --namespace-name --alias + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003/disasterRecoveryConfigs/cliAlias000005","name":"cliAlias000005","type":"Microsoft.ServiceBus/Namespaces/disasterrecoveryconfigs","properties":{"provisioningState":"Accepted","partnerNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","role":"Secondary","type":"MetadataReplication"}}' + headers: + cache-control: + - no-cache + content-length: + - '547' + content-type: + - application/json; charset=utf-8 + date: + - Sat, 28 Sep 2024 20:23:52 GMT + expires: + - '-1' + pragma: + - no-cache + server-sb: + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 10D56526BB124E779C56B488BBDBBD4B Ref B: TYO201151003040 Ref C: 2024-09-28T20:23:51Z' status: code: 200 message: OK @@ -1530,7 +1941,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -1544,24 +1955,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 May 2023 10:19:40 GMT + - Sat, 28 Sep 2024 20:24:23 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/CH3 + - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E2181B91DE4B4F35AC9BFBFD3475420F Ref B: OSA221030115035 Ref C: 2024-09-28T20:24:22Z' status: code: 200 message: OK @@ -1581,7 +1989,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --alias User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003/disasterRecoveryConfigs/cliAlias000005?api-version=2022-10-01-preview response: @@ -1593,22 +2001,23 @@ interactions: content-length: - '0' date: - - Wed, 03 May 2023 10:20:40 GMT + - Sat, 28 Sep 2024 20:24:24 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: A8BC5AE7244C4477B989CA5EBB6E3D9A Ref B: OSA221030113035 Ref C: 2024-09-28T20:24:24Z' status: code: 200 message: OK @@ -1628,9 +2037,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: string: '' @@ -1640,24 +2049,27 @@ interactions: content-length: - '0' date: - - Wed, 03 May 2023 10:21:21 GMT + - Sat, 28 Sep 2024 20:24:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/e3d6cb39-d9f1-4c8b-9252-1fcc6d224d45?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631518978439164&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=vO3NfZKF2JRXBsF42TnbInQi3zIol1lvMDPQmaQLg5RcOc-kROCkcXqkARiZFGXXGx3yqcLs0B9ydBT4cKGyZw6nvFcunSMGgCtmzmcgo9EZSJCcQhgRXCk0q5UM7Yiw71-M2IHD_hNMnrhDfWN1N7VQFQm1u69WAvPhLkoHoNlhpxPBdwtJetUqNjVTajLZlj9f9Op4RH3m48bjAxrvHFZSR-eeRESZt_7X2q-YOp3Pha56W_5iFQZOQ-thfOZr7UDVVUqTx_ojC7p-TOrG0wVXNkkxM4-2qKGds4XdYbYeEANilfP1cPDdHj_Y1P1-Df4pkjkbtjwNBEbV521DNw&h=YH1HxtKlqz_kJzTB5A939FytJvmuT0iSJsIOidH1dn8 pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000011096 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G3|2024-09-28T20:24:57 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 00A187C697CC435AB8A8A7A49E345E36 Ref B: OSA221030115031 Ref C: 2024-09-28T20:24:55Z' status: code: 202 message: Accepted @@ -1675,9 +2087,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/e3d6cb39-d9f1-4c8b-9252-1fcc6d224d45?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631518978439164&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=vO3NfZKF2JRXBsF42TnbInQi3zIol1lvMDPQmaQLg5RcOc-kROCkcXqkARiZFGXXGx3yqcLs0B9ydBT4cKGyZw6nvFcunSMGgCtmzmcgo9EZSJCcQhgRXCk0q5UM7Yiw71-M2IHD_hNMnrhDfWN1N7VQFQm1u69WAvPhLkoHoNlhpxPBdwtJetUqNjVTajLZlj9f9Op4RH3m48bjAxrvHFZSR-eeRESZt_7X2q-YOp3Pha56W_5iFQZOQ-thfOZr7UDVVUqTx_ojC7p-TOrG0wVXNkkxM4-2qKGds4XdYbYeEANilfP1cPDdHj_Y1P1-Df4pkjkbtjwNBEbV521DNw&h=YH1HxtKlqz_kJzTB5A939FytJvmuT0iSJsIOidH1dn8 response: body: string: '' @@ -1687,22 +2099,25 @@ interactions: content-length: - '0' date: - - Wed, 03 May 2023 10:21:51 GMT + - Sat, 28 Sep 2024 20:24:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/e3d6cb39-d9f1-4c8b-9252-1fcc6d224d45?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631518986966786&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=IY2LXOLxYOXTeKw7ZiuBWtf2alo32aDEvv1MkU0uObbqCOH-_eGeguyS-_14NK1wDp2fnt_11ygcATOtOUEOLeMVsWPv-6blcyaCI0Glw8s3Elu9842Sk4FbAJxcbKGhctp1El_Fsz5fSnvmas9UxoeZ7B_97SwKxTMqn6rs9Y_-xgqMzyHlq2Uti8owSkMlgZhjpXypikllAu0T2RuPwFYCyboaQPMoiox7b9W-Ai5WGFfYTetJCA9Vc9_gZ7j-4Bh7lviWEFoezWtbYmK6uwax-9Chk8E0MHlVxVILuXgH6IPI4WaR6ivc4S_6HA282hMgAvCg8oOA068EtOrVxA&h=gT5AmWKyu3X7EBR2BwBwnH7UWwKHztMt5Mu-S74EkwU pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000009884 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G8|2024-09-28T20:24:58 + x-msedge-ref: + - 'Ref A: 06671DE7EBDB477C98B1A83D8C8F3DA6 Ref B: OSA221030115031 Ref C: 2024-09-28T20:24:57Z' status: code: 202 message: Accepted @@ -1720,9 +2135,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/e3d6cb39-d9f1-4c8b-9252-1fcc6d224d45?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631518986966786&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=IY2LXOLxYOXTeKw7ZiuBWtf2alo32aDEvv1MkU0uObbqCOH-_eGeguyS-_14NK1wDp2fnt_11ygcATOtOUEOLeMVsWPv-6blcyaCI0Glw8s3Elu9842Sk4FbAJxcbKGhctp1El_Fsz5fSnvmas9UxoeZ7B_97SwKxTMqn6rs9Y_-xgqMzyHlq2Uti8owSkMlgZhjpXypikllAu0T2RuPwFYCyboaQPMoiox7b9W-Ai5WGFfYTetJCA9Vc9_gZ7j-4Bh7lviWEFoezWtbYmK6uwax-9Chk8E0MHlVxVILuXgH6IPI4WaR6ivc4S_6HA282hMgAvCg8oOA068EtOrVxA&h=gT5AmWKyu3X7EBR2BwBwnH7UWwKHztMt5Mu-S74EkwU response: body: string: '' @@ -1732,22 +2147,25 @@ interactions: content-length: - '0' date: - - Wed, 03 May 2023 10:22:22 GMT + - Sat, 28 Sep 2024 20:25:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/e3d6cb39-d9f1-4c8b-9252-1fcc6d224d45?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631519295876681&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=R2_aFbi1-Zs4ghIBFvJMrguRfFpWylfLJSnCkxm9uOft7RVjVooTtnxG5FuKf4jfXkCR_EP6KDtSD7aPSrUiJzsLUlKFAxSYLzzcR6mDIHQzRVg4jWUOYc8sgRu7zu8tysvyEhK3WRudjXjrv3yrgnnj129_776GAeP02vjV8IuphJoyMnJqo1FZBDVDhxF6QlHNT5e2vb_typGZku9Ergy_Bc8wTEMxAJp-K3x0NTSKCDwjrZijFor_IqARNnb0TtZD87fa9_pc7jp7f-sGOQSk33uFFDopQ7dkxgobBA_8pA9ZCcDDr4yIVgqD7mSLFs_9gv2WbnU0hQefPT4NVA&h=4uZjn3vK5ZFsWrkZlK7I_7DDO0NhewNnRCO4v2hS1TM pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006860 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G12|2024-09-28T20:25:29 + x-msedge-ref: + - 'Ref A: 637C99F5F9CC440ABE695884A6059F69 Ref B: OSA221030115031 Ref C: 2024-09-28T20:25:28Z' status: code: 202 message: Accepted @@ -1765,30 +2183,83 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/e3d6cb39-d9f1-4c8b-9252-1fcc6d224d45?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631519295876681&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=R2_aFbi1-Zs4ghIBFvJMrguRfFpWylfLJSnCkxm9uOft7RVjVooTtnxG5FuKf4jfXkCR_EP6KDtSD7aPSrUiJzsLUlKFAxSYLzzcR6mDIHQzRVg4jWUOYc8sgRu7zu8tysvyEhK3WRudjXjrv3yrgnnj129_776GAeP02vjV8IuphJoyMnJqo1FZBDVDhxF6QlHNT5e2vb_typGZku9Ergy_Bc8wTEMxAJp-K3x0NTSKCDwjrZijFor_IqARNnb0TtZD87fa9_pc7jp7f-sGOQSk33uFFDopQ7dkxgobBA_8pA9ZCcDDr4yIVgqD7mSLFs_9gv2WbnU0hQefPT4NVA&h=4uZjn3vK5ZFsWrkZlK7I_7DDO0NhewNnRCO4v2hS1TM response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 03 May 2023 10:22:53 GMT + - Sat, 28 Sep 2024 20:25:59 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/e3d6cb39-d9f1-4c8b-9252-1fcc6d224d45?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631519604228499&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=jChz3R6iwgIUHmNE2eSpd_OetHUvTLUPb7-SK7zmBTZ8bNOe1JoqYsECIxtNf2UYmf42MiwWz9uI-eZxqeHpxlohdNL_0u-lclH90zbOfWAB5XH5iog5L7SQBtD-fxfYHsUYtpzzPGKTctuUewISq2iRad00e5iUnD-k2JNvydj36oAd4ny3t1oaVULUMlbmLe7Wrvxcl7zFQgpKV3UKZqRikNHEfjgE5UQqtsCEqxlzf07UNDoqRO8DRPA0uoW-PMwAsMrB4hsuxHujIxK34qJ4csRlYZ-1iyddfF1KnDZJspVlmYDXzfp3lffDbia7FF3v0e-8zdpnEcS_n_zh5Q&h=xNTHkkbKOqK8gsmK5snfUhVzwvm8TO58Oa4krR9TKUY + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006860 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G12|2024-09-28T20:26:00 + x-msedge-ref: + - 'Ref A: F7C1C7E562CE4BCBAF5FFA50A48A5CC7 Ref B: OSA221030115031 Ref C: 2024-09-28T20:25:59Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/e3d6cb39-d9f1-4c8b-9252-1fcc6d224d45?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631519604228499&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=jChz3R6iwgIUHmNE2eSpd_OetHUvTLUPb7-SK7zmBTZ8bNOe1JoqYsECIxtNf2UYmf42MiwWz9uI-eZxqeHpxlohdNL_0u-lclH90zbOfWAB5XH5iog5L7SQBtD-fxfYHsUYtpzzPGKTctuUewISq2iRad00e5iUnD-k2JNvydj36oAd4ny3t1oaVULUMlbmLe7Wrvxcl7zFQgpKV3UKZqRikNHEfjgE5UQqtsCEqxlzf07UNDoqRO8DRPA0uoW-PMwAsMrB4hsuxHujIxK34qJ4csRlYZ-1iyddfF1KnDZJspVlmYDXzfp3lffDbia7FF3v0e-8zdpnEcS_n_zh5Q&h=xNTHkkbKOqK8gsmK5snfUhVzwvm8TO58Oa4krR9TKUY + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Sat, 28 Sep 2024 20:26:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/e3d6cb39-d9f1-4c8b-9252-1fcc6d224d45?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631519912565666&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=VpV-U8CfTnE0QBjWTMWjy0Xxp4XNlDkoUAhkAoJBRnkDgKUadH5rez_FOBVsHFpzC7djSjMg9XC_zCCjP6yBsQjJBbt_tqT-z4A7caeu85NNoyddY2olcWmXxHMGPEN-W-R9lnIlCEJkIGSMrz5IVSv6v_N8OvH9sQ2HRF21UIZ-FrOV1VMVmH-2JUff1da_-BPQO1C_KmL-bbgOxdBUuFoXpBv5EPDEVGjyHNtUJgNR6PwIsqIw87Tiit10MvgR416_0rX-pXKthbZjaoA72p8jHvzDzqgC2vMyNuKJreKaXjszHVSVzURFIqt4PzA52oLll8UpB4UK0xrQXLB_gQ&h=v_-R_zbLOb47_k9v_yxDgYYT5edHr25CWJKOdgdFWVM pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008708 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G13|2024-09-28T20:26:31 + x-msedge-ref: + - 'Ref A: A399A28943AA41E6926D063C40EF6C19 Ref B: OSA221030115031 Ref C: 2024-09-28T20:26:30Z' status: code: 204 message: No Content @@ -1808,9 +2279,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000003?api-version=2023-01-01-preview response: body: string: '' @@ -1820,24 +2291,27 @@ interactions: content-length: - '0' date: - - Wed, 03 May 2023 10:23:02 GMT + - Sat, 28 Sep 2024 20:26:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/northcentralus/operationStatus/sb-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northcentralus/namespaceOperationResults/f17a4474-b537-4455-987d-da0cbe3dcb0b?isAsyncHeader=false&resourceName=sb-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631519941006940&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HaI4U4rSvElJDKe8VFbyNPXWQaQI4qjmsACLscwie1uL80l60cwsg0nG4yzDYr-Mr2DcntraRwufumX-ItRfBWDL7rBB5U29wU90gYCzIox1ZLjPIhv4azdVRyhHY5ihsTdUMdbiI7TGjwy90tJetD4EVowTcrHP4fnhfwuuTLuLAavx2-OFH_iZUQfVVSr1z24UTlQ38VgN4BKiktypAZUHHzQkJ70CZBIVfoVGqENrq8uqH1dnKE0J3byb20fw1i6gEb1-b1iiia1pE8d4vTXSJKddcxu9WYhXP5d8Lw0foclchNNfeZfVHBzIeg3vVdbs1tHTmSIorhgeyn8m2g&h=ZkGgYNCNMjmB_AixjKqnHRDzEMk03PT9eLjkybCAlgQ pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001248 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G2|2024-09-28T20:26:34 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 95420E77F2DD4ED48A419268D862E3F2 Ref B: TYO201151001042 Ref C: 2024-09-28T20:26:31Z' status: code: 202 message: Accepted @@ -1855,9 +2329,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/northcentralus/operationStatus/sb-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northcentralus/namespaceOperationResults/f17a4474-b537-4455-987d-da0cbe3dcb0b?isAsyncHeader=false&resourceName=sb-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631519941006940&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HaI4U4rSvElJDKe8VFbyNPXWQaQI4qjmsACLscwie1uL80l60cwsg0nG4yzDYr-Mr2DcntraRwufumX-ItRfBWDL7rBB5U29wU90gYCzIox1ZLjPIhv4azdVRyhHY5ihsTdUMdbiI7TGjwy90tJetD4EVowTcrHP4fnhfwuuTLuLAavx2-OFH_iZUQfVVSr1z24UTlQ38VgN4BKiktypAZUHHzQkJ70CZBIVfoVGqENrq8uqH1dnKE0J3byb20fw1i6gEb1-b1iiia1pE8d4vTXSJKddcxu9WYhXP5d8Lw0foclchNNfeZfVHBzIeg3vVdbs1tHTmSIorhgeyn8m2g&h=ZkGgYNCNMjmB_AixjKqnHRDzEMk03PT9eLjkybCAlgQ response: body: string: '' @@ -1867,22 +2341,25 @@ interactions: content-length: - '0' date: - - Wed, 03 May 2023 10:23:32 GMT + - Sat, 28 Sep 2024 20:26:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/northcentralus/operationStatus/sb-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northcentralus/namespaceOperationResults/f17a4474-b537-4455-987d-da0cbe3dcb0b?isAsyncHeader=false&resourceName=sb-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631519949837468&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=q8z2_TOddddagu_aQX_N9wBONSlTpaWBJO3-5qHCH4n0zSoxpll4F1--zLUCjcmpOsVZTUbrYlCu_Jcbd_dwJ4S2LhR7mzbtRl1AaEp5HoSyPz0qGm7YYe2Re4YxgHxJPNlJqUeZC13ho-8EP-o456vPXKQrQuv3LxiNmOjHmzVmcZJRZb2UWO-VjAEymoeKCxKT5DiRVuD8OsXaF95yz_2hP9aDXz9olPzKkbPXNPqwTkZvASggx5UBVA2Kfnn3dAFGgf1PTqGQr_xLk3NM_b3pOXsrhSVXKh0C-E7YXXJpruSV86TAzEiPgmapDYWg9k7vNvro8VHobwdM_pCnMw&h=Rgw6Puf6z5gpC3EQkzNipnznDiA4ceAU2SDjb_oGG3w pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001248 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G2|2024-09-28T20:26:34 + x-msedge-ref: + - 'Ref A: 406947B4986F47CF840F35D3E1104E38 Ref B: TYO201151001042 Ref C: 2024-09-28T20:26:34Z' status: code: 202 message: Accepted @@ -1900,9 +2377,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/northcentralus/operationStatus/sb-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northcentralus/namespaceOperationResults/f17a4474-b537-4455-987d-da0cbe3dcb0b?isAsyncHeader=false&resourceName=sb-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631519949837468&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=q8z2_TOddddagu_aQX_N9wBONSlTpaWBJO3-5qHCH4n0zSoxpll4F1--zLUCjcmpOsVZTUbrYlCu_Jcbd_dwJ4S2LhR7mzbtRl1AaEp5HoSyPz0qGm7YYe2Re4YxgHxJPNlJqUeZC13ho-8EP-o456vPXKQrQuv3LxiNmOjHmzVmcZJRZb2UWO-VjAEymoeKCxKT5DiRVuD8OsXaF95yz_2hP9aDXz9olPzKkbPXNPqwTkZvASggx5UBVA2Kfnn3dAFGgf1PTqGQr_xLk3NM_b3pOXsrhSVXKh0C-E7YXXJpruSV86TAzEiPgmapDYWg9k7vNvro8VHobwdM_pCnMw&h=Rgw6Puf6z5gpC3EQkzNipnznDiA4ceAU2SDjb_oGG3w response: body: string: '' @@ -1912,22 +2389,25 @@ interactions: content-length: - '0' date: - - Wed, 03 May 2023 10:24:03 GMT + - Sat, 28 Sep 2024 20:27:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/northcentralus/operationStatus/sb-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northcentralus/namespaceOperationResults/f17a4474-b537-4455-987d-da0cbe3dcb0b?isAsyncHeader=false&resourceName=sb-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631520259022324&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=SYcZGSNlf70rcn9bcEtdACF24h9jdPH_BOGmk2DlBWoWt2AoJtwODksFScWFxJOxMw_dOXyXN4xjhVMm63Wp3EhDEohAHRDzlQEg3KHdc3qXyA558yV6QrL2j0yveddWhWeKAMRLm2ML4D6AfT-Lz02nDO39AI_8Ujbf0MqSQwdBkko879lmSTTbVTstzlrdmgesHj2R_0S62sgI_3NvIMfgcuUFUz9AG29tVCbL0Nait0Cw6_wu6Qjzwoj6DMua_yXjvOhwlJKkSDNeJF4bwnGKGXhAdZ0Pk2X8c8kfU5cejyGNfOxmDYM6UdCtiLWR0UvZCW-ieGPpnM4ulNjKkA&h=sQAZYtdOKwm1mWAs_EoCFu7kkh91QcVfIzcWrMj5aK0 pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006100 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G1|2024-09-28T20:27:05 + x-msedge-ref: + - 'Ref A: 3E0E5F85F0B244DCB07028487765FB20 Ref B: TYO201151001042 Ref C: 2024-09-28T20:27:05Z' status: code: 202 message: Accepted @@ -1945,30 +2425,83 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.48.1 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_alias000001/providers/Microsoft.ServiceBus/locations/northcentralus/operationStatus/sb-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northcentralus/namespaceOperationResults/f17a4474-b537-4455-987d-da0cbe3dcb0b?isAsyncHeader=false&resourceName=sb-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631520259022324&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=SYcZGSNlf70rcn9bcEtdACF24h9jdPH_BOGmk2DlBWoWt2AoJtwODksFScWFxJOxMw_dOXyXN4xjhVMm63Wp3EhDEohAHRDzlQEg3KHdc3qXyA558yV6QrL2j0yveddWhWeKAMRLm2ML4D6AfT-Lz02nDO39AI_8Ujbf0MqSQwdBkko879lmSTTbVTstzlrdmgesHj2R_0S62sgI_3NvIMfgcuUFUz9AG29tVCbL0Nait0Cw6_wu6Qjzwoj6DMua_yXjvOhwlJKkSDNeJF4bwnGKGXhAdZ0Pk2X8c8kfU5cejyGNfOxmDYM6UdCtiLWR0UvZCW-ieGPpnM4ulNjKkA&h=sQAZYtdOKwm1mWAs_EoCFu7kkh91QcVfIzcWrMj5aK0 response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 03 May 2023 10:24:33 GMT + - Sat, 28 Sep 2024 20:27:36 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northcentralus/namespaceOperationResults/f17a4474-b537-4455-987d-da0cbe3dcb0b?isAsyncHeader=false&resourceName=sb-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631520567799484&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=hFuJZThrJSCn20QuNcVRjUjLQBx9WcRKUyB8uRH34_0kI2RsmOFh_gCic4D0vmNgmwPdBdLbymA4aHj8HUlMZN-DRmWJrjVutse-WC7NGPTvmchLYeD44UkeDZ3Dr90QJCCRkp8VKtZKbOSZQT6Ge_BGCAnB99uBkIMJXy1OvBQ47Y0rlSlLIU6axIIOSThLErgcdjmv08vqjm6YQDFiyaoop_6I3YG1oOM4-gG5OGQMjVxW0z8wPIMrDSMYcH2iGbU0OUJAmcog0jion7MW3Y0f62r7pSHvvnSdDkQ8sdZAfjJQW1u7RTbqVwlz2iW2585Iv-bTSRL2aXKlNxAXeQ&h=9yFwS_6idaAWA5ChMbPdKbEAfy8qKVv36P13B-RR5jQ + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008040 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G4|2024-09-28T20:27:36 + x-msedge-ref: + - 'Ref A: 48B48771899648CE8C188991394B4702 Ref B: TYO201151001042 Ref C: 2024-09-28T20:27:35Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northcentralus/namespaceOperationResults/f17a4474-b537-4455-987d-da0cbe3dcb0b?isAsyncHeader=false&resourceName=sb-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631520567799484&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=hFuJZThrJSCn20QuNcVRjUjLQBx9WcRKUyB8uRH34_0kI2RsmOFh_gCic4D0vmNgmwPdBdLbymA4aHj8HUlMZN-DRmWJrjVutse-WC7NGPTvmchLYeD44UkeDZ3Dr90QJCCRkp8VKtZKbOSZQT6Ge_BGCAnB99uBkIMJXy1OvBQ47Y0rlSlLIU6axIIOSThLErgcdjmv08vqjm6YQDFiyaoop_6I3YG1oOM4-gG5OGQMjVxW0z8wPIMrDSMYcH2iGbU0OUJAmcog0jion7MW3Y0f62r7pSHvvnSdDkQ8sdZAfjJQW1u7RTbqVwlz2iW2585Iv-bTSRL2aXKlNxAXeQ&h=9yFwS_6idaAWA5ChMbPdKbEAfy8qKVv36P13B-RR5jQ + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Sat, 28 Sep 2024 20:28:07 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northcentralus/namespaceOperationResults/f17a4474-b537-4455-987d-da0cbe3dcb0b?isAsyncHeader=false&resourceName=sb-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631520877209009&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=KEWz_Qx4tODG03PcDe6r8kQIG5x3o4OlpYZaXFW5FPxvuyoaAxa5-Rv__gchRbpeZ_Y2VCblVA0x9WKOPfrFkivTf26mjpf0wmRsc8O0k53WB0rayyNXBYuXoHt8hfHJj55uA4qvrZLoXdOsOYX4N-6qELiqqQ8xxgHDxpRx6XbhsrLl5wU8zA-LiceLuALYgqAfF2lbA1_90Z-01YHfV08qbwweIVuFIQn7TARzAV_tra_nGxgVaIzNtpROBwoI5X1ecupCBt2auN-T5Lq5qIQLvDggeUUNXrv76csSMxisQUIuaQCsdvAqbLhoVGcfzOLr3C1Ev6q7kVnyE93iJA&h=keKZE6ZeAg4jr7a0qw_3NbzMNIroSFDUo8rF7jxraJ8 pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006100 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G1|2024-09-28T20:28:07 + x-msedge-ref: + - 'Ref A: 6C91B2FE1DA34FF5AB3B460B335B0AC7 Ref B: TYO201151001042 Ref C: 2024-09-28T20:28:06Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_auth_rule.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_auth_rule.yaml index e13a42dd291..78e369edd9d 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_auth_rule.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_auth_rule.yaml @@ -1,7 +1,6 @@ interactions: - request: - body: '{"identity": {"type": "None"}, "location": "westus", "sku": {"name": "Standard", - "tier": "Standard"}}' + body: '{"location": "westus", "sku": {"name": "Standard", "tier": "Standard"}}' headers: Accept: - application/json @@ -12,50 +11,48 @@ interactions: Connection: - keep-alive Content-Length: - - '101' + - '71' Content-Type: - application/json ParameterSetName: - --resource-group --name --sku --location User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-03-01T07:13:30.4Z","updatedAt":"2023-03-01T07:13:30.4Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:03:53.4266847Z","updatedAt":"2024-09-29T04:03:53.4266847Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '716' + - '874' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:13:30 GMT + - Sun, 29 Sep 2024 04:03:53 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 8a0be062-1fa6-4162-b7c0-3bfe2843781b + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T04:03:53 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: AE7F0898BFED4F6E9BB6EC6B81C7BFD7 Ref B: OSA221030113033 Ref C: 2024-09-29T04:03:46Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -70,39 +67,37 @@ interactions: ParameterSetName: - --resource-group --name --sku --location User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-03-01T07:13:30.4Z","updatedAt":"2023-03-01T07:13:30.4Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:03:53.4266847Z","updatedAt":"2024-09-29T04:03:53.4266847Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '716' + - '874' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:00 GMT + - Sun, 29 Sep 2024 04:03:54 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 8cb50244-0bda-4cb6-b744-bd2db7a30289 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T04:03:54 + x-msedge-ref: + - 'Ref A: CF403B51EAB242939F19D76402DA2F1A Ref B: OSA221030113033 Ref C: 2024-09-29T04:03:53Z' status: code: 200 message: OK @@ -120,39 +115,37 @@ interactions: ParameterSetName: - --resource-group --name --sku --location User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-03-01T07:13:30.4Z","updatedAt":"2023-03-01T07:14:14.933Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:03:53.4266847Z","updatedAt":"2024-09-29T04:03:57.2861713Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '716' + - '871' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:31 GMT + - Sun, 29 Sep 2024 04:04:25 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 29fc3d4e-2724-4fd5-ab33-09c22c2b74b7 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T04:04:25 + x-msedge-ref: + - 'Ref A: AD1A5CE818CC4534BA5C2FFD20A26816 Ref B: OSA221030113033 Ref C: 2024-09-29T04:04:24Z' status: code: 200 message: OK @@ -174,7 +167,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --rights User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000003?api-version=2022-01-01-preview response: @@ -188,23 +181,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:38 GMT + - Sun, 29 Sep 2024 04:04:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 004a8482-9607-4aef-b7da-bb992e6f59a3 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T04:04:34 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 9783D6E1D5D149AB9CD410BC01FF8017 Ref B: OSA221030116045 Ref C: 2024-09-29T04:04:26Z' status: code: 200 message: OK @@ -222,12 +217,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Send","Listen","Manage"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Send","Listen","Manage"]}}' headers: cache-control: - no-cache @@ -236,21 +231,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:39 GMT + - Sun, 29 Sep 2024 04:04:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - e61b3223-665f-41d9-a5b5-fca24c94b355 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T04:04:36 + x-msedge-ref: + - 'Ref A: C1135C6F32C14AD99BC61D8CAB89F10D Ref B: OSA221030115037 Ref C: 2024-09-29T04:04:35Z' status: code: 200 message: OK @@ -268,12 +265,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --rights User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Send","Listen","Manage"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Send","Listen","Manage"]}}' headers: cache-control: - no-cache @@ -282,21 +279,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:39 GMT + - Sun, 29 Sep 2024 04:04:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - bc92d68e-cbd0-4a5e-b902-857c07530316 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T04:04:37 + x-msedge-ref: + - 'Ref A: 92FAF1C4ABB74C7281D2F7EF41D5A746 Ref B: TYO201151001060 Ref C: 2024-09-29T04:04:36Z' status: code: 200 message: OK @@ -318,7 +317,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --rights User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000003?api-version=2022-01-01-preview response: @@ -332,23 +331,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:46 GMT + - Sun, 29 Sep 2024 04:04:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 791d21f1-377e-4e61-8b07-11c22e72c7ed + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T04:04:45 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: CDCBD1410E934426AF3CEBAF7C1A7F62 Ref B: TYO201151001060 Ref C: 2024-09-29T04:04:37Z' status: code: 200 message: OK @@ -366,12 +367,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules?api-version=2022-01-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/RootManageSharedAccessKey","name":"RootManageSharedAccessKey","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Listen","Manage","Send"]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Listen"]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/RootManageSharedAccessKey","name":"RootManageSharedAccessKey","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Listen","Manage","Send"]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Listen"]}}]}' headers: cache-control: - no-cache @@ -380,21 +381,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:48 GMT + - Sun, 29 Sep 2024 04:04:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 24f41c5c-8a58-4b78-aea5-c00d75b6adfe + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T04:04:46 + x-msedge-ref: + - 'Ref A: F588810ACCF44332BF605F5778F6E608 Ref B: OSA221030116019 Ref C: 2024-09-29T04:04:45Z' status: code: 200 message: OK @@ -412,12 +415,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/RootManageSharedAccessKey?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/RootManageSharedAccessKey","name":"RootManageSharedAccessKey","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Listen","Manage","Send"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/authorizationrules/RootManageSharedAccessKey","name":"RootManageSharedAccessKey","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"westus","properties":{"rights":["Listen","Manage","Send"]}}' headers: cache-control: - no-cache @@ -426,21 +429,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:49 GMT + - Sun, 29 Sep 2024 04:04:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 65e0f6f2-a5a4-4c1c-bb1e-d97c7f7518da + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T04:04:47 + x-msedge-ref: + - 'Ref A: 312A023997794DAD97AF6C231DC3FBA2 Ref B: TYO201100116039 Ref C: 2024-09-29T04:04:46Z' status: code: 200 message: OK @@ -460,12 +465,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000003/listKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized1","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized7","primaryKey":"sanitized1","secondaryKey":"sanitized7","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=wowT1U4TjtxVVJAdPNHt1jPAGs3Jpxr1D+ASbKyhTNY=","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=JteCznhQ+0jARbP0MZkt4s/dzCvOTVSk7+ASbDsdvjY=","primaryKey":"wowT1U4TjtxVVJAdPNHt1jPAGs3Jpxr1D+ASbKyhTNY=","secondaryKey":"JteCznhQ+0jARbP0MZkt4s/dzCvOTVSk7+ASbDsdvjY=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -474,23 +479,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:50 GMT + - Sun, 29 Sep 2024 04:04:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - df9b416d-da65-4479-9f2f-5d15f8758769 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T04:04:49 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 45DA72FE9AD84672AC08FC3358D379B5 Ref B: OSA221030115033 Ref C: 2024-09-29T04:04:48Z' status: code: 200 message: OK @@ -512,12 +519,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --key User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized6","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized7","primaryKey":"sanitized6","secondaryKey":"sanitized7","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=Hpi9LdX9oRqfNnundH92CbXvRqJuaQb2H+ASbGxbPQ4=","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=JteCznhQ+0jARbP0MZkt4s/dzCvOTVSk7+ASbDsdvjY=","primaryKey":"Hpi9LdX9oRqfNnundH92CbXvRqJuaQb2H+ASbGxbPQ4=","secondaryKey":"JteCznhQ+0jARbP0MZkt4s/dzCvOTVSk7+ASbDsdvjY=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -526,23 +533,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:14:57 GMT + - Sun, 29 Sep 2024 04:04:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2f9edc41-0a78-4e31-ad40-92addbb65ffb + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T04:04:56 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 34A3F13FA06041689FC04973EAC0A950 Ref B: OSA221030115017 Ref C: 2024-09-29T04:04:49Z' status: code: 200 message: OK @@ -564,12 +573,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --key User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized6","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized8","primaryKey":"sanitized6","secondaryKey":"sanitized8","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=Hpi9LdX9oRqfNnundH92CbXvRqJuaQb2H+ASbGxbPQ4=","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=8oIn9usv7KA8wNPJqXfYLU1zwMAvoyV63+ASbKIXZvU=","primaryKey":"Hpi9LdX9oRqfNnundH92CbXvRqJuaQb2H+ASbGxbPQ4=","secondaryKey":"8oIn9usv7KA8wNPJqXfYLU1zwMAvoyV63+ASbKIXZvU=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -578,28 +587,30 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:04 GMT + - Sun, 29 Sep 2024 04:05:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7e18b7e5-91a6-43fa-ada9-2090012f4cf4 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T04:05:04 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: DCEFACC42BCB4E4DAD1F87B23E519A45 Ref B: TYO201100117049 Ref C: 2024-09-29T04:04:57Z' status: code: 200 message: OK - request: - body: '{"key": "sanitized1", "keyType": "PrimaryKey"}' + body: '{"key": "wowT1U4TjtxVVJAdPNHt1jPAGs3Jpxr1D+ASbKyhTNY=", "keyType": "PrimaryKey"}' headers: Accept: - application/json @@ -616,12 +627,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --key --key-value User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized1","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized8","primaryKey":"sanitized1","secondaryKey":"sanitized8","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=wowT1U4TjtxVVJAdPNHt1jPAGs3Jpxr1D+ASbKyhTNY=","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=8oIn9usv7KA8wNPJqXfYLU1zwMAvoyV63+ASbKIXZvU=","primaryKey":"wowT1U4TjtxVVJAdPNHt1jPAGs3Jpxr1D+ASbKyhTNY=","secondaryKey":"8oIn9usv7KA8wNPJqXfYLU1zwMAvoyV63+ASbKIXZvU=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -630,28 +641,30 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:12 GMT + - Sun, 29 Sep 2024 04:05:10 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4fdcc053-d153-4445-be56-6bcf80443665 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T04:05:11 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F954F380855B47CAAB284AFF82D88FEC Ref B: TYO201151003060 Ref C: 2024-09-29T04:05:04Z' status: code: 200 message: OK - request: - body: '{"key": "sanitized7", "keyType": "SecondaryKey"}' + body: '{"key": "JteCznhQ+0jARbP0MZkt4s/dzCvOTVSk7+ASbDsdvjY=", "keyType": "SecondaryKey"}' headers: Accept: - application/json @@ -668,12 +681,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --key --key-value User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/AuthorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized1","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized7","primaryKey":"sanitized1","secondaryKey":"sanitized7","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=wowT1U4TjtxVVJAdPNHt1jPAGs3Jpxr1D+ASbKyhTNY=","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=JteCznhQ+0jARbP0MZkt4s/dzCvOTVSk7+ASbDsdvjY=","primaryKey":"wowT1U4TjtxVVJAdPNHt1jPAGs3Jpxr1D+ASbKyhTNY=","secondaryKey":"JteCznhQ+0jARbP0MZkt4s/dzCvOTVSk7+ASbDsdvjY=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -682,23 +695,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:18 GMT + - Sun, 29 Sep 2024 04:05:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2f37d20e-9cc7-4bbc-90d1-452c3e93fd60 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T04:05:18 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: D2C4580C821C482384ED9E642B1C56F9 Ref B: TYO201100114047 Ref C: 2024-09-29T04:05:11Z' status: code: 200 message: OK @@ -720,37 +735,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004","name":"cli_topic000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-01T07:15:20.84Z","updatedAt":"2023-03-01T07:15:20.907Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004","name":"cli_topic000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:05:20.767Z","updatedAt":"2024-09-29T04:05:20.797Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '958' + - '959' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:20 GMT + - Sun, 29 Sep 2024 04:05:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f052dce0-6793-4a27-8d8b-79f266dd0824 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T04:05:21 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 486C14282DB746638D0A0DE60CE61DB7 Ref B: TYO201151006040 Ref C: 2024-09-29T04:05:18Z' status: code: 200 message: OK @@ -772,7 +789,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --rights User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: @@ -786,23 +803,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:22 GMT + - Sun, 29 Sep 2024 04:05:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - cd778fc6-50e7-412b-8500-77ac553e13da + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T04:05:22 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 85A18F3D74214989AFC44AA857A0EAC7 Ref B: TYO201151003025 Ref C: 2024-09-29T04:05:21Z' status: code: 200 message: OK @@ -820,12 +839,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --rights User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/namespaces/topics/authorizationrules","location":"westus","properties":{"rights":["Send","Listen","Manage"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/namespaces/topics/authorizationrules","location":"westus","properties":{"rights":["Send","Listen","Manage"]}}' headers: cache-control: - no-cache @@ -834,21 +853,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:22 GMT + - Sun, 29 Sep 2024 04:05:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 0f11d302-c7d7-4a21-945f-727fe8435e7f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T04:05:24 + x-msedge-ref: + - 'Ref A: 180324B198FE4044B87B5DDA4BB38534 Ref B: OSA221030115029 Ref C: 2024-09-29T04:05:23Z' status: code: 200 message: OK @@ -870,7 +891,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --rights User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: @@ -884,23 +905,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:23 GMT + - Sun, 29 Sep 2024 04:05:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c1bf416e-0c52-454c-9a55-6cfc3be7dc88 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T04:05:25 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 5C2851AC23D846C1BE326D5C7B796A92 Ref B: OSA221030115029 Ref C: 2024-09-29T04:05:24Z' status: code: 200 message: OK @@ -920,12 +943,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004/authorizationRules/cliAutho000003/ListKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized2;EntityPath=cli_topic000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized9;EntityPath=cli_topic000004","primaryKey":"sanitized2","secondaryKey":"sanitized9","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=Yianm4wR296/EFiCff1+KxeAgb88ywwGN+ASbGtbt+I=;EntityPath=cli_topic000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=520SXFAtttqOW8tMv2lFm2SSYQlHoS85v+ASbObwu1o=;EntityPath=cli_topic000004","primaryKey":"Yianm4wR296/EFiCff1+KxeAgb88ywwGN+ASbGtbt+I=","secondaryKey":"520SXFAtttqOW8tMv2lFm2SSYQlHoS85v+ASbObwu1o=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -934,23 +957,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:24 GMT + - Sun, 29 Sep 2024 04:05:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f4d3d006-e57e-4a15-beb7-b83039c7c8cc + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T04:05:27 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F30C15714BF64A5991EAE70C91D0668D Ref B: OSA221030113029 Ref C: 2024-09-29T04:05:25Z' status: code: 200 message: OK @@ -972,12 +997,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --key User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004/authorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized3;EntityPath=cli_topic000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized9;EntityPath=cli_topic000004","primaryKey":"sanitized3","secondaryKey":"sanitized9","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=befCZkEUKVicgm6aOZT+Lz1oIBJNU69ZL+ASbIFRltk=;EntityPath=cli_topic000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=520SXFAtttqOW8tMv2lFm2SSYQlHoS85v+ASbObwu1o=;EntityPath=cli_topic000004","primaryKey":"befCZkEUKVicgm6aOZT+Lz1oIBJNU69ZL+ASbIFRltk=","secondaryKey":"520SXFAtttqOW8tMv2lFm2SSYQlHoS85v+ASbObwu1o=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -986,23 +1011,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:25 GMT + - Sun, 29 Sep 2024 04:05:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 79298cc4-5ea8-406d-83a0-74ca4f35bb3f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T04:05:29 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: A338B3754A2C4EE3B1A8044A42A436F9 Ref B: OSA221030114025 Ref C: 2024-09-29T04:05:28Z' status: code: 200 message: OK @@ -1024,12 +1051,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --key User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004/authorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized3;EntityPath=cli_topic000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized10;EntityPath=cli_topic000004","primaryKey":"sanitized3","secondaryKey":"sanitized10","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=befCZkEUKVicgm6aOZT+Lz1oIBJNU69ZL+ASbIFRltk=;EntityPath=cli_topic000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=ELOy3TnACPdhBR6YXrVHd4eelN8KQeeaR+ASbLWnefs=;EntityPath=cli_topic000004","primaryKey":"befCZkEUKVicgm6aOZT+Lz1oIBJNU69ZL+ASbIFRltk=","secondaryKey":"ELOy3TnACPdhBR6YXrVHd4eelN8KQeeaR+ASbLWnefs=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -1038,23 +1065,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:27 GMT + - Sun, 29 Sep 2024 04:05:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 371f2b97-9a13-429a-99a5-44411cbe2f14 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T04:05:32 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 92900C130EE04623BCAF8F46590B2FC3 Ref B: OSA221030113025 Ref C: 2024-09-29T04:05:30Z' status: code: 200 message: OK @@ -1074,7 +1103,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/cli_topic000004?api-version=2022-01-01-preview response: @@ -1086,19 +1115,25 @@ interactions: content-length: - '0' date: - - Wed, 01 Mar 2023 07:15:27 GMT + - Sun, 29 Sep 2024 04:05:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008796 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T04:05:34 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: D248EB2B04CC48958184F34397414014 Ref B: TYO201151002011 Ref C: 2024-09-29T04:05:33Z' status: code: 200 message: OK @@ -1120,37 +1155,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005","name":"sb-queuecli000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-01T07:15:30.41Z","updatedAt":"2023-03-01T07:15:30.443Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005","name":"sb-queuecli000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:05:38.27Z","updatedAt":"2024-09-29T04:05:38.32Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1043' + - '1042' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:30 GMT + - Sun, 29 Sep 2024 04:05:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 253383c1-5d59-4560-b3fc-e12197ec5b77 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T04:05:38 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 93DBF65A68E44D8ABFDB4BE5DF7558D0 Ref B: OSA221030114035 Ref C: 2024-09-29T04:05:34Z' status: code: 200 message: OK @@ -1172,7 +1209,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --queue-name --name --rights User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: @@ -1186,23 +1223,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:31 GMT + - Sun, 29 Sep 2024 04:05:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 77720dd6-3d95-4660-9ea3-1c67a156ff0d + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T04:05:40 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 19EEE2A31480467BB1C4E601C0B8570D Ref B: OSA221030116039 Ref C: 2024-09-29T04:05:39Z' status: code: 200 message: OK @@ -1220,12 +1259,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --queue-name --name --rights User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/namespaces/queues/authorizationrules","location":"westus","properties":{"rights":["Send","Listen","Manage"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/namespaces/queues/authorizationrules","location":"westus","properties":{"rights":["Send","Listen","Manage"]}}' headers: cache-control: - no-cache @@ -1234,21 +1273,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:32 GMT + - Sun, 29 Sep 2024 04:05:41 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d2da7e73-9848-4000-90f4-c9ce8cb6fad9 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T04:05:41 + x-msedge-ref: + - 'Ref A: 0044C554784140FA950197714F26EA53 Ref B: TYO201100116029 Ref C: 2024-09-29T04:05:41Z' status: code: 200 message: OK @@ -1270,7 +1311,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --queue-name --name --rights User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: @@ -1284,23 +1325,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:32 GMT + - Sun, 29 Sep 2024 04:05:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 595e1506-46fe-4281-b5cb-2cb7e941bf48 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T04:05:43 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 6199E75F42334751A0EE92FD9F2C1304 Ref B: TYO201100116029 Ref C: 2024-09-29T04:05:42Z' status: code: 200 message: OK @@ -1320,12 +1363,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --queue-name --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005/authorizationRules/cliAutho000003/ListKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized4;EntityPath=sb-queuecli000005","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized11;EntityPath=sb-queuecli000005","primaryKey":"sanitized4","secondaryKey":"sanitized11","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=N92mqLE9LfsEvGxExB6epGa0f38KqQXXK+ASbD5xt48=;EntityPath=sb-queuecli000005","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=jvhqDKFg5LpY5DzsQyhrKY4nXM/wd+qNi+ASbFA6pHQ=;EntityPath=sb-queuecli000005","primaryKey":"N92mqLE9LfsEvGxExB6epGa0f38KqQXXK+ASbD5xt48=","secondaryKey":"jvhqDKFg5LpY5DzsQyhrKY4nXM/wd+qNi+ASbFA6pHQ=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -1334,23 +1377,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:34 GMT + - Sun, 29 Sep 2024 04:05:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 85faa435-8214-4377-bbe2-16f37a44fb8f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T04:05:46 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 8917AEEA46514EFFBBCBAF1B548B4D88 Ref B: OSA221030114017 Ref C: 2024-09-29T04:05:43Z' status: code: 200 message: OK @@ -1372,12 +1417,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --queue-name --name --key User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005/authorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized5;EntityPath=sb-queuecli000005","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized11;EntityPath=sb-queuecli000005","primaryKey":"sanitized5","secondaryKey":"sanitized11","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=oKN117IpQlrfY6kzaVkCHqzS21GLVek+X+ASbAa2uRc=;EntityPath=sb-queuecli000005","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=jvhqDKFg5LpY5DzsQyhrKY4nXM/wd+qNi+ASbFA6pHQ=;EntityPath=sb-queuecli000005","primaryKey":"oKN117IpQlrfY6kzaVkCHqzS21GLVek+X+ASbAa2uRc=","secondaryKey":"jvhqDKFg5LpY5DzsQyhrKY4nXM/wd+qNi+ASbFA6pHQ=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -1386,23 +1431,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:34 GMT + - Sun, 29 Sep 2024 04:05:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 173b145e-639c-4f62-b22d-82872dac058f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T04:05:47 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: A270EF6CE0084D6EAE60242F8B6C803A Ref B: TYO201100114029 Ref C: 2024-09-29T04:05:46Z' status: code: 200 message: OK @@ -1424,12 +1471,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --queue-name --name --key User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005/authorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized5;EntityPath=sb-queuecli000005","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=sanitized12;EntityPath=sb-queuecli000005","primaryKey":"sanitized5","secondaryKey":"sanitized12","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=oKN117IpQlrfY6kzaVkCHqzS21GLVek+X+ASbAa2uRc=;EntityPath=sb-queuecli000005","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=s/9mUTfmJaSFAdaIwJWrpqaJMEWJVy961+ASbFzUX4Y=;EntityPath=sb-queuecli000005","primaryKey":"oKN117IpQlrfY6kzaVkCHqzS21GLVek+X+ASbAa2uRc=","secondaryKey":"s/9mUTfmJaSFAdaIwJWrpqaJMEWJVy961+ASbFzUX4Y=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -1438,23 +1485,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:15:36 GMT + - Sun, 29 Sep 2024 04:05:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b038e7f9-788f-42c5-8a36-dfce3a70556f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T04:05:48 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 799C0FF909304ACEAF4F8FE4ACA8C24F Ref B: OSA221030116053 Ref C: 2024-09-29T04:05:47Z' status: code: 200 message: OK @@ -1474,7 +1523,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000005?api-version=2022-01-01-preview response: @@ -1486,19 +1535,25 @@ interactions: content-length: - '0' date: - - Wed, 01 Mar 2023 07:15:37 GMT + - Sun, 29 Sep 2024 04:05:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008796 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T04:05:50 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 72AD6243AC884F34A26CC0EE6D9264F7 Ref B: TYO201151002029 Ref C: 2024-09-29T04:05:49Z' status: code: 200 message: OK @@ -1518,9 +1573,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: string: '' @@ -1530,24 +1585,27 @@ interactions: content-length: - '0' date: - - Wed, 01 Mar 2023 07:15:39 GMT + - Sun, 29 Sep 2024 04:05:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/f71808d8-575e-420e-83bb-73729857e45c?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631795525687928&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=gvqNPVJ1fIztFybtoc2YCOh_nM89YnBuiHo57L9rCmTn69dgG8nt0DOWpaF8hh9sUbbb_krADIzzHBEDfstk-UWiMBDlb_HxeSAhS4dL7yZspczn56Og256T4CiMq8DhOHxd36R3Hb7kUhbOPanrot9PUTVKczQCoJdiBF6I2WCPP1U5TxVAEz4qN56iXj9nu0KIPXTCxUdAgWbIyzx9-2peZC_fK2DWPcuy9BfLFxjTf7PpVuw_AaKAC2pGfr-LSec1h32aum60rc0tN8Y4fWyXSZdEsambeZH0vJjVGuyNka7b8qyqIHiUA1nO2N-deTJYUZWwZ4f9Zt7JsMY7uA&h=dAJt0b4bXi7KlLkkwtNGWHkStE_s5JgmynDBmKjTUus pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008796 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T04:05:52 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: FF745E64DCCF476B8B6CA587B45A8E08 Ref B: TYO201100114053 Ref C: 2024-09-29T04:05:50Z' status: code: 202 message: Accepted @@ -1565,30 +1623,83 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_auth_rule000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/f71808d8-575e-420e-83bb-73729857e45c?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631795525687928&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=gvqNPVJ1fIztFybtoc2YCOh_nM89YnBuiHo57L9rCmTn69dgG8nt0DOWpaF8hh9sUbbb_krADIzzHBEDfstk-UWiMBDlb_HxeSAhS4dL7yZspczn56Og256T4CiMq8DhOHxd36R3Hb7kUhbOPanrot9PUTVKczQCoJdiBF6I2WCPP1U5TxVAEz4qN56iXj9nu0KIPXTCxUdAgWbIyzx9-2peZC_fK2DWPcuy9BfLFxjTf7PpVuw_AaKAC2pGfr-LSec1h32aum60rc0tN8Y4fWyXSZdEsambeZH0vJjVGuyNka7b8qyqIHiUA1nO2N-deTJYUZWwZ4f9Zt7JsMY7uA&h=dAJt0b4bXi7KlLkkwtNGWHkStE_s5JgmynDBmKjTUus response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 01 Mar 2023 07:16:10 GMT + - Sun, 29 Sep 2024 04:05:52 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/f71808d8-575e-420e-83bb-73729857e45c?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631795532817543&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=WZiSWmZmoaAmE6541Ce9sDMylhUB2lQB2zrjOa-BPmgOJywFdqSTI5QTshlcxNCZcF8emztiDiEuTRNzbbPaukxeNWH2LhyDHCPTB1A2bhqVYzT68kPlUvNExZ7WpSdiAc2y5jTH1AQ7obYfpQUtyOPXWTWs7zWbu0TvJ1ATl1u_agRcrIyCE5pBhu0vdHbEDQowKHFQgLV_eI4xq9CSPhwBXgi7FY_HoprBSirPLPJ_Fa4VOMnEtd5fiqHVRpSzBLjdojTwQaeWTuA8oCIO5QS6-2jaunrLzXeFEwZNMhjiKR4GXkwu1orS4WiP5DW9l3Srmg7AuEPf2PNXXUTBGQ&h=Jz5yeuZafih7L8-aS7khZ1XRL8M_gb3viwsIqQ22Dh0 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008796 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T04:05:53 + x-msedge-ref: + - 'Ref A: D91A3F1CA7694E3881606F5CD771ED75 Ref B: TYO201100114053 Ref C: 2024-09-29T04:05:52Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/f71808d8-575e-420e-83bb-73729857e45c?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631795532817543&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=WZiSWmZmoaAmE6541Ce9sDMylhUB2lQB2zrjOa-BPmgOJywFdqSTI5QTshlcxNCZcF8emztiDiEuTRNzbbPaukxeNWH2LhyDHCPTB1A2bhqVYzT68kPlUvNExZ7WpSdiAc2y5jTH1AQ7obYfpQUtyOPXWTWs7zWbu0TvJ1ATl1u_agRcrIyCE5pBhu0vdHbEDQowKHFQgLV_eI4xq9CSPhwBXgi7FY_HoprBSirPLPJ_Fa4VOMnEtd5fiqHVRpSzBLjdojTwQaeWTuA8oCIO5QS6-2jaunrLzXeFEwZNMhjiKR4GXkwu1orS4WiP5DW9l3Srmg7AuEPf2PNXXUTBGQ&h=Jz5yeuZafih7L8-aS7khZ1XRL8M_gb3viwsIqQ22Dh0 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Sun, 29 Sep 2024 04:06:23 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/f71808d8-575e-420e-83bb-73729857e45c?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631795841271225&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=YBnoq-ZomNkzVKApW-3YtR1J2Q6IXG9i_2cVbevojfg-gRT169en6gZkDCKtyv8BsK9L8qFXm2QMgqPVRriAlwdYCY0qo21M0gZBIIjOBr7PIDEmn6Pt5850CtVko0UvWcwq_b__sbaJDvV1lNIBETgHR4n__7EeWSyBEnyddceduqjqq8Si4-q5JeEqbeBuWBsIGAJK2b_VhLWrAF5RVURGPq2dJHS9Ow_Hv8Fq3bq3utuzNmGTebBQ5ALTXKq_3s4YmXRYdWurR8RQ0m1d0wDXPs4c5vvg9lojlog_Q0yOOo4oZQ4OWEZPzsFV1mcH_S9RddIZUp32a-9EXRX0_Q&h=hNRTeqqMrgxr7qvPEVfe4bE161uRP7PbkKgO7qac9Tg pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001300 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T04:06:24 + x-msedge-ref: + - 'Ref A: C5DCB8458A8E4303996E5950A715229D Ref B: TYO201100114053 Ref C: 2024-09-29T04:06:23Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_migration.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_migration.yaml index cf23168a43e..afedb590c28 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_migration.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_migration.yaml @@ -17,47 +17,43 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/CheckNameAvailability?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/CheckNameAvailability?api-version=2023-01-01-preview response: body: - string: '{"nameAvailable":true,"reason":"None","message":null}' + string: '{"nameAvailable":true,"reason":"None","message":"Namespace name available"}' headers: cache-control: - no-cache content-length: - - '53' + - '75' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:37:12 GMT + - Sun, 29 Sep 2024 04:13:47 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-messaging-activity-id: + - 494640a9-b81d-492c-b42c-6e95df187579 + x-ms-messaging-routing-id: + - JAPANEAST|JAPANEAST|G8|2024-09-29T04:13:47 + x-msedge-ref: + - 'Ref A: 81BAD5DC31EC4A9BB4BF6759C5D6F0DC Ref B: OSA221030116053 Ref C: 2024-09-29T04:13:47Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "SouthCentralUS", "sku": {"name": - "Standard", "tier": "Standard"}, "tags": {"{tag1: value1,": "", "tag2: value2}": - ""}}' + body: '{"location": "SouthCentralUS", "sku": {"name": "Standard", "tier": "Standard"}, + "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' headers: Accept: - application/json @@ -68,100 +64,49 @@ interactions: Connection: - keep-alive Content-Length: - - '162' + - '132' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","createdAt":"2023-05-31T18:37:15.62Z","updatedAt":"2023-05-31T18:37:15.62Z","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:13:52.4564063Z","updatedAt":"2024-09-29T04:13:52.4564063Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '781' + - '944' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:37:16 GMT + - Sun, 29 Sep 2024 04:13:52 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d5e93196-497e-4236-a5a2-5a9a32837152 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G4|2024-09-29T04:13:52 x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --tags --sku - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","createdAt":"2023-05-31T18:37:15.62Z","updatedAt":"2023-05-31T18:37:15.62Z","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '781' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 31 May 2023 18:37:16 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - '1199' + x-msedge-ref: + - 'Ref A: 19BBB39CF96E4D2489A9B03CDD530105 Ref B: TYO201100115007 Ref C: 2024-09-29T04:13:48Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -176,39 +121,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","createdAt":"2023-05-31T18:37:15.62Z","updatedAt":"2023-05-31T18:37:15.62Z","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:13:52.4564063Z","updatedAt":"2024-09-29T04:13:52.4564063Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '781' + - '944' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:37:46 GMT + - Sun, 29 Sep 2024 04:13:53 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f06a8578-7ca9-4c3e-807d-daca7c65a7ad + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G4|2024-09-29T04:13:54 + x-msedge-ref: + - 'Ref A: EC070AD3D919499BA0462B99B1B82001 Ref B: TYO201100115007 Ref C: 2024-09-29T04:13:53Z' status: code: 200 message: OK @@ -226,39 +170,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","createdAt":"2023-05-31T18:37:15.62Z","updatedAt":"2023-05-31T18:37:58.02Z","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:13:52.4564063Z","updatedAt":"2024-09-29T04:13:55.6908494Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '779' + - '941' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:38:16 GMT + - Sun, 29 Sep 2024 04:14:24 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a16b6634-daf1-4ac4-a24c-e00cdaeb8e1b + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G0|2024-09-29T04:14:25 + x-msedge-ref: + - 'Ref A: 1BE36D81C6CA4259AD70AD2114D6869F Ref B: TYO201100115007 Ref C: 2024-09-29T04:14:24Z' status: code: 200 message: OK @@ -276,46 +219,44 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","createdAt":"2023-05-31T18:37:15.62Z","updatedAt":"2023-05-31T18:37:58.02Z","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:13:52.4564063Z","updatedAt":"2024-09-29T04:13:55.6908494Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '779' + - '941' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:38:17 GMT + - Sun, 29 Sep 2024 04:14:26 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - aae8525a-eece-4e0e-8959-cc9fda6e5ce2 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G13|2024-09-29T04:14:26 + x-msedge-ref: + - 'Ref A: 365467AC8D2F478A91E9D4BEBDC7C22D Ref B: OSA221030115025 Ref C: 2024-09-29T04:14:25Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "NorthCentralUS", "sku": {"name": - "Premium", "tier": "Premium"}, "tags": {"{tag1: value1,": "", "tag2: value2}": - ""}}' + body: '{"location": "NorthCentralUS", "sku": {"name": "Premium", "tier": "Premium"}, + "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' headers: Accept: - application/json @@ -326,50 +267,49 @@ interactions: Connection: - keep-alive Content-Length: - - '160' + - '130' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","createdAt":"2023-05-31T18:38:20.25Z","updatedAt":"2023-05-31T18:38:20.25Z","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:14:30.7809678Z","updatedAt":"2024-09-29T04:14:30Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '792' + - '947' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:38:20 GMT + - Sun, 29 Sep 2024 04:14:30 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 912a563a-5eb1-4873-bcb2-065bd9953bf4 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G1|2024-09-29T04:14:30 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: A9BA4A4F0E374EBBA742937F03656FB3 Ref B: OSA221030116021 Ref C: 2024-09-29T04:14:27Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -384,39 +324,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","createdAt":"2023-05-31T18:38:20.25Z","updatedAt":"2023-05-31T18:38:20.25Z","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:14:30.7809678Z","updatedAt":"2024-09-29T04:14:30Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '792' + - '947' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:38:20 GMT + - Sun, 29 Sep 2024 04:14:31 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 1ea4d186-efc0-44c4-ad24-671ba505d2af + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G2|2024-09-29T04:14:32 + x-msedge-ref: + - 'Ref A: 58AE606C4345450BA6F2420B658D3AAE Ref B: OSA221030116021 Ref C: 2024-09-29T04:14:31Z' status: code: 200 message: OK @@ -434,39 +373,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","createdAt":"2023-05-31T18:38:20.25Z","updatedAt":"2023-05-31T18:38:20.25Z","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:14:30.7809678Z","updatedAt":"2024-09-29T04:14:30Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '792' + - '947' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:38:50 GMT + - Sun, 29 Sep 2024 04:15:02 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 625573e1-40da-4d75-8eab-6f89382e9c5d + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G0|2024-09-29T04:15:03 + x-msedge-ref: + - 'Ref A: 9ABCFED5660F402B9A604F19193663E1 Ref B: OSA221030116021 Ref C: 2024-09-29T04:15:02Z' status: code: 200 message: OK @@ -484,39 +422,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","createdAt":"2023-05-31T18:38:20.25Z","updatedAt":"2023-05-31T18:38:20.25Z","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:14:30.7809678Z","updatedAt":"2024-09-29T04:14:30Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '792' + - '947' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:39:20 GMT + - Sun, 29 Sep 2024 04:15:33 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5cd3edf8-8bcc-46bb-b4e0-ede51a083e7a + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G4|2024-09-29T04:15:34 + x-msedge-ref: + - 'Ref A: 55B9A2CA93C64DC58C70E93E4F8CD416 Ref B: OSA221030116021 Ref C: 2024-09-29T04:15:33Z' status: code: 200 message: OK @@ -534,39 +471,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","createdAt":"2023-05-31T18:38:20.25Z","updatedAt":"2023-05-31T18:39:47.893Z","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:14:30.7809678Z","updatedAt":"2024-09-29T04:15:35Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '791' + - '944' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:39:52 GMT + - Sun, 29 Sep 2024 04:16:04 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7359945b-dabb-4321-a78e-c00c35354d21 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G1|2024-09-29T04:16:05 + x-msedge-ref: + - 'Ref A: 7449B362B0964A0D95E3F08D27BCB7D4 Ref B: OSA221030116021 Ref C: 2024-09-29T04:16:04Z' status: code: 200 message: OK @@ -584,39 +520,38 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","createdAt":"2023-05-31T18:38:20.25Z","updatedAt":"2023-05-31T18:39:47.893Z","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:14:30.7809678Z","updatedAt":"2024-09-29T04:15:35Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '791' + - '944' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:39:52 GMT + - Sun, 29 Sep 2024 04:16:06 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 482719bd-a955-4060-b1f9-ee8f1dfdba06 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G2|2024-09-29T04:16:06 + x-msedge-ref: + - 'Ref A: B66566D48A5948C5ACD37F1421B9ED00 Ref B: TYO201100113045 Ref C: 2024-09-29T04:16:05Z' status: code: 200 message: OK @@ -638,7 +573,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --rights User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/AuthorizationRules/cliAutho000006?api-version=2022-01-01-preview response: @@ -652,23 +587,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:39:59 GMT + - Sun, 29 Sep 2024 04:16:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 0814f06f-4c0f-4102-a339-5b01eb16aa62 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G13|2024-09-29T04:16:24 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 7280908EB641406DB7A08F7B930A971A Ref B: TYO201151005031 Ref C: 2024-09-29T04:16:06Z' status: code: 200 message: OK @@ -686,12 +623,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/AuthorizationRules/cliAutho000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/authorizationrules/cliAutho000006","name":"cliAutho000006","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"southcentralus","properties":{"rights":["Send"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/authorizationrules/cliAutho000006","name":"cliAutho000006","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"southcentralus","properties":{"rights":["Send"]}}' headers: cache-control: - no-cache @@ -700,21 +637,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:00 GMT + - Sun, 29 Sep 2024 04:16:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 48bfcaca-bed1-495b-96ae-161a455c4662 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G8|2024-09-29T04:16:26 + x-msedge-ref: + - 'Ref A: 28A6B4CF213F4B228D61351EBEA53BDC Ref B: TYO201100116031 Ref C: 2024-09-29T04:16:25Z' status: code: 200 message: OK @@ -736,37 +675,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue0?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue0","name":"queue0","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:02.993Z","updatedAt":"2023-05-31T18:40:03.05Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue0","name":"queue0","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:16:29.477Z","updatedAt":"2024-09-29T04:16:29.553Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1033' + - '1034' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:03 GMT + - Sun, 29 Sep 2024 04:16:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d59a5f3a-ae36-411e-9194-1e78fb3eb94f + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G1|2024-09-29T04:16:30 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: EB557D229DD64BCCA5CF199CA94D21C1 Ref B: TYO201100114045 Ref C: 2024-09-29T04:16:27Z' status: code: 200 message: OK @@ -788,12 +729,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue1?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue1","name":"queue1","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:05.153Z","updatedAt":"2023-05-31T18:40:05.183Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue1","name":"queue1","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:16:32.977Z","updatedAt":"2024-09-29T04:16:33.047Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache @@ -802,23 +743,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:05 GMT + - Sun, 29 Sep 2024 04:16:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 8a794fc0-b144-498e-bf7b-9c1009ef68a6 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G12|2024-09-29T04:16:33 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: BE65DF1A6D2D44FC9E4C8DB7D6B577E9 Ref B: OSA221030114023 Ref C: 2024-09-29T04:16:30Z' status: code: 200 message: OK @@ -840,37 +783,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue2?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue2","name":"queue2","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:07.783Z","updatedAt":"2023-05-31T18:40:07.83Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue2","name":"queue2","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:16:36.743Z","updatedAt":"2024-09-29T04:16:36.807Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1033' + - '1034' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:07 GMT + - Sun, 29 Sep 2024 04:16:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f97bf732-12ab-4a50-9255-1af325bb100c + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G8|2024-09-29T04:16:37 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: D8A0A1D841BE44CEBA63C267845F9018 Ref B: OSA221030116019 Ref C: 2024-09-29T04:16:34Z' status: code: 200 message: OK @@ -892,12 +837,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue3?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue3","name":"queue3","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:10.127Z","updatedAt":"2023-05-31T18:40:10.167Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue3","name":"queue3","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:16:40.047Z","updatedAt":"2024-09-29T04:16:40.107Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache @@ -906,23 +851,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:10 GMT + - Sun, 29 Sep 2024 04:16:40 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f7960950-9cda-468c-b498-f22210988b11 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G6|2024-09-29T04:16:40 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 7C55ADDB5EE34E37A7BE9410EE862623 Ref B: TYO201100113053 Ref C: 2024-09-29T04:16:37Z' status: code: 200 message: OK @@ -944,37 +891,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue4?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue4","name":"queue4","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:12.51Z","updatedAt":"2023-05-31T18:40:12.61Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue4","name":"queue4","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:16:43.34Z","updatedAt":"2024-09-29T04:16:43.373Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1032' + - '1033' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:12 GMT + - Sun, 29 Sep 2024 04:16:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 931c2d76-36cf-4e71-a6fc-ccc789c8939a + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G12|2024-09-29T04:16:43 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' + x-msedge-ref: + - 'Ref A: 25E6FDF32A21470E9B7656007F6795ED Ref B: OSA221030113051 Ref C: 2024-09-29T04:16:41Z' status: code: 200 message: OK @@ -996,37 +945,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue5?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue5","name":"queue5","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:14.937Z","updatedAt":"2023-05-31T18:40:14.983Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue5","name":"queue5","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:16:46.75Z","updatedAt":"2024-09-29T04:16:46.817Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1034' + - '1033' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:15 GMT + - Sun, 29 Sep 2024 04:16:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d176d203-baff-4c45-ba88-6deabd8237b1 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G7|2024-09-29T04:16:47 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: D79535A5AF894F5A9DBF1B616296F1F2 Ref B: TYO201151005023 Ref C: 2024-09-29T04:16:44Z' status: code: 200 message: OK @@ -1048,37 +999,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue6?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue6","name":"queue6","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:17.263Z","updatedAt":"2023-05-31T18:40:17.29Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue6","name":"queue6","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:16:50.367Z","updatedAt":"2024-09-29T04:16:50.403Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1033' + - '1034' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:16 GMT + - Sun, 29 Sep 2024 04:16:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 3c3250dd-d046-4433-997b-3e5dd1824436 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G9|2024-09-29T04:16:50 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 238C38F1A1B34C228029AB0FA0D16B2C Ref B: TYO201151004023 Ref C: 2024-09-29T04:16:47Z' status: code: 200 message: OK @@ -1100,12 +1053,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue7?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue7","name":"queue7","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:19.433Z","updatedAt":"2023-05-31T18:40:19.477Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue7","name":"queue7","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:16:54.097Z","updatedAt":"2024-09-29T04:16:54.137Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache @@ -1114,23 +1067,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:19 GMT + - Sun, 29 Sep 2024 04:16:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 29371b9e-ff0d-4cdb-8daa-7d1c8e22d71d + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G14|2024-09-29T04:16:54 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 3EFA486AD0914BB98AFC299072FD5867 Ref B: OSA221030116037 Ref C: 2024-09-29T04:16:51Z' status: code: 200 message: OK @@ -1152,37 +1107,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue8?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue8","name":"queue8","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:21.84Z","updatedAt":"2023-05-31T18:40:21.89Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue8","name":"queue8","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:16:57.953Z","updatedAt":"2024-09-29T04:16:57.983Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1032' + - '1034' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:22 GMT + - Sun, 29 Sep 2024 04:16:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - e5abe7d7-2657-4d5f-b977-953dcf1b10cc + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G7|2024-09-29T04:16:58 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 0795CA724C92420B95CA131D65A02F15 Ref B: TYO201100116035 Ref C: 2024-09-29T04:16:55Z' status: code: 200 message: OK @@ -1204,37 +1161,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue9?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue9","name":"queue9","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:40:24.06Z","updatedAt":"2023-05-31T18:40:24.087Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/queues/queue9","name":"queue9","type":"Microsoft.ServiceBus/namespaces/queues","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:17:00.94Z","updatedAt":"2024-09-29T04:17:00.97Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1033' + - '1032' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:24 GMT + - Sun, 29 Sep 2024 04:17:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b47a9f2e-98e9-475f-8d07-dacd5e97e395 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G14|2024-09-29T04:17:01 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 16FB50AE44B64447855B49B6DBC3F35F Ref B: OSA221030116011 Ref C: 2024-09-29T04:16:58Z' status: code: 200 message: OK @@ -1256,12 +1215,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic0?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic0","name":"topic0","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:26.623Z","updatedAt":"2023-05-31T18:40:26.74Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic0","name":"topic0","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:04.383Z","updatedAt":"2024-09-29T04:17:04.45Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -1270,23 +1229,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:26 GMT + - Sun, 29 Sep 2024 04:17:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a5cbb78c-b1e7-4a5e-8b92-58c4ff98ce90 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G4|2024-09-29T04:17:04 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 2ED72B7E56BA4AE2A55DD63392422A4A Ref B: TYO201151004023 Ref C: 2024-09-29T04:17:02Z' status: code: 200 message: OK @@ -1308,37 +1269,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic1?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic1","name":"topic1","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:29.103Z","updatedAt":"2023-05-31T18:40:29.133Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic1","name":"topic1","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:07.86Z","updatedAt":"2024-09-29T04:17:07.9Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '953' + - '950' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:29 GMT + - Sun, 29 Sep 2024 04:17:07 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f640511a-af7b-45f9-afe0-d5a93e9874bb + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G4|2024-09-29T04:17:08 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 187E6BBFC21F4E8B87ABDA0FDA6C7B24 Ref B: OSA221030115053 Ref C: 2024-09-29T04:17:05Z' status: code: 200 message: OK @@ -1360,12 +1323,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic2?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic2","name":"topic2","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:31.32Z","updatedAt":"2023-05-31T18:40:31.377Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic2","name":"topic2","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:11.21Z","updatedAt":"2024-09-29T04:17:11.257Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -1374,23 +1337,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:31 GMT + - Sun, 29 Sep 2024 04:17:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f096019d-860a-4e00-9fdd-d9b825351b3c + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G11|2024-09-29T04:17:11 x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: 4CA6D60A3DBA4D08820FD85C32B7758D Ref B: OSA221030116029 Ref C: 2024-09-29T04:17:08Z' status: code: 200 message: OK @@ -1412,37 +1377,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic3?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic3","name":"topic3","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:33.677Z","updatedAt":"2023-05-31T18:40:33.77Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic3","name":"topic3","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:14.973Z","updatedAt":"2024-09-29T04:17:15.007Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '952' + - '953' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:33 GMT + - Sun, 29 Sep 2024 04:17:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2cdfff40-5bce-4354-bad4-987124921dad + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G12|2024-09-29T04:17:15 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 8E08EB2875C34143B76EE29A770A8AC9 Ref B: TYO201151003029 Ref C: 2024-09-29T04:17:12Z' status: code: 200 message: OK @@ -1464,12 +1431,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic4?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic4","name":"topic4","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:36.003Z","updatedAt":"2023-05-31T18:40:36.1Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic4","name":"topic4","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:18.8Z","updatedAt":"2024-09-29T04:17:18.837Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -1478,23 +1445,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:36 GMT + - Sun, 29 Sep 2024 04:17:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ea770640-2b7c-4c6b-928f-ca3cd4904d0a + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G1|2024-09-29T04:17:19 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: EEFCD32118464E0A891912F1C681CD48 Ref B: TYO201151006031 Ref C: 2024-09-29T04:17:16Z' status: code: 200 message: OK @@ -1516,12 +1485,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic5?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic5","name":"topic5","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:38.13Z","updatedAt":"2023-05-31T18:40:38.203Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic5","name":"topic5","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:22.187Z","updatedAt":"2024-09-29T04:17:22.23Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -1530,23 +1499,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:38 GMT + - Sun, 29 Sep 2024 04:17:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 393f5339-1339-4923-9602-acadc374197d + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G11|2024-09-29T04:17:22 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 77BC2109E69942A7A1400EA5D5864F43 Ref B: TYO201100114035 Ref C: 2024-09-29T04:17:19Z' status: code: 200 message: OK @@ -1568,37 +1539,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic6?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic6","name":"topic6","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:40.387Z","updatedAt":"2023-05-31T18:40:40.42Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic6","name":"topic6","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:25.493Z","updatedAt":"2024-09-29T04:17:25.537Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '952' + - '953' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:40 GMT + - Sun, 29 Sep 2024 04:17:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c8cffba8-e57e-424b-859c-cb12145cb796 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G1|2024-09-29T04:17:26 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 8B5B013A9C3945F8B8D2FDA85EFFC6A5 Ref B: TYO201100113053 Ref C: 2024-09-29T04:17:23Z' status: code: 200 message: OK @@ -1620,12 +1593,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic7?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic7","name":"topic7","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:43.277Z","updatedAt":"2023-05-31T18:40:43.38Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic7","name":"topic7","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:28.98Z","updatedAt":"2024-09-29T04:17:29.013Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -1634,23 +1607,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:43 GMT + - Sun, 29 Sep 2024 04:17:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f75e65ee-5ccd-45e5-a4b5-706aa5c89112 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G1|2024-09-29T04:17:29 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 31C23B0EA3A849CAB464AC5764764076 Ref B: TYO201151005031 Ref C: 2024-09-29T04:17:26Z' status: code: 200 message: OK @@ -1672,37 +1647,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic8?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic8","name":"topic8","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:45.72Z","updatedAt":"2023-05-31T18:40:45.747Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic8","name":"topic8","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:32.61Z","updatedAt":"2024-09-29T04:17:32.65Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '952' + - '951' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:45 GMT + - Sun, 29 Sep 2024 04:17:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d5a5b586-957f-475c-92af-602f8a6a8cdc + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G8|2024-09-29T04:17:33 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 05F0DB5A3F484670AC359D9334521A8B Ref B: TYO201100114027 Ref C: 2024-09-29T04:17:30Z' status: code: 200 message: OK @@ -1724,37 +1701,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic9?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic9","name":"topic9","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:40:48Z","updatedAt":"2023-05-31T18:40:48.03Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/topics/topic9","name":"topic9","type":"Microsoft.ServiceBus/namespaces/topics","location":"southcentralus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:17:36.493Z","updatedAt":"2024-09-29T04:17:36.537Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '948' + - '953' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:40:48 GMT + - Sun, 29 Sep 2024 04:17:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - dd5b1e08-fa99-47e2-9a4d-9ebe0f00aa8c + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G14|2024-09-29T04:17:37 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: D28F4FC204C544ACBEBDB003C07419A7 Ref B: OSA221030115011 Ref C: 2024-09-29T04:17:33Z' status: code: 200 message: OK @@ -1777,7 +1756,7 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -1791,26 +1770,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:41:06 GMT + - Sun, 29 Sep 2024 04:18:08 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: 9626718F2A1548DEA43CA7837EE1BE36 Ref B: TYO201100116045 Ref C: 2024-09-29T04:17:47Z' status: code: 200 message: OK @@ -1828,7 +1804,7 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -1842,24 +1818,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:41:07 GMT + - Sun, 29 Sep 2024 04:18:08 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 61DCF2D8AFDE412DAE5A31F11AF1F57A Ref B: TYO201100116045 Ref C: 2024-09-29T04:18:08Z' status: code: 200 message: OK @@ -1877,7 +1850,7 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -1891,24 +1864,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:41:37 GMT + - Sun, 29 Sep 2024 04:18:39 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3FE8CB6BEDB14CCC888EDA56CB90049F Ref B: TYO201100116045 Ref C: 2024-09-29T04:18:38Z' status: code: 200 message: OK @@ -1926,7 +1896,7 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -1940,24 +1910,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:42:07 GMT + - Sun, 29 Sep 2024 04:19:10 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6E88E4BA1F68414C83DFF37059E50776 Ref B: TYO201100116045 Ref C: 2024-09-29T04:19:09Z' status: code: 200 message: OK @@ -1975,38 +1942,35 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/$default","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces/migrationconfigurations","properties":{"provisioningState":"Accepted","targetNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","postMigrationName":"clipostmigration000007","migrationState":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/$default","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces/migrationconfigurations","properties":{"provisioningState":"Accepted","targetNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","postMigrationName":"clipostmigration000007","migrationState":"Initiating"}}' headers: cache-control: - no-cache content-length: - - '583' + - '587' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:42:38 GMT + - Sun, 29 Sep 2024 04:19:41 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: F8C2C8AA55F844BFBEE05D6F6BDE8B33 Ref B: TYO201100116045 Ref C: 2024-09-29T04:19:40Z' status: code: 200 message: OK @@ -2024,38 +1988,35 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/$default","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces/migrationconfigurations","properties":{"provisioningState":"Succeeded","targetNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","postMigrationName":"clipostmigration000007","pendingReplicationOperationsCount":0,"migrationState":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/$default","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces/migrationconfigurations","properties":{"provisioningState":"Succeeded","targetNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","postMigrationName":"clipostmigration000007","pendingReplicationOperationsCount":11,"migrationState":"Syncing"}}' headers: cache-control: - no-cache content-length: - - '622' + - '624' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:43:08 GMT + - Sun, 29 Sep 2024 04:20:12 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D00F945F855A40C5BEEB7DDDD6B7F28F Ref B: TYO201100116045 Ref C: 2024-09-29T04:20:11Z' status: code: 200 message: OK @@ -2073,38 +2034,35 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/$default","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces/migrationconfigurations","properties":{"provisioningState":"Succeeded","targetNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","postMigrationName":"clipostmigration000007","pendingReplicationOperationsCount":0,"migrationState":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/$default","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces/migrationconfigurations","properties":{"provisioningState":"Succeeded","targetNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","postMigrationName":"clipostmigration000007","pendingReplicationOperationsCount":9,"migrationState":"Syncing"}}' headers: cache-control: - no-cache content-length: - - '622' + - '623' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:43:09 GMT + - Sun, 29 Sep 2024 04:20:14 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E07B9A94396B481083D00F13D0C84C5B Ref B: OSA221030115035 Ref C: 2024-09-29T04:20:13Z' status: code: 200 message: OK @@ -2124,7 +2082,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default/upgrade?api-version=2022-10-01-preview response: @@ -2136,22 +2094,23 @@ interactions: content-length: - '0' date: - - Wed, 31 May 2023 18:43:40 GMT + - Sun, 29 Sep 2024 04:20:47 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 106AD343AD9D43B5AE5464EB35416334 Ref B: OSA221030115047 Ref C: 2024-09-29T04:20:45Z' status: code: 200 message: OK @@ -2169,7 +2128,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -2183,24 +2142,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:43:42 GMT + - Sun, 29 Sep 2024 04:20:48 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6471A7F43CEB4314AAB68EC8B75804BB Ref B: TYO201100115019 Ref C: 2024-09-29T04:20:48Z' status: code: 200 message: OK @@ -2218,7 +2174,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -2232,24 +2188,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:44:13 GMT + - Sun, 29 Sep 2024 04:21:20 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 6ACC14BD6CCF4DF0B081E7D54C6F6924 Ref B: OSA221030113025 Ref C: 2024-09-29T04:21:19Z' status: code: 200 message: OK @@ -2267,7 +2220,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -2281,24 +2234,67 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:44:44 GMT + - Sun, 29 Sep 2024 04:21:50 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-msedge-ref: + - 'Ref A: A0955156DA434E18B280224A23EFD8C4 Ref B: OSA221030116025 Ref C: 2024-09-29T04:21:50Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus migration show + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/$default","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces/migrationconfigurations","properties":{"provisioningState":"Accepted","targetNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","postMigrationName":"clipostmigration000007","migrationState":"Completing"}}' + headers: + cache-control: + - no-cache + content-length: + - '587' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 04:22:21 GMT + expires: + - '-1' + pragma: + - no-cache + server-sb: + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 3FF2E61EA8E24BD2AC3A3EAC1F01F086 Ref B: TYO201151003031 Ref C: 2024-09-29T04:22:21Z' status: code: 200 message: OK @@ -2316,7 +2312,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -2330,24 +2326,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:45:14 GMT + - Sun, 29 Sep 2024 04:22:52 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 91144ED57B6A40A1994075B151A5EC2A Ref B: OSA221030115021 Ref C: 2024-09-29T04:22:52Z' status: code: 200 message: OK @@ -2365,12 +2358,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/AuthorizationRules/cliAutho000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/authorizationrules/cliAutho000006","name":"cliAutho000006","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"northcentralus","properties":{"rights":["Send"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/authorizationrules/cliAutho000006","name":"cliAutho000006","type":"Microsoft.ServiceBus/Namespaces/AuthorizationRules","location":"northcentralus","properties":{"rights":["Send"]}}' headers: cache-control: - no-cache @@ -2379,21 +2372,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:45:16 GMT + - Sun, 29 Sep 2024 04:22:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 0c3966a5-5fec-4ea7-9b85-891e6b393557 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G0|2024-09-29T04:22:54 + x-msedge-ref: + - 'Ref A: B03FCA2A70FB457380717B0B4FB0FA1E Ref B: OSA221030115021 Ref C: 2024-09-29T04:22:53Z' status: code: 200 message: OK @@ -2411,37 +2406,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues?api-version=2022-01-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue0","name":"queue0","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:44.8162891Z","updatedAt":"2023-05-31T18:42:44.8162891Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue1","name":"queue1","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:45.5507893Z","updatedAt":"2023-05-31T18:42:45.5507893Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue2","name":"queue2","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:46.1914028Z","updatedAt":"2023-05-31T18:42:46.1914028Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue3","name":"queue3","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:47.0663968Z","updatedAt":"2023-05-31T18:42:47.0663968Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue4","name":"queue4","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:47.7538964Z","updatedAt":"2023-05-31T18:42:47.7538964Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue5","name":"queue5","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:48.4101366Z","updatedAt":"2023-05-31T18:42:48.4101366Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue6","name":"queue6","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:49.0664131Z","updatedAt":"2023-05-31T18:42:49.0664131Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue7","name":"queue7","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:49.8007898Z","updatedAt":"2023-05-31T18:42:49.8007898Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue8","name":"queue8","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:50.3163998Z","updatedAt":"2023-05-31T18:42:50.3163998Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue9","name":"queue9","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-05-31T18:42:51.0820213Z","updatedAt":"2023-05-31T18:42:51.0820213Z","accessedAt":"0001-01-01T00:00:00Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue0","name":"queue0","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:14.4045353Z","updatedAt":"2024-09-29T04:20:14.4045353Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue1","name":"queue1","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:15.0139242Z","updatedAt":"2024-09-29T04:20:15.0139242Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue2","name":"queue2","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:15.6857847Z","updatedAt":"2024-09-29T04:20:15.6857847Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue3","name":"queue3","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:16.3420415Z","updatedAt":"2024-09-29T04:20:16.3420415Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue4","name":"queue4","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:17.06081Z","updatedAt":"2024-09-29T04:20:17.06081Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue5","name":"queue5","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:17.7170445Z","updatedAt":"2024-09-29T04:20:17.7170445Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue6","name":"queue6","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:18.467055Z","updatedAt":"2024-09-29T04:20:18.467055Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue7","name":"queue7","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:19.2171121Z","updatedAt":"2024-09-29T04:20:19.2171121Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue8","name":"queue8","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:19.7951846Z","updatedAt":"2024-09-29T04:20:19.7951846Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/queues/queue9","name":"queue9","type":"Microsoft.ServiceBus/namespaces/queues","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T04:20:20.3889301Z","updatedAt":"2024-09-29T04:20:20.3889301Z","accessedAt":"0001-01-01T00:00:00Z"}}]}' headers: cache-control: - no-cache content-length: - - '10461' + - '10455' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:45:18 GMT + - Sun, 29 Sep 2024 04:22:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-inline-count: - '' + x-ms-messaging-activity-id: + - 62997fb6-b129-4ceb-af0b-d728750ca936 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G2|2024-09-29T04:22:56 + x-msedge-ref: + - 'Ref A: 871B9B499D754681870459BCB4ED2767 Ref B: TYO201151004036 Ref C: 2024-09-29T04:22:55Z' status: code: 200 message: OK @@ -2459,12 +2456,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics?api-version=2022-01-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic0","name":"topic0","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:37.5335213Z","updatedAt":"2023-05-31T18:42:37.6116305Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic1","name":"topic1","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:38.9399969Z","updatedAt":"2023-05-31T18:42:38.9399969Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic2","name":"topic2","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:39.611886Z","updatedAt":"2023-05-31T18:42:39.611886Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic3","name":"topic3","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:40.2838038Z","updatedAt":"2023-05-31T18:42:40.2838038Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic4","name":"topic4","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:40.9090032Z","updatedAt":"2023-05-31T18:42:40.9090032Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic5","name":"topic5","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:41.5658947Z","updatedAt":"2023-05-31T18:42:41.5658947Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic6","name":"topic6","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:42.2221581Z","updatedAt":"2023-05-31T18:42:42.2221581Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic7","name":"topic7","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:42.8002538Z","updatedAt":"2023-05-31T18:42:42.8002538Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic8","name":"topic8","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:43.4096667Z","updatedAt":"2023-05-31T18:42:43.4096667Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic9","name":"topic9","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-05-31T18:42:44.0662684Z","updatedAt":"2023-05-31T18:42:44.0662684Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic0","name":"topic0","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:06.5295067Z","updatedAt":"2024-09-29T04:20:06.5920031Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic1","name":"topic1","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:07.8576815Z","updatedAt":"2024-09-29T04:20:07.8576815Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic2","name":"topic2","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:08.6076088Z","updatedAt":"2024-09-29T04:20:08.6076088Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic3","name":"topic3","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:09.3107372Z","updatedAt":"2024-09-29T04:20:09.3107372Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic4","name":"topic4","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:09.951413Z","updatedAt":"2024-09-29T04:20:09.951413Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic5","name":"topic5","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:10.5608066Z","updatedAt":"2024-09-29T04:20:10.5608066Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic6","name":"topic6","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:11.2326647Z","updatedAt":"2024-09-29T04:20:11.2326647Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic7","name":"topic7","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:12.0139024Z","updatedAt":"2024-09-29T04:20:12.0139024Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic8","name":"topic8","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:12.6389526Z","updatedAt":"2024-09-29T04:20:12.6389526Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003/topics/topic9","name":"topic9","type":"Microsoft.ServiceBus/namespaces/topics","location":"northcentralus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T04:20:13.3577135Z","updatedAt":"2024-09-29T04:20:13.3577135Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}]}' headers: cache-control: - no-cache @@ -2473,23 +2470,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:45:18 GMT + - Sun, 29 Sep 2024 04:22:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-inline-count: - '' + x-ms-messaging-activity-id: + - a9f5ad13-c4fd-4fc9-bc95-fe0a68818cf9 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G0|2024-09-29T04:22:58 + x-msedge-ref: + - 'Ref A: 5D290BB3B7A5466F9280346C744811ED Ref B: OSA221030116021 Ref C: 2024-09-29T04:22:57Z' status: code: 200 message: OK @@ -2507,39 +2506,38 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","createdAt":"2023-05-31T18:37:15.62Z","updatedAt":"2023-05-31T18:45:03.077Z","serviceBusEndpoint":"https://sb-std-nscli000002.servicebus.windows.net:443/","status":"Active","alternateName":"clipostmigration000007"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002","name":"sb-std-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli000002","serviceBusEndpoint":"https://clipostmigration000007.servicebus.windows.net:443/","alternateName":"clipostmigration000007","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:13:52.4564063Z","updatedAt":"2024-09-29T04:22:28.2517107Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '821' + - '986' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:45:49 GMT + - Sun, 29 Sep 2024 04:23:28 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f224e684-58d6-4fbb-8d51-8f1afbf44bb6 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G1|2024-09-29T04:23:29 + x-msedge-ref: + - 'Ref A: 8C525259F8604961ADE133F22254434B Ref B: OSA221030113037 Ref C: 2024-09-29T04:23:28Z' status: code: 200 message: OK @@ -2559,9 +2557,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli000002?api-version=2023-01-01-preview response: body: string: '' @@ -2571,24 +2569,27 @@ interactions: content-length: - '0' date: - - Wed, 31 May 2023 18:45:52 GMT + - Sun, 29 Sep 2024 04:23:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-std-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/a225a0ed-b474-48d0-b580-fd0509e575c6?isAsyncHeader=false&resourceName=sb-std-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631806124866174&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=ajPKB3FeN6-7lbk9_3iTtzplQ_BkMtixdoUhXeK85F4eHXWUZQV1r_2NpjMXLiIiEeFJ3mcTsXrlLCXLFwVcEqbWogQTrJA4bTx0WXwZbqOYDwNJc4IBRXVcmv3MvZzHxx3B-5sJ73n9fWmNaTQ-t7T3rS6IaQOw26phLsD4hY9HAzSLpeRLGVW_fkp8k2PfNrxMKTzI_iXI1KLOVgzDIWsWL26TD-b-Tp8RKtpOdVeNuJe_7u3jtT1gNnKuast2kw_p7_pHaMhVD-qZy3YcMjHpkc0_WFwjUBswRLGaRRa2a2GHvlQzQLxhGOAZ9aYAT-1TSZaqiL_5d4_sZyXMQQ&h=8muj_A419YvPSgQEiM4PMIjLhzKCb94GnaRiXTJuHHI pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000010928 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G4|2024-09-29T04:23:32 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 243C97D417474A1C8F5EF3B27A6B88CA Ref B: OSA221030115011 Ref C: 2024-09-29T04:23:29Z' status: code: 202 message: Accepted @@ -2606,9 +2607,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-std-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/a225a0ed-b474-48d0-b580-fd0509e575c6?isAsyncHeader=false&resourceName=sb-std-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631806124866174&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=ajPKB3FeN6-7lbk9_3iTtzplQ_BkMtixdoUhXeK85F4eHXWUZQV1r_2NpjMXLiIiEeFJ3mcTsXrlLCXLFwVcEqbWogQTrJA4bTx0WXwZbqOYDwNJc4IBRXVcmv3MvZzHxx3B-5sJ73n9fWmNaTQ-t7T3rS6IaQOw26phLsD4hY9HAzSLpeRLGVW_fkp8k2PfNrxMKTzI_iXI1KLOVgzDIWsWL26TD-b-Tp8RKtpOdVeNuJe_7u3jtT1gNnKuast2kw_p7_pHaMhVD-qZy3YcMjHpkc0_WFwjUBswRLGaRRa2a2GHvlQzQLxhGOAZ9aYAT-1TSZaqiL_5d4_sZyXMQQ&h=8muj_A419YvPSgQEiM4PMIjLhzKCb94GnaRiXTJuHHI response: body: string: '' @@ -2618,22 +2619,25 @@ interactions: content-length: - '0' date: - - Wed, 31 May 2023 18:45:52 GMT + - Sun, 29 Sep 2024 04:23:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-std-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/a225a0ed-b474-48d0-b580-fd0509e575c6?isAsyncHeader=false&resourceName=sb-std-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631806133827776&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=bFfwKNLurLarqa143rjsnGvw0raZ1ZyudjNunfS_NwM_KantNuMDoOGzwmg910VzE72IpOV0S3JAIAg4_viyIEpLqnlvu0jXjQ5-dgt-z4IUkyNU9l9ymcDr19Y3qQyDW9cyhwlYCx8IQIehuq2FmExCYC--ujTjXgSWH69RTfW8V8epnGqlmEpEZne_B-jYPzV3sO1UAUNpuC08kDrvKAnQHfhx9sFPVwvUQyiukKdgKm5utl0OB5HCu_T79vRvDWsLA1bh6AnII4Uey6jofv_1dJSWQBFLCBidllpjHELmchsUo4HfA2y-erO0dKK6y5T5E6IJt-OHpfB6WBnauA&h=AWuH624Q3fi_Fnsj16cj8gxweuTIr2uEihLZjCvF3Y8 pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000009528 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G0|2024-09-29T04:23:33 + x-msedge-ref: + - 'Ref A: 11DFA8CB18D549168183D7F35EC950A1 Ref B: OSA221030115011 Ref C: 2024-09-29T04:23:32Z' status: code: 202 message: Accepted @@ -2651,9 +2655,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/locations/southcentralus/operationStatus/sb-std-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/a225a0ed-b474-48d0-b580-fd0509e575c6?isAsyncHeader=false&resourceName=sb-std-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631806133827776&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=bFfwKNLurLarqa143rjsnGvw0raZ1ZyudjNunfS_NwM_KantNuMDoOGzwmg910VzE72IpOV0S3JAIAg4_viyIEpLqnlvu0jXjQ5-dgt-z4IUkyNU9l9ymcDr19Y3qQyDW9cyhwlYCx8IQIehuq2FmExCYC--ujTjXgSWH69RTfW8V8epnGqlmEpEZne_B-jYPzV3sO1UAUNpuC08kDrvKAnQHfhx9sFPVwvUQyiukKdgKm5utl0OB5HCu_T79vRvDWsLA1bh6AnII4Uey6jofv_1dJSWQBFLCBidllpjHELmchsUo4HfA2y-erO0dKK6y5T5E6IJt-OHpfB6WBnauA&h=AWuH624Q3fi_Fnsj16cj8gxweuTIr2uEihLZjCvF3Y8 response: body: string: '' @@ -2661,20 +2665,25 @@ interactions: cache-control: - no-cache date: - - Wed, 31 May 2023 18:46:22 GMT + - Sun, 29 Sep 2024 04:24:03 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/southcentralus/namespaceOperationResults/a225a0ed-b474-48d0-b580-fd0509e575c6?isAsyncHeader=false&resourceName=sb-std-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631806441989110&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=hF5Jv_8Q07TE0gPWsjVtn1spM1KuDBKvIOnpgQP2zerDZm0LfSwMZe5oZ1vv22voT9Iejuv5mwCKt5QCelfH7vkLdHZwHwCfLDwCgvOw7myAeBEmHb3NzZ8ZeU1JYPh5ACTa2NcjLbA1BKyUE4XSN_sDRTD2sEZk8kkAJQCg30QwojRNe4UBu_vb-v6SPAqh3PZDeSIqFXbYbaAfdoQVUayjnDKc49bTAILmqUZ3tfNZJoShdm52aCp_beq39XTa06_pSC1NFOTv_uUysaAqtvC7XATcnIhXnNRBK_xRvAPooYJ6FDp2H6YGVQpg29u4LLf55TfTpK-3IT1o_a2nPw&h=JqEQdjFmdEjJ3_OI49q8V9O97xZUwqEjRJE0b_2s2aY pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000010704 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G5|2024-09-29T04:24:04 + x-msedge-ref: + - 'Ref A: C5985CF96C7D4A3A8F0453348E408871 Ref B: OSA221030115011 Ref C: 2024-09-29T04:24:03Z' status: code: 204 message: No Content @@ -2692,46 +2701,44 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","createdAt":"2023-05-31T18:38:20.25Z","updatedAt":"2023-05-31T18:45:03.04Z","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000003","name":"sb-pre-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000003","serviceBusEndpoint":"https://sb-pre-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:14:30.7809678Z","updatedAt":"2024-09-29T04:22:30Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '790' + - '944' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:46:23 GMT + - Sun, 29 Sep 2024 04:24:05 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2ac04f45-ec43-4b77-a5ef-8a494c889f70 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G4|2024-09-29T04:24:05 + x-msedge-ref: + - 'Ref A: C42712F05AC3459FA020DE976C478CE8 Ref B: TYO201100116017 Ref C: 2024-09-29T04:24:04Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "SouthCentralUS", "sku": {"name": - "Standard", "tier": "Standard"}, "tags": {"{tag1: value1,": "", "tag2: value2}": - ""}}' + body: '{"location": "SouthCentralUS", "sku": {"name": "Standard", "tier": "Standard"}, + "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' headers: Accept: - application/json @@ -2742,50 +2749,49 @@ interactions: Connection: - keep-alive Content-Length: - - '162' + - '132' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004","name":"sb-pre-nscli000004","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000004","createdAt":"2023-05-31T18:46:26.16Z","updatedAt":"2023-05-31T18:46:26.16Z","serviceBusEndpoint":"https://sb-pre-nscli000004.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004","name":"sb-pre-nscli000004","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000004","serviceBusEndpoint":"https://sb-pre-nscli000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:24:09.1532414Z","updatedAt":"2024-09-29T04:24:09.1532414Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '781' + - '944' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:46:26 GMT + - Sun, 29 Sep 2024 04:24:09 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 6ea2b7db-75ca-48c7-8c66-a321cc44a1f9 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G12|2024-09-29T04:24:09 x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: C3E8D30B5419430E9975365EECCD40C0 Ref B: TYO201151003029 Ref C: 2024-09-29T04:24:05Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2800,39 +2806,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004","name":"sb-pre-nscli000004","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000004","createdAt":"2023-05-31T18:46:26.16Z","updatedAt":"2023-05-31T18:46:26.16Z","serviceBusEndpoint":"https://sb-pre-nscli000004.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004","name":"sb-pre-nscli000004","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000004","serviceBusEndpoint":"https://sb-pre-nscli000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:24:09.1532414Z","updatedAt":"2024-09-29T04:24:09.1532414Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '781' + - '944' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:46:26 GMT + - Sun, 29 Sep 2024 04:24:10 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 55ec599b-5373-43a2-bfde-c1723257ac94 + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G10|2024-09-29T04:24:10 + x-msedge-ref: + - 'Ref A: 21E77297C0FA41779D8047907324D431 Ref B: TYO201151003029 Ref C: 2024-09-29T04:24:10Z' status: code: 200 message: OK @@ -2850,147 +2855,143 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004","name":"sb-pre-nscli000004","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000004","createdAt":"2023-05-31T18:46:26.16Z","updatedAt":"2023-05-31T18:46:26.16Z","serviceBusEndpoint":"https://sb-pre-nscli000004.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004","name":"sb-pre-nscli000004","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000004","serviceBusEndpoint":"https://sb-pre-nscli000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:24:09.1532414Z","updatedAt":"2024-09-29T04:24:12.215819Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '781' + - '940' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:46:57 GMT + - Sun, 29 Sep 2024 04:24:41 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f4117503-d192-4b3c-bdf7-20b156a9e12a + x-ms-messaging-routing-id: + - SOUTHCENTRALUS|SOUTHCENTRALUS|G12|2024-09-29T04:24:41 + x-msedge-ref: + - 'Ref A: 90E5D91AA138495BB73F880AE9FF053E Ref B: TYO201151003029 Ref C: 2024-09-29T04:24:40Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "NorthCentralUS", "sku": {"name": "Premium", "tier": "Premium"}, + "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - servicebus namespace create Connection: - keep-alive + Content-Length: + - '130' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004","name":"sb-pre-nscli000004","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000004","createdAt":"2023-05-31T18:46:26.16Z","updatedAt":"2023-05-31T18:47:07.97Z","serviceBusEndpoint":"https://sb-pre-nscli000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:24:44.8577014Z","updatedAt":"2024-09-29T04:24:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '779' + - '947' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:47:26 GMT + - Sun, 29 Sep 2024 04:24:45 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 665b0bed-f40a-4bca-ad50-d07e2a8d67e7 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G1|2024-09-29T04:24:44 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: 00EA50FEBB9946D8A24BAA6BF91CB211 Ref B: TYO201151001011 Ref C: 2024-09-29T04:24:41Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"identity": {"type": "None"}, "location": "NorthCentralUS", "sku": {"name": - "Premium", "tier": "Premium"}, "tags": {"{tag1: value1,": "", "tag2: value2}": - ""}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - servicebus namespace create Connection: - keep-alive - Content-Length: - - '160' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","createdAt":"2023-05-31T18:47:30.337Z","updatedAt":"2023-05-31T18:47:30.337Z","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:24:44.8577014Z","updatedAt":"2024-09-29T04:24:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '794' + - '947' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:47:31 GMT + - Sun, 29 Sep 2024 04:24:45 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-messaging-activity-id: + - 90ea1281-2d2e-4af7-a826-3823532a319c + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G1|2024-09-29T04:24:46 + x-msedge-ref: + - 'Ref A: 0942993CF13F436CAFA4B1B7225110BF Ref B: TYO201151001011 Ref C: 2024-09-29T04:24:45Z' status: code: 200 message: OK @@ -3008,39 +3009,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","createdAt":"2023-05-31T18:47:30.337Z","updatedAt":"2023-05-31T18:47:30.337Z","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:24:44.8577014Z","updatedAt":"2024-09-29T04:24:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '794' + - '947' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:47:31 GMT + - Sun, 29 Sep 2024 04:25:16 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 989668b5-a68e-4281-b684-cbfa35f2f90a + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G4|2024-09-29T04:25:17 + x-msedge-ref: + - 'Ref A: 93800818C82745EC899F2F9EAB6F1952 Ref B: TYO201151001011 Ref C: 2024-09-29T04:25:16Z' status: code: 200 message: OK @@ -3058,39 +3058,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","createdAt":"2023-05-31T18:47:30.337Z","updatedAt":"2023-05-31T18:47:30.337Z","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:24:44.8577014Z","updatedAt":"2024-09-29T04:24:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '794' + - '947' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:48:01 GMT + - Sun, 29 Sep 2024 04:25:47 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 11b15750-474c-4faa-9018-6016dfed464a + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G2|2024-09-29T04:25:47 + x-msedge-ref: + - 'Ref A: 16D18922DB844A5F9B60DA3B9B927E22 Ref B: TYO201151001011 Ref C: 2024-09-29T04:25:47Z' status: code: 200 message: OK @@ -3108,39 +3107,38 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","createdAt":"2023-05-31T18:47:30.337Z","updatedAt":"2023-05-31T18:47:30.337Z","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:24:44.8577014Z","updatedAt":"2024-09-29T04:26:11Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '794' + - '944' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:48:31 GMT + - Sun, 29 Sep 2024 04:26:18 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 38e057c0-ebaa-4999-a63a-e56214f0f8b6 + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G3|2024-09-29T04:26:18 + x-msedge-ref: + - 'Ref A: 47B2627DE10944B89995E9DA4539343C Ref B: TYO201151001011 Ref C: 2024-09-29T04:26:18Z' status: code: 200 message: OK @@ -3148,123 +3146,120 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace show Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --tags --sku + - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","createdAt":"2023-05-31T18:47:30.337Z","updatedAt":"2023-05-31T18:48:46.327Z","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:24:44.8577014Z","updatedAt":"2024-09-29T04:26:11Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '792' + - '944' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:49:02 GMT + - Sun, 29 Sep 2024 04:26:20 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 97ab9041-8c3d-454f-9075-e87939e50c4a + x-ms-messaging-routing-id: + - NORTHCENTRALUS|NORTHCENTRALUS|G0|2024-09-29T04:26:20 + x-msedge-ref: + - 'Ref A: 8D77FD739C1446DF80EA46FDFF12BEF0 Ref B: TYO201100117023 Ref C: 2024-09-29T04:26:19Z' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"postMigrationName": "clipostmigration000008", "targetNamespace": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace show + - servicebus migration start Connection: - keep-alive + Content-Length: + - '241' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name + - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004/migrationConfigurations/%24default?api-version=2022-10-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","name":"sb-pre-nscli000005","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscli000005","createdAt":"2023-05-31T18:47:30.337Z","updatedAt":"2023-05-31T18:48:46.327Z","serviceBusEndpoint":"https://sb-pre-nscli000005.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004/migrationConfigurations/$default","name":"sb-pre-nscli000004","type":"Microsoft.ServiceBus/Namespaces/migrationconfigurations","properties":{"provisioningState":"Accepted","targetNamespace":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005","postMigrationName":"clipostmigration000008","migrationState":"Initiating"}}' headers: cache-control: - no-cache content-length: - - '792' + - '587' content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:49:03 GMT + - Sun, 29 Sep 2024 04:26:41 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: C2E9B2E9A61F444D884271354F14B4F9 Ref B: OSA221030116021 Ref C: 2024-09-29T04:26:20Z' status: code: 200 message: OK - request: - body: '{"properties": {"postMigrationName": "clipostmigration000008", "targetNamespace": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000005"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - servicebus migration start Connection: - keep-alive - Content-Length: - - '241' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: PUT + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004/migrationConfigurations/%24default?api-version=2022-10-01-preview response: body: @@ -3277,26 +3272,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:49:11 GMT + - Sun, 29 Sep 2024 04:26:41 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-msedge-ref: + - 'Ref A: D9238886E2A949DB84A1A62FA55FC3C9 Ref B: OSA221030116021 Ref C: 2024-09-29T04:26:41Z' status: code: 200 message: OK @@ -3314,7 +3304,7 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -3328,24 +3318,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:49:12 GMT + - Sun, 29 Sep 2024 04:27:12 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 55BF9EBD2EED4C989A01A0677C918CF3 Ref B: OSA221030116021 Ref C: 2024-09-29T04:27:11Z' status: code: 200 message: OK @@ -3363,7 +3350,7 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -3377,24 +3364,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:49:42 GMT + - Sun, 29 Sep 2024 04:27:43 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 72E11E607B6A4251B8348F5DC857DA63 Ref B: OSA221030116021 Ref C: 2024-09-29T04:27:43Z' status: code: 200 message: OK @@ -3412,7 +3396,7 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -3426,24 +3410,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:50:12 GMT + - Sun, 29 Sep 2024 04:28:14 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - - Service-Bus-Resource-Provider/SN1 + - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: B6CC5FE1EA744F1699FFBB05034A3B3F Ref B: OSA221030116021 Ref C: 2024-09-29T04:28:14Z' status: code: 200 message: OK @@ -3461,7 +3442,7 @@ interactions: ParameterSetName: - --resource-group --name --target-namespace --post-migration-name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004/migrationConfigurations/%24default?api-version=2022-10-01-preview response: @@ -3475,24 +3456,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 31 May 2023 18:50:43 GMT + - Sun, 29 Sep 2024 04:28:46 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 617C94BA6EA64981AECFB17E804EB739 Ref B: OSA221030116021 Ref C: 2024-09-29T04:28:45Z' status: code: 200 message: OK @@ -3512,7 +3490,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration000001/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscli000004/migrationConfigurations/%24default/revert?api-version=2022-10-01-preview response: @@ -3524,22 +3502,23 @@ interactions: content-length: - '0' date: - - Wed, 31 May 2023 18:50:43 GMT + - Sun, 29 Sep 2024 04:28:49 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 server-sb: - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 6003EFCDD93D49098D1B538F11EAA418 Ref B: OSA221030115033 Ref C: 2024-09-29T04:28:47Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace.yaml index b07ecb1ef4e..03c634813f2 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001","name":"cli_test_sb_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace","date":"2023-05-23T11:40:21Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001","name":"cli_test_sb_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace","date":"2024-09-29T06:42:04Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,17 +27,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:40:26 GMT + - Sun, 29 Sep 2024 06:42:07 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: E416128B9F5F4C56B699A6900AA283FC Ref B: TYO201151001034 Ref C: 2024-09-29T06:42:06Z' status: code: 200 message: OK @@ -59,12 +61,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005?api-version=2023-01-31 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005","name":"sb-identity1000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"8f39159a-7c8d-4aa5-87ae-5125ff8e75b0","clientId":"4392a857-f39b-43c7-8ff3-7fee5f8623d3"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005","name":"sb-identity1000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b","clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110"}}' headers: cache-control: - no-cache @@ -73,7 +75,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:40:28 GMT + - Sun, 29 Sep 2024 06:42:11 GMT expires: - '-1' location: @@ -82,10 +84,14 @@ interactions: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 163D5C00404B4306A5E3BDA93C6ECB4D Ref B: OSA221030115045 Ref C: 2024-09-29T06:42:07Z' status: code: 201 message: Created @@ -103,12 +109,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001","name":"cli_test_sb_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace","date":"2023-05-23T11:40:21Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001","name":"cli_test_sb_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace","date":"2024-09-29T06:42:04Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -117,17 +123,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:40:28 GMT + - Sun, 29 Sep 2024 06:42:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D23C7C1BBCA6476B881319DBAFB5E621 Ref B: OSA221030115053 Ref C: 2024-09-29T06:42:12Z' status: code: 200 message: OK @@ -149,12 +157,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.49.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006?api-version=2023-01-31 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006","name":"sb-identity2000006","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"190f3484-7a0e-4add-b1cd-08f24bf9ea4d","clientId":"e1c0ab41-5a65-4010-97b1-809387462957"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006","name":"sb-identity2000006","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f","clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa"}}' headers: cache-control: - no-cache @@ -163,7 +171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:40:30 GMT + - Sun, 29 Sep 2024 06:42:15 GMT expires: - '-1' location: @@ -172,1002 +180,118 @@ interactions: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 579E3ECBF705479FB87FF94CF9227588 Ref B: TYO201100113009 Ref C: 2024-09-29T06:42:13Z' status: code: 201 message: Created - request: - body: '{"identity": {"type": "None"}, "location": "eastus", "properties": {"disableLocalAuth": - true, "minimumTlsVersion": "1.1"}, "sku": {"name": "Standard", "tier": "Standard"}, - "tags": {"tag1": "value1", "tag2": "value2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - Content-Length: - - '217' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group --sku --location --tags --disable-local-auth --minimum-tls-version - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.1","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:40:33.473Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:40:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku --location --tags --disable-local-auth --minimum-tls-version - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.1","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:40:33.473Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:40:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku --location --tags --disable-local-auth --minimum-tls-version - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.1","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:40:33.473Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '750' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:41:04 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku --location --tags --disable-local-auth --minimum-tls-version - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.1","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:41:16.51Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '747' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:41:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --minimum-tls-version - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.1","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:41:16.51Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '747' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:41:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "East US", "properties": {"disableLocalAuth": true, "minimumTlsVersion": - "1.0", "premiumMessagingPartitions": 0, "publicNetworkAccess": "Enabled", "zoneRedundant": - false}, "sku": {"name": "Standard", "tier": "Standard"}, "tags": {"tag1": "value1", - "tag2": "value2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace update - Connection: - - keep-alive - Content-Length: - - '279' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group --minimum-tls-version - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Updating","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:41:42.047Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '751' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:41:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --minimum-tls-version - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Updating","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:41:42.047Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '751' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:41:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --minimum-tls-version - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:41:44.69Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '747' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:42:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"identity": {"type": "None"}, "location": "eastus", "sku": {"name": "Premium", - "tier": "Premium"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - Content-Length: - - '99' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group --sku --location - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:42:18.453Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '735' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:42:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku --location - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:42:18.453Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '735' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:42:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku --location - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:42:18.453Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '735' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:42:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku --location - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:42:18.453Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '735' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:43:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --sku --location - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:43:35.187Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:43:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --capacity --tags - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:43:35.187Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '733' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:43:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "East US", "properties": {"disableLocalAuth": false, "minimumTlsVersion": - "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": "Enabled", "zoneRedundant": - false}, "sku": {"capacity": 4, "name": "Premium", "tier": "Premium"}, "tags": - {"tag1": "value1", "tag2": "value2"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace update - Connection: - - keep-alive - Content-Length: - - '293' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group --capacity --tags - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:43:57.6Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '765' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:43:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --capacity --tags - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:43:57.6Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '765' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:43:57 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace update - Connection: - - keep-alive - ParameterSetName: - - --name --resource-group --capacity --tags - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:44:01.32Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '763' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:44:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null + body: '{"location": "eastus", "properties": {"disableLocalAuth": true, "minimumTlsVersion": + "1.1"}, "sku": {"name": "Standard", "tier": "Standard"}, "tags": {"tag1": "value1", + "tag2": "value2"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace update + - servicebus namespace create Connection: - keep-alive + Content-Length: + - '187' + Content-Type: + - application/json ParameterSetName: - - --name --resource-group --disable-local-auth + - --name --resource-group --sku --location --tags --disable-local-auth --minimum-tls-version User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:44:01.32Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:20.5804285Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '763' + - '904' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:44:29 GMT + - Sun, 29 Sep 2024 06:42:21 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 02ecea3e-49d9-4387-8b39-858dbf8ed648 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T06:42:20 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 3A860D7C1F4D4A09B33C8F69E3AFB978 Ref B: TYO201100116021 Ref C: 2024-09-29T06:42:16Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: '{"location": "East US", "properties": {"disableLocalAuth": true, "minimumTlsVersion": - "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": "Enabled", "zoneRedundant": - false}, "sku": {"capacity": 4, "name": "Premium", "tier": "Premium"}, "tags": - {"tag1": "value1", "tag2": "value2"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace update + - servicebus namespace create Connection: - keep-alive - Content-Length: - - '292' - Content-Type: - - application/json ParameterSetName: - - --name --resource-group --disable-local-auth + - --name --resource-group --sku --location --tags --disable-local-auth --minimum-tls-version User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Updating","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:44:36.517Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:20.5804285Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '766' + - '904' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:44:38 GMT + - Sun, 29 Sep 2024 06:42:22 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-messaging-activity-id: + - a951476e-f56e-48c8-bef2-374b1d20a1a3 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G11|2024-09-29T06:42:22 + x-msedge-ref: + - 'Ref A: 3B506735DE964D9B9E32BA5097BD3356 Ref B: TYO201100116021 Ref C: 2024-09-29T06:42:21Z' status: code: 200 message: OK @@ -1179,54 +303,48 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace update + - servicebus namespace create Connection: - keep-alive ParameterSetName: - - --name --resource-group --disable-local-auth + - --name --resource-group --sku --location --tags --disable-local-auth --minimum-tls-version User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:44:37.593Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:24.5492204Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '763' + - '901' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:44:38 GMT + - Sun, 29 Sep 2024 06:42:53 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c5d06e1f-00dd-4062-aa53-52eeeb2ae62a + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G1|2024-09-29T06:42:52 + x-msedge-ref: + - 'Ref A: 168288F8950444719F3AC6C092A5012A Ref B: TYO201100116021 Ref C: 2024-09-29T06:42:52Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006": - {}}}, "location": "eastus", "properties": {"premiumMessagingPartitions": 2, - "zoneRedundant": true}, "sku": {"capacity": 2, "name": "Premium", "tier": "Premium"}}' + body: '{"location": "eastus", "sku": {"name": "Premium", "tier": "Premium"}}' headers: Accept: - application/json @@ -1237,52 +355,48 @@ interactions: Connection: - keep-alive Content-Length: - - '598' + - '69' Content-Type: - application/json ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --sku --location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:44:44.253Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:42:57.6286627Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1282' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:44:44 GMT + - Sun, 29 Sep 2024 06:42:57 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a3854774-e00a-4e47-9353-d0655a5f21f4 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G6|2024-09-29T06:42:57 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: E228AEF7FFDD48508793033227AD2A35 Ref B: TYO201151002036 Ref C: 2024-09-29T06:42:53Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1295,43 +409,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --sku --location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:44:44.253Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:42:57.6286627Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1282' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:44:44 GMT + - Sun, 29 Sep 2024 06:42:57 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 07aaa0a4-3db0-4e5f-b7fd-9a5d51dc27b1 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G6|2024-09-29T06:42:58 + x-msedge-ref: + - 'Ref A: 0E99713FB1B749A1B540D7F456748600 Ref B: TYO201151002036 Ref C: 2024-09-29T06:42:58Z' status: code: 200 message: OK @@ -1347,43 +457,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --sku --location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:44:44.253Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:42:57.6286627Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1282' + - '889' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:45:15 GMT + - Sun, 29 Sep 2024 06:43:28 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 69d42abe-aae2-4a3a-8fdc-b7731e59c30f + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G3|2024-09-29T06:43:29 + x-msedge-ref: + - 'Ref A: 17A84ECED66445109336CED26D9BB11E Ref B: TYO201151002036 Ref C: 2024-09-29T06:43:28Z' status: code: 200 message: OK @@ -1399,43 +505,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --sku --location User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:44:44.253Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:43:56.2469947Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1282' + - '886' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:45:46 GMT + - Sun, 29 Sep 2024 06:43:59 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b8cb8df5-bc1a-44b9-9ef8-d4a6b92367be + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G5|2024-09-29T06:44:00 + x-msedge-ref: + - 'Ref A: 2F6FF43FF8A9435687EF1D521D277BF9 Ref B: TYO201151002036 Ref C: 2024-09-29T06:43:59Z' status: code: 200 message: OK @@ -1443,103 +545,105 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --capacity --tags User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:44:44.253Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:43:56.2469947Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1282' + - '886' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:46:16 GMT + - Sun, 29 Sep 2024 06:44:01 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b87a619c-f5b9-41ae-bed6-9a2d7a396183 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G9|2024-09-29T06:44:01 + x-msedge-ref: + - 'Ref A: DD9DBCCCECAA40D6B208E853E9A91D79 Ref B: OSA221030113049 Ref C: 2024-09-29T06:44:00Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "eastus", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 4, "name": "Premium", + "tier": "Premium"}, "tags": {"tag1": "value1", "tag2": "value2"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive + Content-Length: + - '423' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --capacity --tags User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:05.0441315Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' headers: cache-control: - no-cache content-length: - - '1278' + - '918' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:46:46 GMT + - Sun, 29 Sep 2024 06:44:05 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b80cfe9f-4679-408e-ac24-2ac47db04be7 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G7|2024-09-29T06:44:05 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 24413300FB3C49FEB32B547D0FDC5E9A Ref B: OSA221030113049 Ref C: 2024-09-29T06:44:01Z' status: code: 200 message: OK @@ -1551,47 +655,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --capacity --tags User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:05.0441315Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' headers: cache-control: - no-cache content-length: - - '1278' + - '918' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:47:16 GMT + - Sun, 29 Sep 2024 06:44:06 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ad382ba7-b9ed-4116-a813-f9e234f5470f + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G10|2024-09-29T06:44:07 + x-msedge-ref: + - 'Ref A: 32C125CF0E664422BA02CFCAD3F430FC Ref B: OSA221030113049 Ref C: 2024-09-29T06:44:06Z' status: code: 200 message: OK @@ -1603,47 +703,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --capacity --tags User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:19.0287362Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' headers: cache-control: - no-cache content-length: - - '1278' + - '917' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:47:47 GMT + - Sun, 29 Sep 2024 06:44:37 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 0022be65-9615-4c78-b4fd-2e8aab7478ef + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G5|2024-09-29T06:44:38 + x-msedge-ref: + - 'Ref A: 4BB75DA31854423B9E2B62AD511EE84D Ref B: OSA221030113049 Ref C: 2024-09-29T06:44:37Z' status: code: 200 message: OK @@ -1651,103 +747,105 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --disable-local-auth User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:19.0287362Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' headers: cache-control: - no-cache content-length: - - '1278' + - '917' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:48:17 GMT + - Sun, 29 Sep 2024 06:44:39 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 6d01b245-88c1-44f6-82f8-f616c28c856d + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G14|2024-09-29T06:44:39 + x-msedge-ref: + - 'Ref A: 0DC9AF56C91740E394549FB200793C4A Ref B: OSA221030116047 Ref C: 2024-09-29T06:44:38Z' status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "properties": {"disableLocalAuth": true, "geoDataReplication": + {"locations": [{"locationName": "eastus", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 4, "name": "Premium", + "tier": "Premium"}, "tags": {"tag1": "value1", "tag2": "value2"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive + Content-Length: + - '422' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --disable-local-auth User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:43.2644396Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' headers: cache-control: - no-cache content-length: - - '1278' + - '917' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:48:47 GMT + - Sun, 29 Sep 2024 06:44:47 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 33dc92cb-9955-4cec-b976-8fb6012a4a51 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G12|2024-09-29T06:44:43 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 8BD790E6E4F44F3DABF6D7B9AA833E83 Ref B: OSA221030116047 Ref C: 2024-09-29T06:44:40Z' status: code: 200 message: OK @@ -1759,47 +857,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --disable-local-auth User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:43.2644396Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' headers: cache-control: - no-cache content-length: - - '1278' + - '917' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:49:19 GMT + - Sun, 29 Sep 2024 06:44:48 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - cc3751e8-9b97-497e-9143-9c3c01a36d15 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G1|2024-09-29T06:44:49 + x-msedge-ref: + - 'Ref A: 6A9ADA5410674549905C11788B32C7AF Ref B: OSA221030116047 Ref C: 2024-09-29T06:44:47Z' status: code: 200 message: OK @@ -1811,102 +905,106 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --disable-local-auth User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:45:00.1085662Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' headers: cache-control: - no-cache content-length: - - '1278' + - '916' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:49:49 GMT + - Sun, 29 Sep 2024 06:45:20 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 07cc64fa-9285-46fe-8a92-0bdd4b9b34b4 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T06:45:20 + x-msedge-ref: + - 'Ref A: 039CD5F1393C4CE7AC0F662198C8FA10 Ref B: OSA221030116047 Ref C: 2024-09-29T06:45:19Z' status: code: 200 message: OK - request: - body: null + body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006": + {}}}, "location": "eastus", "properties": {"premiumMessagingPartitions": 2, + "zoneRedundant": true}, "sku": {"capacity": 2, "name": "Premium", "tier": "Premium"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - servicebus namespace create Connection: - keep-alive + Content-Length: + - '598' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned --capacity --zone-redundant --premium-messaging-partitions User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' headers: cache-control: - no-cache content-length: - - '1278' + - '1627' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:50:19 GMT + - Sun, 29 Sep 2024 06:45:28 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - e0f75a1c-b79f-4983-a781-c16745f6a94f + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G11|2024-09-29T06:45:28 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 5839A90E4ECB428C8E63304678A71EF6 Ref B: TYO201151006062 Ref C: 2024-09-29T06:45:20Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1922,40 +1020,38 @@ interactions: - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned --capacity --zone-redundant --premium-messaging-partitions User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' headers: cache-control: - no-cache content-length: - - '1278' + - '1627' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:50:49 GMT + - Sun, 29 Sep 2024 06:45:29 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5a613e09-ff8e-4fe8-8854-e3089efb216d + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G10|2024-09-29T06:45:29 + x-msedge-ref: + - 'Ref A: 90CC045576D745798ED8D8E7556B16CE Ref B: TYO201151006062 Ref C: 2024-09-29T06:45:28Z' status: code: 200 message: OK @@ -1974,40 +1070,38 @@ interactions: - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned --capacity --zone-redundant --premium-messaging-partitions User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:46:18.623Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' headers: cache-control: - no-cache content-length: - - '1278' + - '1627' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:51:19 GMT + - Sun, 29 Sep 2024 06:46:00 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 447f8261-2faf-48bf-a99a-fae50ac30a7d + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G6|2024-09-29T06:46:00 + x-msedge-ref: + - 'Ref A: EEA78EC394A34D7B81B7A9D2451F8F9A Ref B: TYO201151006062 Ref C: 2024-09-29T06:45:59Z' status: code: 200 message: OK @@ -2026,40 +1120,38 @@ interactions: - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned --capacity --zone-redundant --premium-messaging-partitions User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"4392a857-f39b-43c7-8ff3-7fee5f8623d3","principalId":"8f39159a-7c8d-4aa5-87ae-5125ff8e75b0"}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"ActivatingIdentity","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:51:48.387Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' headers: cache-control: - no-cache content-length: - - '1380' + - '1627' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:51:50 GMT + - Sun, 29 Sep 2024 06:46:30 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b95f1e16-1f8c-4f77-b6e1-b669b7dea3bc + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G2|2024-09-29T06:46:31 + x-msedge-ref: + - 'Ref A: B6CFD58808544D5F91E866C6A8C575FD Ref B: TYO201151006062 Ref C: 2024-09-29T06:46:30Z' status: code: 200 message: OK @@ -2078,40 +1170,38 @@ interactions: - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned --capacity --zone-redundant --premium-messaging-partitions User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"e1c0ab41-5a65-4010-97b1-809387462957","principalId":"190f3484-7a0e-4add-b1cd-08f24bf9ea4d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"4392a857-f39b-43c7-8ff3-7fee5f8623d3","principalId":"8f39159a-7c8d-4aa5-87ae-5125ff8e75b0"}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:51:53.593Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' headers: cache-control: - no-cache content-length: - - '1473' + - '1627' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:52:20 GMT + - Sun, 29 Sep 2024 06:47:01 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 509b20b5-1c49-40fe-adc1-00aa08529222 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G3|2024-09-29T06:47:01 + x-msedge-ref: + - 'Ref A: 283796C3B7654EA5B43C1C7BA075C945 Ref B: TYO201151006062 Ref C: 2024-09-29T06:47:01Z' status: code: 200 message: OK @@ -2119,52 +1209,49 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace list + - servicebus namespace create Connection: - keep-alive ParameterSetName: - - --resource-group + - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned + --capacity --zone-redundant --premium-messaging-partitions User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview response: body: - string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:41:44.69Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:44:37.593Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"e1c0ab41-5a65-4010-97b1-809387462957","principalId":"190f3484-7a0e-4add-b1cd-08f24bf9ea4d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"4392a857-f39b-43c7-8ff3-7fee5f8623d3","principalId":"8f39159a-7c8d-4aa5-87ae-5125ff8e75b0"}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:51:53.593Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:47:10.8619607Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' headers: cache-control: - no-cache content-length: - - '2997' + - '1625' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:52:21 GMT + - Sun, 29 Sep 2024 06:47:32 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5b309ed2-2738-43d2-a8f8-34178fafff80 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G12|2024-09-29T06:47:32 + x-msedge-ref: + - 'Ref A: FCF381F7011142129CDBF978F4ED7CDB Ref B: TYO201151006062 Ref C: 2024-09-29T06:47:32Z' status: code: 200 message: OK @@ -2179,143 +1266,41 @@ interactions: - servicebus namespace list Connection: - keep-alive + ParameterSetName: + - --resource-group User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces?api-version=2023-01-01-preview response: body: - string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/v-carrue-powershelltest/providers/Microsoft.ServiceBus/namespaces/v-carrue-ns1","name":"v-carrue-ns1","type":"Microsoft.ServiceBus/Namespaces","location":"West - US 2","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:v-carrue-ns1","createdAt":"2021-04-08T23:48:28.973Z","updatedAt":"2021-04-08T23:49:11.203Z","serviceBusEndpoint":"https://v-carrue-ns1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Basic","tier":"Basic"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameSbusTest","name":"SuparameSbusTest","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparamesbustest","createdAt":"2021-06-01T19:19:37.613Z","updatedAt":"2021-06-01T19:20:20.14Z","serviceBusEndpoint":"https://SuparameSbusTest.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SB-Intern2021ResourceGroup/providers/Microsoft.ServiceBus/namespaces/sophia-explore","name":"sophia-explore","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sophia-explore","createdAt":"2021-06-15T21:30:00.227Z","updatedAt":"2021-06-15T21:30:41.93Z","serviceBusEndpoint":"https://sophia-explore.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardnewapi","name":"standardnewapi","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:standardnewapi","createdAt":"2021-07-12T17:45:32.617Z","updatedAt":"2021-07-12T17:46:16.403Z","serviceBusEndpoint":"https://standardnewapi.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Ardsouza-MoveTest-WestEurope-Source-1/providers/Microsoft.ServiceBus/namespaces/spsbusns08043","name":"spsbusns08043","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:spsbusns08043","createdAt":"2021-08-04T22:07:17.28Z","updatedAt":"2021-08-04T22:08:01.633Z","serviceBusEndpoint":"https://spsbusns08043.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5506","name":"sdk-Namespace-5506","type":"Microsoft.ServiceBus/Namespaces","location":"West - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5506","createdAt":"2021-09-22T21:15:19.707Z","updatedAt":"2021-09-22T21:24:59.14Z","serviceBusEndpoint":"https://sdk-Namespace-5506.servicebus.windows.net:443/","status":"Active","alternateName":"sdk-PostMigration-5506"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkwrj55aatxlgxucsba6igeidap7hqov64fz6i6fhkxg2q66tsychlm5im/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclidurp","name":"servicebus-nsclidurp","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclidurp","createdAt":"2021-09-30T00:42:42.94Z","updatedAt":"2021-09-30T00:43:27.07Z","serviceBusEndpoint":"https://servicebus-nsclidurp.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkb6dybi7i77qadmwp3x7qn4fsvzex5svqgkd23ljbqqekhpuqpewxl5ox/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclimdvj","name":"servicebus-nsclimdvj","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclimdvj","createdAt":"2021-09-30T01:41:09.41Z","updatedAt":"2021-09-30T01:41:52.31Z","serviceBusEndpoint":"https://servicebus-nsclimdvj.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkteenbwgqgyyl2y6iy7uyajvcvzeffcawclhjplzvgypwqep53ptcz56k/providers/Microsoft.ServiceBus/namespaces/servicebus-nscligk4i","name":"servicebus-nscligk4i","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscligk4i","createdAt":"2021-09-30T02:07:26.58Z","updatedAt":"2021-09-30T02:08:08.96Z","serviceBusEndpoint":"https://servicebus-nscligk4i.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7912","name":"sdk-Namespace-7912","type":"Microsoft.ServiceBus/Namespaces","location":"West - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7912","createdAt":"2021-10-25T10:43:06.873Z","updatedAt":"2021-10-25T11:35:04.843Z","serviceBusEndpoint":"https://sdk-Namespace-7912.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6064","name":"sdk-Namespace-6064","type":"Microsoft.ServiceBus/Namespaces","location":"West - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6064","createdAt":"2021-10-25T11:28:25.843Z","updatedAt":"2021-10-25T11:35:10.567Z","serviceBusEndpoint":"https://sdk-Namespace-6064.servicebus.windows.net:443/","status":"Active","alternateName":"sdk-PostMigration-4665"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardregressiontest","name":"standardregressiontest","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:standardregressiontest","createdAt":"2021-11-02T05:22:12.01Z","updatedAt":"2021-11-02T05:22:56.543Z","serviceBusEndpoint":"https://standardregressiontest.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakeschiller-synthetics/providers/Microsoft.ServiceBus/namespaces/synthetics-sb-ns","name":"synthetics-sb-ns","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"jms-for":"cache"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:synthetics-sb-ns","createdAt":"2022-01-26T21:42:54.873Z","updatedAt":"2022-07-08T18:29:09.99Z","serviceBusEndpoint":"https://synthetics-sb-ns.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/sbprem-perf-cbn-ns-1","name":"sbprem-perf-cbn-ns-1","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Failed","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbprem-perf-cbn-ns-1","createdAt":"2022-01-31T23:43:38.71Z","updatedAt":"2022-06-01T21:49:33.537Z","serviceBusEndpoint":"https://sbprem-perf-cbn-ns-1.servicebus.windows.net:443/","status":"Activating"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg","name":"sb-eldert-pg","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg","createdAt":"2022-02-09T22:18:45.293Z","updatedAt":"2022-04-04T02:57:41.057Z","serviceBusEndpoint":"https://sb-eldert-pg.servicebus.windows.net:443/","status":"Active","alternateName":"sb-eldert-pg-standard"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-8049","name":"ServiceBus-STDNamespace-8049","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-8049","createdAt":"2022-02-16T14:59:22.237Z","updatedAt":"2022-02-16T15:06:07.67Z","serviceBusEndpoint":"https://ServiceBus-STDNamespace-8049.servicebus.windows.net:443/","status":"Active","alternateName":"PostMigration-Name-3646"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-8744","name":"ServiceBus-PRENamespace-8744","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-8744","createdAt":"2022-02-16T15:00:30.94Z","updatedAt":"2022-02-16T15:05:57.88Z","serviceBusEndpoint":"https://ServiceBus-PRENamespace-8744.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliast2seb6uiraga2np5lweiufaxq64glozljlzhjhj3fcla4zct3swtvszahw/providers/Microsoft.ServiceBus/namespaces/sb-nscli4sweuzamk5wa","name":"sb-nscli4sweuzamk5wa","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli4sweuzamk5wa","createdAt":"2022-02-22T04:06:39.203Z","updatedAt":"2022-02-22T04:11:45.95Z","serviceBusEndpoint":"https://sb-nscli4sweuzamk5wa.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliast2seb6uiraga2np5lweiufaxq64glozljlzhjhj3fcla4zct3swtvszahw/providers/Microsoft.ServiceBus/namespaces/sb-nsclitm6qtnps6jqu","name":"sb-nsclitm6qtnps6jqu","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nsclitm6qtnps6jqu","createdAt":"2022-02-22T04:08:21.133Z","updatedAt":"2022-02-22T04:11:48.73Z","serviceBusEndpoint":"https://sb-nsclitm6qtnps6jqu.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-minimum-tls-sample/providers/Microsoft.ServiceBus/namespaces/sb-minimum-tls-sample","name":"sb-minimum-tls-sample","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"Owner":"Eldert Grootenboer"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-minimum-tls-sample","createdAt":"2022-03-21T17:30:32.467Z","updatedAt":"2022-03-21T17:31:16.66Z","serviceBusEndpoint":"https://sb-minimum-tls-sample.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbusns0412","name":"spsbusns0412","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:spsbusns0412","createdAt":"2022-04-12T21:39:51.047Z","updatedAt":"2022-04-12T21:40:35.39Z","serviceBusEndpoint":"https://spsbusns0412.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/vijayperftest2","name":"vijayperftest2","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Failed","metricId":"326100e2-f69d-4268-8503-075374f62b6e:vijayperftest2","createdAt":"2022-04-14T22:48:57.633Z","updatedAt":"2022-06-01T21:49:33.53Z","serviceBusEndpoint":"https://vijayperftest2.servicebus.windows.net:443/","status":"Activating"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-empower-your-azure-iac-with-bicep/providers/Microsoft.ServiceBus/namespaces/contoso-service-bus","name":"contoso-service-bus","type":"Microsoft.ServiceBus/Namespaces","location":"West - US 2","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:contoso-service-bus","createdAt":"2022-04-15T21:10:11.32Z","updatedAt":"2022-04-15T21:10:54.23Z","serviceBusEndpoint":"https://contoso-service-bus.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7033","name":"sdk-Namespace-7033","type":"Microsoft.ServiceBus/Namespaces","location":"Australia - East","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7033","createdAt":"2022-04-21T22:01:13.913Z","updatedAt":"2022-04-21T22:01:58.623Z","serviceBusEndpoint":"https://sdk-Namespace-7033.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5025","name":"sdk-Namespace-5025","type":"Microsoft.ServiceBus/Namespaces","location":"Australia - East","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5025","createdAt":"2022-04-21T22:16:39.923Z","updatedAt":"2022-04-21T22:17:25.36Z","serviceBusEndpoint":"https://sdk-Namespace-5025.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsPMmintls","name":"jagsPMmintls","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagspmmintls","createdAt":"2022-04-27T18:09:53.973Z","updatedAt":"2022-04-27T18:30:41.993Z","serviceBusEndpoint":"https://jagsPMmintls.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/vijayperftest7","name":"vijayperftest7","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Failed","metricId":"326100e2-f69d-4268-8503-075374f62b6e:vijayperftest7","createdAt":"2022-04-28T00:22:48.597Z","updatedAt":"2022-06-01T21:49:33.53Z","serviceBusEndpoint":"https://vijayperftest7.servicebus.windows.net:443/","status":"Activating"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/sptlsns0510","name":"sptlsns0510","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sptlsns0510","createdAt":"2022-05-10T18:37:45.837Z","updatedAt":"2022-05-10T18:38:29.23Z","serviceBusEndpoint":"https://sptlsns0510.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_privateyh52pynvfafabynpghrgrtmgx3cg2exbaafx6a3dlwhxxnwvnuredxr4/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclifr66","name":"servicebus-nsclifr66","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/a8c89231-6cd1-47a5-98ac-87e51283ef43","name":"a8c89231-6cd1-47a5-98ac-87e51283ef43","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_privateyh52pynvfafabynpghrgrtmgx3cg2exbaafx6a3dlwhxxnwvnuredxr4/providers/Microsoft.Network/privateEndpoints/cli-pe-ay4qn7os5r3w3j4yw"},"privateLinkServiceConnectionState":{"status":"Rejected","description":""},"groupIds":["namespace"]}}],"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclifr66","createdAt":"2022-05-13T17:11:57.133Z","updatedAt":"2022-05-13T17:13:15.163Z","serviceBusEndpoint":"https://servicebus-nsclifr66.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbuspremns0516","name":"spsbuspremns0516","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:spsbuspremns0516","createdAt":"2022-05-16T19:10:24.013Z","updatedAt":"2023-05-21T22:06:43.883Z","serviceBusEndpoint":"https://spsbuspremns0516.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/spsbuspremrgimport/providers/Microsoft.ServiceBus/namespaces/spsbuspremnsimport0516","name":"spsbuspremnsimport0516","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:spsbuspremnsimport0516","createdAt":"2022-05-16T20:03:33.607Z","updatedAt":"2022-05-16T20:04:46.26Z","serviceBusEndpoint":"https://spsbuspremnsimport0516.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/spsbuspremimportrg2/providers/Microsoft.ServiceBus/namespaces/spsbuspremnsimport05162","name":"spsbuspremnsimport05162","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:spsbuspremnsimport05162","createdAt":"2022-05-16T20:09:18.567Z","updatedAt":"2023-05-21T22:07:09.607Z","serviceBusEndpoint":"https://spsbuspremnsimport05162.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/spsbusarmrg0516/providers/Microsoft.ServiceBus/namespaces/spsbusarmns0516","name":"spsbusarmns0516","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:spsbusarmns0516","createdAt":"2022-05-17T01:21:33.28Z","updatedAt":"2023-05-21T22:01:05.883Z","serviceBusEndpoint":"https://spsbusarmns0516.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-implementing-an-event-sourcing-strategy-on-azure/providers/Microsoft.ServiceBus/namespaces/sb-implementing-event-sourcing-strategy","name":"sb-implementing-event-sourcing-strategy","type":"Microsoft.ServiceBus/Namespaces","location":"West - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-implementing-event-sourcing-strategy","createdAt":"2022-05-27T00:56:33.893Z","updatedAt":"2022-12-06T18:15:02.64Z","serviceBusEndpoint":"https://sb-implementing-event-sourcing-strategy.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-premium-pg","name":"sb-eldert-premium-pg","type":"Microsoft.ServiceBus/Namespaces","location":"West - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-premium-pg","createdAt":"2022-05-31T22:20:50.39Z","updatedAt":"2022-10-14T20:48:17.98Z","serviceBusEndpoint":"https://sb-eldert-premium-pg.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/geodrbackup","name":"geodrbackup","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:geodrbackup","createdAt":"2022-06-03T10:07:15.727Z","updatedAt":"2022-06-10T08:03:55.733Z","serviceBusEndpoint":"https://geodrbackup.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8587","name":"sdk-Namespace-8587","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8587","createdAt":"2022-06-08T13:09:22.407Z","updatedAt":"2023-04-23T22:52:40.727Z","serviceBusEndpoint":"https://sdk-Namespace-8587.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6837","name":"sdk-Namespace-6837","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6837","createdAt":"2022-06-08T13:31:34.743Z","updatedAt":"2022-06-08T13:33:16.23Z","serviceBusEndpoint":"https://sdk-Namespace-6837.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS2/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8810","name":"sdk-Namespace-8810","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8810","createdAt":"2022-06-08T13:32:47.733Z","updatedAt":"2022-06-08T13:34:01.107Z","serviceBusEndpoint":"https://sdk-Namespace-8810.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-4885","name":"sdk-Namespace-4885","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4885","createdAt":"2022-06-08T13:38:15.643Z","updatedAt":"2022-06-08T13:51:26.41Z","serviceBusEndpoint":"https://sdk-Namespace-4885.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS2/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9022","name":"sdk-Namespace-9022","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{"tag3":"value3","tag4":"value4"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-9022","createdAt":"2022-06-08T13:54:41.563Z","updatedAt":"2022-06-08T13:56:31.21Z","serviceBusEndpoint":"https://sdk-Namespace-9022.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/geodrsec","name":"geodrsec","type":"Microsoft.ServiceBus/Namespaces","location":"West - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:geodrsec","createdAt":"2022-06-10T06:30:54.383Z","updatedAt":"2022-06-10T08:03:57.317Z","serviceBusEndpoint":"https://geodrsec.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/contoso-service-bus-ns","name":"contoso-service-bus-ns","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:contoso-service-bus-ns","createdAt":"2022-06-14T20:02:39.237Z","updatedAt":"2022-06-14T20:03:22.84Z","serviceBusEndpoint":"https://contoso-service-bus-ns.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbusns0617","name":"spsbusns0617","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:spsbusns0617","createdAt":"2022-06-17T15:16:10.293Z","updatedAt":"2022-06-17T15:16:54.407Z","serviceBusEndpoint":"https://spsbusns0617.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9515","name":"sdk-Namespace-9515","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-9515","createdAt":"2022-06-20T08:03:37.943Z","updatedAt":"2022-06-20T08:21:57.427Z","serviceBusEndpoint":"https://sdk-Namespace-9515.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-356","name":"sdk-Namespace-356","type":"Microsoft.ServiceBus/Namespaces","location":"West - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-356","createdAt":"2022-06-20T10:17:56.817Z","updatedAt":"2022-06-20T10:24:54.94Z","serviceBusEndpoint":"https://sdk-Namespace-356.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7844","name":"sdk-Namespace-7844","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7844","createdAt":"2022-06-20T10:20:07.663Z","updatedAt":"2022-06-20T10:24:51.11Z","serviceBusEndpoint":"https://sdk-Namespace-7844.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7080","name":"sdk-Namespace-7080","type":"Microsoft.ServiceBus/Namespaces","location":"West - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7080","createdAt":"2022-06-20T10:25:57.817Z","updatedAt":"2022-06-20T10:34:17.16Z","serviceBusEndpoint":"https://sdk-Namespace-7080.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8820","name":"sdk-Namespace-8820","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8820","createdAt":"2022-06-20T10:28:08.497Z","updatedAt":"2022-06-20T10:31:58.61Z","serviceBusEndpoint":"https://sdk-Namespace-8820.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8391","name":"sdk-Namespace-8391","type":"Microsoft.ServiceBus/Namespaces","location":"West - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8391","createdAt":"2022-06-20T15:21:25.033Z","updatedAt":"2022-06-20T15:38:16.48Z","serviceBusEndpoint":"https://sdk-Namespace-8391.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7648","name":"sdk-Namespace-7648","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7648","createdAt":"2022-06-20T15:23:34.99Z","updatedAt":"2022-06-20T15:37:49.787Z","serviceBusEndpoint":"https://sdk-Namespace-7648.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6665","name":"sdk-Namespace-6665","type":"Microsoft.ServiceBus/Namespaces","location":"West - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6665","createdAt":"2022-06-20T15:35:25.98Z","updatedAt":"2022-06-20T15:49:36.68Z","serviceBusEndpoint":"https://sdk-Namespace-6665.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-4813","name":"sdk-Namespace-4813","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-4813","createdAt":"2022-06-20T15:38:10.15Z","updatedAt":"2022-06-20T15:54:02.917Z","serviceBusEndpoint":"https://sdk-Namespace-4813.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsusbrg621/providers/Microsoft.ServiceBus/namespaces/testvinsustns621","name":"testvinsustns621","type":"Microsoft.ServiceBus/Namespaces","location":"West - US 2","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvinsustns621","createdAt":"2022-06-21T17:52:08.463Z","updatedAt":"2022-06-21T17:52:51.333Z","serviceBusEndpoint":"https://testvinsustns621.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DefaultResourceGroup-EUS2/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7743","name":"sdk-Namespace-7743","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{"tag3":"value3","tag4":"value4"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7743","createdAt":"2022-06-22T05:36:47.6Z","updatedAt":"2022-06-22T05:38:36.483Z","serviceBusEndpoint":"https://sdk-Namespace-7743.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7874/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-81","name":"ServiceBus-STDNamespace-81","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-81","createdAt":"2022-06-25T16:29:39.377Z","updatedAt":"2022-06-25T16:30:23.5Z","serviceBusEndpoint":"https://ServiceBus-STDNamespace-81.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7874/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-5412","name":"ServiceBus-PRENamespace-5412","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-5412","createdAt":"2022-06-25T16:30:48.453Z","updatedAt":"2022-06-25T16:32:07.38Z","serviceBusEndpoint":"https://ServiceBus-PRENamespace-5412.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGName-5648/providers/Microsoft.ServiceBus/namespaces/Namespace1-1879","name":"Namespace1-1879","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{"Tag1":"Tag1Value"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-1879","createdAt":"2022-06-25T18:02:09.607Z","updatedAt":"2022-06-25T18:02:53.07Z","serviceBusEndpoint":"https://Namespace1-1879.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7723/providers/Microsoft.ServiceBus/namespaces/ServiceBus-Namespace-9941","name":"ServiceBus-Namespace-9941","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-namespace-9941","createdAt":"2022-06-27T05:30:19.03Z","updatedAt":"2022-06-27T05:35:38.073Z","serviceBusEndpoint":"https://ServiceBus-Namespace-9941.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7723/providers/Microsoft.ServiceBus/namespaces/ServiceBus-Namespace-6576","name":"ServiceBus-Namespace-6576","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-namespace-6576","createdAt":"2022-06-27T05:32:01.23Z","updatedAt":"2022-06-27T05:35:33.557Z","serviceBusEndpoint":"https://ServiceBus-Namespace-6576.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Basic","tier":"Basic"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/geguirgu/providers/Microsoft.ServiceBus/namespaces/geguirgu-servicebus","name":"geguirgu-servicebus","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:geguirgu-servicebus","createdAt":"2022-06-28T17:31:06.9Z","updatedAt":"2022-06-28T17:31:50.843Z","serviceBusEndpoint":"https://geguirgu-servicebus.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testservicebusRG-6007/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt6809","name":"testnamespacemgmt6809","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"identity":{"principalId":"79ab4c89-6a57-4dfd-8334-10adec71cecc","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt6809","createdAt":"2022-08-03T12:04:00.99Z","updatedAt":"2023-05-06T11:59:08.627Z","serviceBusEndpoint":"https://testnamespacemgmt6809.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testservicebusRG-569/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt1331","name":"testnamespacemgmt1331","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt1331","createdAt":"2022-08-04T05:27:45.82Z","updatedAt":"2022-08-04T05:28:57.907Z","serviceBusEndpoint":"https://testnamespacemgmt1331.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testservicebusRG-3931/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt7504","name":"testnamespacemgmt7504","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt7504","createdAt":"2022-08-04T05:46:10.67Z","updatedAt":"2022-08-04T05:47:23.873Z","serviceBusEndpoint":"https://testnamespacemgmt7504.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testservicebusRG-74/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt1417","name":"testnamespacemgmt1417","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt1417","createdAt":"2022-08-04T06:02:23.22Z","updatedAt":"2022-08-04T06:03:35.823Z","serviceBusEndpoint":"https://testnamespacemgmt1417.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testservicebusRG-4710/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt8453","name":"testnamespacemgmt8453","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt8453","createdAt":"2022-08-04T08:15:34.403Z","updatedAt":"2022-08-04T08:16:39.06Z","serviceBusEndpoint":"https://testnamespacemgmt8453.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testservicebusRG-4749/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt2719","name":"testnamespacemgmt2719","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt2719","createdAt":"2022-08-04T08:19:34.51Z","updatedAt":"2022-08-04T08:20:55.813Z","serviceBusEndpoint":"https://testnamespacemgmt2719.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8751","name":"sdk-Namespace-8751","type":"Microsoft.ServiceBus/Namespaces","location":"Australia - East","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8751","createdAt":"2022-08-05T05:24:49.13Z","updatedAt":"2022-08-05T05:25:33.72Z","serviceBusEndpoint":"https://sdk-Namespace-8751.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGTestingCreateCluster/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-9395","name":"sdk-Namespace-9395","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-9395","createdAt":"2022-08-05T05:29:56.073Z","updatedAt":"2022-08-05T05:39:34.333Z","serviceBusEndpoint":"https://sdk-Namespace-9395.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8877","name":"sdk-Namespace-8877","type":"Microsoft.ServiceBus/Namespaces","location":"West - Central US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8877","createdAt":"2022-08-05T06:42:12.9Z","updatedAt":"2022-08-05T06:52:48.643Z","serviceBusEndpoint":"https://sdk-Namespace-8877.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-818","name":"sdk-Namespace-818","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-818","createdAt":"2022-08-05T06:44:15.33Z","updatedAt":"2022-08-05T06:54:04.78Z","serviceBusEndpoint":"https://sdk-Namespace-818.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8973","name":"sdk-Namespace-8973","type":"Microsoft.ServiceBus/Namespaces","location":"Australia - East","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8973","createdAt":"2022-08-05T08:05:40.303Z","updatedAt":"2022-08-05T08:06:24.6Z","serviceBusEndpoint":"https://sdk-Namespace-8973.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-6102","name":"ServiceBus-STDNamespace-6102","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-6102","createdAt":"2022-08-15T04:47:52.1Z","updatedAt":"2022-08-15T04:54:51.313Z","serviceBusEndpoint":"https://ServiceBus-STDNamespace-6102.servicebus.windows.net:443/","status":"Active","alternateName":"PostMigration-Name-8545"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-3686","name":"ServiceBus-PRENamespace-3686","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-3686","createdAt":"2022-08-15T04:48:55.11Z","updatedAt":"2022-08-15T04:54:48.803Z","serviceBusEndpoint":"https://ServiceBus-PRENamespace-3686.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ","name":"ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-reallynonaz","createdAt":"2022-08-15T17:11:52.113Z","updatedAt":"2022-08-15T17:38:25.417Z","serviceBusEndpoint":"https://ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap","name":"ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/b6864f23-00b1-4284-ae74-5531b896adef","name":"b6864f23-00b1-4284-ae74-5531b896adef","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"Central - US EUAP","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.Network/privateEndpoints/pve1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}],"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-nonaz-cuseuap","createdAt":"2022-08-15T17:30:08.67Z","updatedAt":"2022-08-15T17:38:19.193Z","serviceBusEndpoint":"https://ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-276","name":"ServiceBus-STDNamespace-276","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-276","createdAt":"2022-08-16T05:32:29.537Z","updatedAt":"2022-08-16T05:39:11.66Z","serviceBusEndpoint":"https://ServiceBus-STDNamespace-276.servicebus.windows.net:443/","status":"Active","alternateName":"PostMigration-Name-9658"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-9080","name":"ServiceBus-PRENamespace-9080","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-9080","createdAt":"2022-08-16T05:33:33.527Z","updatedAt":"2022-08-16T05:39:09.86Z","serviceBusEndpoint":"https://ServiceBus-PRENamespace-9080.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSV2","name":"testPSV2","type":"Microsoft.ServiceBus/Namespaces","location":"Australia - East","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpsv2","createdAt":"2022-08-17T11:12:02.61Z","updatedAt":"2022-08-17T12:33:05.387Z","serviceBusEndpoint":"https://testPSV2.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSStandard","name":"testPSStandard","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpsstandard","createdAt":"2022-08-17T12:29:22.427Z","updatedAt":"2022-08-17T12:33:09.81Z","serviceBusEndpoint":"https://testPSStandard.servicebus.windows.net:443/","status":"Active","alternateName":"testSBPostMigrationName"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dsms-test-rg/providers/Microsoft.ServiceBus/namespaces/dsmstestsb1","name":"dsmstestsb1","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:dsmstestsb1","createdAt":"2022-08-22T17:15:28.183Z","updatedAt":"2022-08-22T17:16:12.777Z","serviceBusEndpoint":"https://dsmstestsb1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testingSBTemplate","name":"testingSBTemplate","type":"Microsoft.ServiceBus/Namespaces","location":"Australia - East","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testingsbtemplate","createdAt":"2022-08-28T06:14:15.157Z","updatedAt":"2022-09-15T14:55:26.22Z","serviceBusEndpoint":"https://testingSBTemplate.servicebus.windows.net:443/","status":"Active","alternateName":"sbmigratepremium2"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespaceu6xvflr4vht7rxff5dlizo3gi665atsiqq2pxzwt4uehtgjmd3dpba/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclieymu","name":"servicebus-nsclieymu","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"68924081-c891-4869-b36f-a21c51e2c344","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclieymu","createdAt":"2022-08-29T07:31:14.363Z","updatedAt":"2023-04-16T07:26:11.853Z","serviceBusEndpoint":"https://servicebus-nsclieymu.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGName-2450/providers/Microsoft.ServiceBus/namespaces/Namespace-9959","name":"Namespace-9959","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace-9959","createdAt":"2022-09-02T10:43:49.647Z","updatedAt":"2022-09-02T10:44:34.66Z","serviceBusEndpoint":"https://Namespace-9959.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/sbmigratepremium","name":"sbmigratepremium","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbmigratepremium","createdAt":"2022-09-13T05:00:55.647Z","updatedAt":"2022-09-15T14:55:22.693Z","serviceBusEndpoint":"https://sbmigratepremium.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testSBARMTemplate","name":"testSBARMTemplate","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testsbarmtemplate","createdAt":"2022-09-14T09:01:24.307Z","updatedAt":"2022-09-14T09:02:09.747Z","serviceBusEndpoint":"https://testSBARMTemplate.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/serkant/providers/Microsoft.ServiceBus/namespaces/serkant-sb1","name":"serkant-sb1","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Disabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:serkant-sb1","createdAt":"2022-09-14T18:25:04.52Z","updatedAt":"2022-09-20T15:11:36.88Z","serviceBusEndpoint":"https://serkant-sb1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-7974","name":"Namespace1-7974","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-7974","createdAt":"2022-09-25T08:01:39.173Z","updatedAt":"2022-09-25T08:07:57.013Z","serviceBusEndpoint":"https://Namespace1-7974.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace2-5304","name":"Namespace2-5304","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"acb4ce9b-2730-494d-a18d-a8be0420bdcb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":""},{"keyName":"key2","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":false},"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace2-5304","createdAt":"2022-09-25T08:08:42.127Z","updatedAt":"2023-05-13T08:03:11.627Z","serviceBusEndpoint":"https://Namespace2-5304.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-6359","name":"Namespace1-6359","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1":{"clientId":"38a989a1-3fab-4015-b546-cbcf7a67aa89","principalId":"624205aa-192c-4303-9606-990d06cbd997"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2":{"clientId":"440d7336-c408-4327-ad13-10a4e71aad64","principalId":"1bdb6af0-4284-47f4-b049-94aa2868d90b"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key2","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key1","keyVaultUri":"https://ps-test-kv2.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}}],"requireInfrastructureEncryption":false},"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-6359","createdAt":"2022-09-25T08:17:21.787Z","updatedAt":"2023-05-06T13:42:14.637Z","serviceBusEndpoint":"https://Namespace1-6359.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg-javaone/providers/Microsoft.ServiceBus/namespaces/rg-eldert-pg-javaone-sbus","name":"rg-eldert-pg-javaone-sbus","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:rg-eldert-pg-javaone-sbus","createdAt":"2022-10-12T22:58:34.72Z","updatedAt":"2022-10-12T22:59:48.85Z","serviceBusEndpoint":"https://rg-eldert-pg-javaone-sbus.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-EastUS/providers/Microsoft.ServiceBus/namespaces/Ardsouza-BL-VAZ40001-ScaleSets-2","name":"Ardsouza-BL-VAZ40001-ScaleSets-2","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-bl-vaz40001-scalesets-2","createdAt":"2022-10-13T00:48:44.047Z","updatedAt":"2022-10-13T00:50:59.927Z","serviceBusEndpoint":"https://Ardsouza-BL-VAZ40001-ScaleSets-2.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-EastUS/providers/Microsoft.ServiceBus/namespaces/Ardsouza-BL-VAZ40001-ScaleSets-3","name":"Ardsouza-BL-VAZ40001-ScaleSets-3","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-bl-vaz40001-scalesets-3","createdAt":"2022-10-17T20:51:13.547Z","updatedAt":"2022-10-17T20:52:50.7Z","serviceBusEndpoint":"https://Ardsouza-BL-VAZ40001-ScaleSets-3.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/VMScaleSetsTesting/providers/Microsoft.ServiceBus/namespaces/ardsouza-eastus-scalesets-10-18-2022","name":"ardsouza-eastus-scalesets-10-18-2022","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":4,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-eastus-scalesets-10-18-2022","createdAt":"2022-10-18T22:55:27.997Z","updatedAt":"2022-10-18T22:57:06.683Z","serviceBusEndpoint":"https://ardsouza-eastus-scalesets-10-18-2022.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Basic","tier":"Basic"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameEventTest","name":"SuparameEventTest","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparameeventtest","createdAt":"2022-10-28T01:30:54.627Z","updatedAt":"2022-10-28T01:31:38.127Z","serviceBusEndpoint":"https://SuparameEventTest.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/spsbusrg/providers/Microsoft.ServiceBus/namespaces/spsbusns11103","name":"spsbusns11103","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:spsbusns11103","createdAt":"2022-11-10T23:56:06.953Z","updatedAt":"2022-11-10T23:56:50.06Z","serviceBusEndpoint":"https://spsbusns11103.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":16},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bwpoc/providers/Microsoft.ServiceBus/namespaces/bwpocns1","name":"bwpocns1","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:bwpocns1","createdAt":"2022-11-17T02:33:45.87Z","updatedAt":"2023-03-17T01:18:57.003Z","serviceBusEndpoint":"https://bwpocns1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijayscalesetsloadtest/providers/Microsoft.ServiceBus/namespaces/bwpocssns2","name":"bwpocssns2","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":4,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:bwpocssns2","createdAt":"2022-11-22T01:15:59.343Z","updatedAt":"2023-03-08T22:25:59.003Z","serviceBusEndpoint":"https://bwpocssns2.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest4i9zey/providers/Microsoft.ServiceBus/namespaces/secondaryNSe5sqx2","name":"secondaryNSe5sqx2","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynse5sqx2","createdAt":"2022-11-22T16:46:54.59Z","updatedAt":"2022-11-22T16:59:12.363Z","serviceBusEndpoint":"https://secondaryNSe5sqx2.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest4i9zey/providers/Microsoft.ServiceBus/namespaces/primaryNSg2o85l","name":"primaryNSg2o85l","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsg2o85l","createdAt":"2022-11-22T16:46:54.713Z","updatedAt":"2022-11-22T16:59:12.637Z","serviceBusEndpoint":"https://primaryNSg2o85l.servicebus.windows.net:443/","status":"Active"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview&$skipToken=2022-11-22T16:46:54.713Z"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:47:10.8619607Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:24.5492204Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:45:00.1085662Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}]}' headers: cache-control: - no-cache content-length: - - '79462' + - '3456' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:52:21 GMT + - Sun, 29 Sep 2024 06:47:33 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-inline-count: - - '' + x-ms-messaging-activity-id: + - da506918-8089-4f40-b156-83de46f17642 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G11|2024-09-29T06:47:34 + x-msedge-ref: + - 'Ref A: 2406175BB08A45598A2088CC638E7B8B Ref B: TYO201151003060 Ref C: 2024-09-29T06:47:33Z' status: code: 200 message: OK @@ -2331,194 +1316,112 @@ interactions: Connection: - keep-alive User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview&$skipToken=2022-11-22T16:46:54.713Z + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces?api-version=2023-01-01-preview response: body: - string: '{"value":[{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/primaryNSn6fmhu","name":"primaryNSn6fmhu","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsn6fmhu","createdAt":"2022-11-22T17:41:18.407Z","updatedAt":"2022-11-22T19:02:40.557Z","serviceBusEndpoint":"https://primaryNSn6fmhu.servicebus.windows.net:443/","status":"Active","alternateName":"postMigrationqt7hcd"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/secondaryNSiqjvmr","name":"secondaryNSiqjvmr","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsiqjvmr","createdAt":"2022-11-22T17:41:18.407Z","updatedAt":"2022-11-22T19:03:33.6Z","serviceBusEndpoint":"https://secondaryNSiqjvmr.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest1lxftd/providers/Microsoft.ServiceBus/namespaces/primaryNSg2skfn","name":"primaryNSg2skfn","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsg2skfn","createdAt":"2022-11-23T06:44:18.907Z","updatedAt":"2022-11-23T06:56:31.8Z","serviceBusEndpoint":"https://primaryNSg2skfn.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest1lxftd/providers/Microsoft.ServiceBus/namespaces/secondaryNSud1hb2","name":"secondaryNSud1hb2","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsud1hb2","createdAt":"2022-11-23T06:44:19.32Z","updatedAt":"2022-11-23T06:56:33.823Z","serviceBusEndpoint":"https://secondaryNSud1hb2.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestnqpzt9/providers/Microsoft.ServiceBus/namespaces/secondaryNScjqf18","name":"secondaryNScjqf18","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynscjqf18","createdAt":"2022-11-23T07:44:46.24Z","updatedAt":"2022-11-23T07:55:58.033Z","serviceBusEndpoint":"https://secondaryNScjqf18.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestnqpzt9/providers/Microsoft.ServiceBus/namespaces/primaryNS3ish9p","name":"primaryNS3ish9p","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primaryns3ish9p","createdAt":"2022-11-23T07:44:46.317Z","updatedAt":"2022-11-23T07:55:59.193Z","serviceBusEndpoint":"https://primaryNS3ish9p.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestqb21vp/providers/Microsoft.ServiceBus/namespaces/secondaryNSaj9zhm","name":"secondaryNSaj9zhm","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsaj9zhm","createdAt":"2022-11-23T08:14:48.83Z","updatedAt":"2022-11-23T08:26:44.967Z","serviceBusEndpoint":"https://secondaryNSaj9zhm.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestqb21vp/providers/Microsoft.ServiceBus/namespaces/primaryNSmf4b86","name":"primaryNSmf4b86","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsmf4b86","createdAt":"2022-11-23T08:14:49.007Z","updatedAt":"2022-11-23T08:26:45.71Z","serviceBusEndpoint":"https://primaryNSmf4b86.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/namespaceNamek15sa7","name":"namespaceNamek15sa7","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacenamek15sa7","createdAt":"2022-11-23T10:33:09.827Z","updatedAt":"2022-11-23T10:33:52.657Z","serviceBusEndpoint":"https://namespaceNamek15sa7.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/namespaceNameazit49","name":"namespaceNameazit49","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/67ed170e-22f4-45d5-88c2-65242051987e","name":"67ed170e-22f4-45d5-88c2-65242051987e","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.Network/privateEndpoints/pe1xb0e6w"},"privateLinkServiceConnectionState":{"status":"Rejected","description":""},"groupIds":["namespace"]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces/privateEndpointConnections/1423d16b-9510-49c1-978f-ef0c2f1831f8","name":"1423d16b-9510-49c1-978f-ef0c2f1831f8","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.Network/privateEndpoints/pe2j07oca"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"Bye"},"groupIds":["namespace"]}}],"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacenameazit49","createdAt":"2022-11-23T10:33:10.063Z","updatedAt":"2022-11-23T10:37:11.773Z","serviceBusEndpoint":"https://namespaceNameazit49.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/namespaceName2qt8ag","name":"namespaceName2qt8ag","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"4bedf168-dcb9-4d89-9b35-844869a85823","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacename2qt8ag","createdAt":"2022-11-23T10:33:10.83Z","updatedAt":"2023-04-10T10:28:14.967Z","serviceBusEndpoint":"https://namespaceName2qt8ag.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/secondaryNStilqso","name":"secondaryNStilqso","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynstilqso","createdAt":"2022-11-23T10:42:30.29Z","updatedAt":"2022-11-23T10:44:33.083Z","serviceBusEndpoint":"https://secondaryNStilqso.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/primaryNS67mwe3","name":"primaryNS67mwe3","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primaryns67mwe3","createdAt":"2022-11-23T10:42:30.41Z","updatedAt":"2022-11-23T10:43:14.363Z","serviceBusEndpoint":"https://primaryNS67mwe3.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/secondaryNSxg98uj","name":"secondaryNSxg98uj","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsxg98uj","createdAt":"2022-11-23T10:42:30.63Z","updatedAt":"2022-11-23T10:45:02.21Z","serviceBusEndpoint":"https://secondaryNSxg98uj.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc3akwp/providers/Microsoft.ServiceBus/namespaces/primaryNS9kh1r7","name":"primaryNS9kh1r7","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primaryns9kh1r7","createdAt":"2022-11-23T10:42:30.71Z","updatedAt":"2022-11-23T10:43:38.44Z","serviceBusEndpoint":"https://primaryNS9kh1r7.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/secondaryNS4qrb17","name":"secondaryNS4qrb17","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondaryns4qrb17","createdAt":"2022-11-23T12:03:35.037Z","updatedAt":"2022-11-23T13:24:59.773Z","serviceBusEndpoint":"https://secondaryNS4qrb17.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/primaryNS6wbgdx","name":"primaryNS6wbgdx","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primaryns6wbgdx","createdAt":"2022-11-23T12:03:35.123Z","updatedAt":"2022-11-23T13:24:59.547Z","serviceBusEndpoint":"https://primaryNS6wbgdx.servicebus.windows.net:443/","status":"Active","alternateName":"postMigrationajsixu"}},{"sku":{"name":"Basic","tier":"Basic"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/klam-rg/providers/Microsoft.ServiceBus/namespaces/klam-test-deleteme","name":"klam-test-deleteme","type":"Microsoft.ServiceBus/Namespaces","location":"Brazil - South","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:klam-test-deleteme","createdAt":"2022-12-12T18:00:24.613Z","updatedAt":"2022-12-12T18:01:08.077Z","serviceBusEndpoint":"https://klam-test-deleteme.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testsbcompliance","name":"testsbcompliance","type":"Microsoft.ServiceBus/Namespaces","location":"Jio - India West","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Disabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testsbcompliance","createdAt":"2022-12-13T04:48:43.01Z","updatedAt":"2022-12-13T07:37:52.777Z","serviceBusEndpoint":"https://testsbcompliance.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Basic","tier":"Basic"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameNamespaceTest1","name":"SuparameNamespaceTest1","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparamenamespacetest1","createdAt":"2022-12-16T05:52:14.85Z","updatedAt":"2022-12-16T05:52:59.003Z","serviceBusEndpoint":"https://SuparameNamespaceTest1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-testrg1/providers/Microsoft.ServiceBus/namespaces/ardsouza-polandcentral-12-21-22","name":"ardsouza-polandcentral-12-21-22","type":"Microsoft.ServiceBus/Namespaces","location":"Poland - Central","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-polandcentral-12-21-22","createdAt":"2022-12-21T22:12:02.127Z","updatedAt":"2022-12-21T22:13:20.107Z","serviceBusEndpoint":"https://ardsouza-polandcentral-12-21-22.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-testrg1/providers/Microsoft.ServiceBus/namespaces/ardsouza-polandcentral-std-12-21-22","name":"ardsouza-polandcentral-std-12-21-22","type":"Microsoft.ServiceBus/Namespaces","location":"Poland - Central","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-polandcentral-std-12-21-22","createdAt":"2022-12-22T02:37:39.503Z","updatedAt":"2022-12-22T02:38:24.017Z","serviceBusEndpoint":"https://ardsouza-polandcentral-std-12-21-22.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pablorod_new/providers/Microsoft.ServiceBus/namespaces/pablorod-suscription-rules-v2","name":"pablorod-suscription-rules-v2","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:pablorod-suscription-rules-v2","createdAt":"2022-12-28T21:24:03.74Z","updatedAt":"2022-12-28T21:24:46.6Z","serviceBusEndpoint":"https://pablorod-suscription-rules-v2.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/Suparame-EG-test1","name":"Suparame-EG-test1","type":"Microsoft.ServiceBus/Namespaces","location":"West - US 3","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparame-eg-test1","createdAt":"2023-01-06T02:55:40.927Z","updatedAt":"2023-01-06T02:56:51.367Z","serviceBusEndpoint":"https://Suparame-EG-test1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testservicebusRG-2484/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt7646","name":"testnamespacemgmt7646","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt7646","createdAt":"2023-01-12T08:22:57.34Z","updatedAt":"2023-01-12T08:24:36.11Z","serviceBusEndpoint":"https://testnamespacemgmt7646.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/highmemeus2","name":"highmemeus2","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:highmemeus2","createdAt":"2023-01-12T21:42:02.56Z","updatedAt":"2023-05-18T17:32:59.42Z","serviceBusEndpoint":"https://highmemeus2.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestKaren/providers/Microsoft.ServiceBus/namespaces/mqTestKa","name":"mqTestKa","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"identity":{"principalId":"f063a397-de97-42f0-9a6d-bc48fb375597","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:mqtestka","createdAt":"2023-01-27T01:29:51.76Z","updatedAt":"2023-04-29T04:10:21.437Z","serviceBusEndpoint":"https://mqTestKa.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/ServiceBusStandardNSSuparme","name":"ServiceBusStandardNSSuparme","type":"Microsoft.ServiceBus/Namespaces","location":"West - US 3","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebusstandardnssuparme","createdAt":"2023-01-31T18:38:27.15Z","updatedAt":"2023-01-31T18:39:09.853Z","serviceBusEndpoint":"https://ServiceBusStandardNSSuparme.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testservicebusRG-6260/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt7577","name":"testnamespacemgmt7577","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt7577","createdAt":"2023-02-01T09:27:27.243Z","updatedAt":"2023-02-01T09:28:38.053Z","serviceBusEndpoint":"https://testnamespacemgmt7577.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testservicebusRG-6260/providers/Microsoft.ServiceBus/namespaces/testnamespacemgmt1217","name":"testnamespacemgmt1217","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testnamespacemgmt1217","createdAt":"2023-02-01T09:29:09.047Z","updatedAt":"2023-02-01T09:31:02.407Z","serviceBusEndpoint":"https://testnamespacemgmt1217.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sharmavijay-la-verification/providers/Microsoft.ServiceBus/namespaces/sharmavijay-sb-std-la-verification","name":"sharmavijay-sb-std-la-verification","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sharmavijay-sb-std-la-verification","createdAt":"2023-02-01T11:00:09.857Z","updatedAt":"2023-02-01T11:00:55.313Z","serviceBusEndpoint":"https://sharmavijay-sb-std-la-verification.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription6m27zc5rufs7xp34pis2phf5wfu2j7kk7lqieysmclma6iytq4r/providers/Microsoft.ServiceBus/namespaces/sb-nsclizscx2ebag64z","name":"sb-nsclizscx2ebag64z","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nsclizscx2ebag64z","createdAt":"2023-02-07T08:00:56.033Z","updatedAt":"2023-02-07T08:01:38.447Z","serviceBusEndpoint":"https://sb-nsclizscx2ebag64z.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queueucmveinbbhtk5zmhw4unieyuns6duvjkbs3xk7ulpknno3umqqsxfewp7t/providers/Microsoft.ServiceBus/namespaces/sb-nscli54t4su6p5nrz","name":"sb-nscli54t4su6p5nrz","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag2":"value2,","tag1":"value1}"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli54t4su6p5nrz","createdAt":"2023-02-07T08:11:32.08Z","updatedAt":"2023-02-07T08:12:16.78Z","serviceBusEndpoint":"https://sb-nscli54t4su6p5nrz.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-canary-premum","name":"anqyan-canary-premum","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-canary-premum","createdAt":"2023-02-08T00:34:41.913Z","updatedAt":"2023-03-15T16:35:14.03Z","serviceBusEndpoint":"https://anqyan-canary-premum.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceNameqau0ke","name":"namespaceNameqau0ke","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacenameqau0ke","createdAt":"2023-02-10T17:17:35.547Z","updatedAt":"2023-02-10T17:18:17.667Z","serviceBusEndpoint":"https://namespaceNameqau0ke.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceNameblajf8","name":"namespaceNameblajf8","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacenameblajf8","createdAt":"2023-02-10T17:17:35.657Z","updatedAt":"2023-02-10T17:18:45.427Z","serviceBusEndpoint":"https://namespaceNameblajf8.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceNamecyvb0a","name":"namespaceNamecyvb0a","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"0798279e-3e21-4829-96f3-81262828ea3b","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacenamecyvb0a","createdAt":"2023-02-10T17:17:36.46Z","updatedAt":"2023-05-13T17:12:09.11Z","serviceBusEndpoint":"https://namespaceNamecyvb0a.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/primaryNSzunbvq","name":"primaryNSzunbvq","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynszunbvq","createdAt":"2023-02-10T17:25:08.113Z","updatedAt":"2023-02-10T18:17:11.347Z","serviceBusEndpoint":"https://primaryNSzunbvq.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/secondaryNSgsa23z","name":"secondaryNSgsa23z","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsgsa23z","createdAt":"2023-02-10T17:25:08.49Z","updatedAt":"2023-02-10T17:37:32.227Z","serviceBusEndpoint":"https://secondaryNSgsa23z.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/primaryNS6bfi8t","name":"primaryNS6bfi8t","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primaryns6bfi8t","createdAt":"2023-02-10T17:25:08.73Z","updatedAt":"2023-02-10T17:25:51.82Z","serviceBusEndpoint":"https://primaryNS6bfi8t.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/secondaryNS4xj2hf","name":"secondaryNS4xj2hf","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondaryns4xj2hf","createdAt":"2023-02-10T17:25:09.733Z","updatedAt":"2023-02-10T17:26:47.687Z","serviceBusEndpoint":"https://secondaryNS4xj2hf.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV2gqx7eh","name":"namespaceV2gqx7eh","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacev2gqx7eh","createdAt":"2023-02-10T17:39:41.903Z","updatedAt":"2023-02-10T17:40:25.32Z","serviceBusEndpoint":"https://namespaceV2gqx7eh.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV3s5q0n2","name":"namespaceV3s5q0n2","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"k1":"v1","k2":"v2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.1","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacev3s5q0n2","createdAt":"2023-02-10T17:40:46.02Z","updatedAt":"2023-02-10T17:41:28.37Z","serviceBusEndpoint":"https://namespaceV3s5q0n2.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV4w7kpnq","name":"namespaceV4w7kpnq","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"ad0065a0-6933-4db9-a287-7bbd15d36c04","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacev4w7kpnq","createdAt":"2023-02-10T17:41:50.053Z","updatedAt":"2023-05-13T17:36:10.353Z","serviceBusEndpoint":"https://namespaceV4w7kpnq.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV5mdoiq0","name":"namespaceV5mdoiq0","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1":{"clientId":"38a989a1-3fab-4015-b546-cbcf7a67aa89","principalId":"624205aa-192c-4303-9606-990d06cbd997"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2":{"clientId":"440d7336-c408-4327-ad13-10a4e71aad64","principalId":"1bdb6af0-4284-47f4-b049-94aa2868d90b"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://keyvaultnamezy92k7.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key2","keyVaultUri":"https://keyvaultnamezy92k7.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}}],"requireInfrastructureEncryption":false},"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacev5mdoiq0","createdAt":"2023-02-10T17:49:29.18Z","updatedAt":"2023-05-06T13:42:15.077Z","serviceBusEndpoint":"https://namespaceV5mdoiq0.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestc9psbq/providers/Microsoft.ServiceBus/namespaces/namespaceV9azx8yb","name":"namespaceV9azx8yb","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1":{"clientId":"38a989a1-3fab-4015-b546-cbcf7a67aa89","principalId":"624205aa-192c-4303-9606-990d06cbd997"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2":{"clientId":"440d7336-c408-4327-ad13-10a4e71aad64","principalId":"1bdb6af0-4284-47f4-b049-94aa2868d90b"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://keyvaultnamezy92k7.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key2","keyVaultUri":"https://keyvaultnamezy92k7.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}}],"requireInfrastructureEncryption":true},"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespacev9azx8yb","createdAt":"2023-02-10T17:57:08.977Z","updatedAt":"2023-05-06T13:42:15.61Z","serviceBusEndpoint":"https://namespaceV9azx8yb.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/secondaryNSw9rzma","name":"secondaryNSw9rzma","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsw9rzma","createdAt":"2023-02-10T18:33:19.68Z","updatedAt":"2023-02-10T20:09:29.653Z","serviceBusEndpoint":"https://secondaryNSw9rzma.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/primaryNSut8xa0","name":"primaryNSut8xa0","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsut8xa0","createdAt":"2023-02-10T18:33:19.767Z","updatedAt":"2023-02-10T20:09:27.89Z","serviceBusEndpoint":"https://primaryNSut8xa0.servicebus.windows.net:443/","status":"Active","alternateName":"postMigrationulz9q8"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/primaryNSfjarv9","name":"primaryNSfjarv9","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsfjarv9","createdAt":"2023-02-13T06:16:32.313Z","updatedAt":"2023-02-13T07:48:12.32Z","serviceBusEndpoint":"https://primaryNSfjarv9.servicebus.windows.net:443/","status":"Active","alternateName":"postMigration16it5x"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/secondaryNS6zn7s8","name":"secondaryNS6zn7s8","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondaryns6zn7s8","createdAt":"2023-02-13T06:16:32.73Z","updatedAt":"2023-02-13T07:48:12.423Z","serviceBusEndpoint":"https://secondaryNS6zn7s8.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-SBNS-2-14-2023-p-1","name":"ardsouza-SBNS-2-14-2023-p-1","type":"Microsoft.ServiceBus/Namespaces","location":"Poland - Central","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-sbns-2-14-2023-p-1","createdAt":"2023-02-15T01:37:52.193Z","updatedAt":"2023-02-15T01:39:50.5Z","serviceBusEndpoint":"https://ardsouza-SBNS-2-14-2023-p-1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-SBNS-std-2-14-2023-p-1","name":"ardsouza-SBNS-std-2-14-2023-p-1","type":"Microsoft.ServiceBus/Namespaces","location":"Poland - Central","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-sbns-std-2-14-2023-p-1","createdAt":"2023-02-15T01:44:36.02Z","updatedAt":"2023-02-15T01:45:21.823Z","serviceBusEndpoint":"https://ardsouza-SBNS-std-2-14-2023-p-1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-lock-duration","name":"sb-eldert-lock-duration","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-lock-duration","createdAt":"2023-03-02T16:49:47.263Z","updatedAt":"2023-03-02T16:54:19.553Z","serviceBusEndpoint":"https://sb-eldert-lock-duration.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijayscalesetsloadtest/providers/Microsoft.ServiceBus/namespaces/vijaystandardaadtest","name":"vijaystandardaadtest","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US EUAP","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:vijaystandardaadtest","createdAt":"2023-03-07T01:07:39.7Z","updatedAt":"2023-03-07T01:08:22.12Z","serviceBusEndpoint":"https://vijaystandardaadtest.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-jms-geo-cus","name":"shsama-jms-geo-cus","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-jms-geo-cus","createdAt":"2023-03-09T04:20:30.98Z","updatedAt":"2023-03-09T04:26:09.03Z","serviceBusEndpoint":"https://shsama-jms-geo-cus.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-jms-geo-eus","name":"shsama-jms-geo-eus","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-jms-geo-eus","createdAt":"2023-03-09T04:22:55.923Z","updatedAt":"2023-03-09T04:26:07.043Z","serviceBusEndpoint":"https://shsama-jms-geo-eus.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-WestEurope/providers/Microsoft.ServiceBus/namespaces/jbj-test-am3001","name":"jbj-test-am3001","type":"Microsoft.ServiceBus/Namespaces","location":"West - Europe","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:jbj-test-am3001","createdAt":"2023-03-09T19:59:29.09Z","updatedAt":"2023-03-09T20:00:12.457Z","serviceBusEndpoint":"https://jbj-test-am3001.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jfgSBRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgSBNmspc1","name":"jfgSBNmspc1","type":"Microsoft.ServiceBus/Namespaces","location":"West - Europe","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:jfgsbnmspc1","createdAt":"2023-03-09T22:57:08.46Z","updatedAt":"2023-03-09T22:57:53.007Z","serviceBusEndpoint":"https://jfgSBNmspc1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-bicep-test","name":"sb-eldert-pg-bicep-test","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-bicep-test","createdAt":"2023-03-11T00:57:25.36Z","updatedAt":"2023-03-11T00:59:42.15Z","serviceBusEndpoint":"https://sb-eldert-pg-bicep-test.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jupachol-test/providers/Microsoft.ServiceBus/namespaces/jupachol-test-standard","name":"jupachol-test-standard","type":"Microsoft.ServiceBus/Namespaces","location":"West - US 3","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:jupachol-test-standard","createdAt":"2023-03-14T05:13:13.22Z","updatedAt":"2023-03-14T05:13:56.493Z","serviceBusEndpoint":"https://jupachol-test-standard.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-CentralUSEUAP/providers/Microsoft.ServiceBus/namespaces/PROD-CDM-V00001-sb-std-test","name":"PROD-CDM-V00001-sb-std-test","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US EUAP","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:prod-cdm-v00001-sb-std-test","createdAt":"2023-03-14T23:38:35.5Z","updatedAt":"2023-03-14T23:39:17.813Z","serviceBusEndpoint":"https://PROD-CDM-V00001-sb-std-test.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-eus","name":"anqyan-eus","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-eus","createdAt":"2023-03-15T16:32:00.603Z","updatedAt":"2023-03-15T16:35:06.857Z","serviceBusEndpoint":"https://anqyan-eus.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsurg3152023/providers/Microsoft.ServiceBus/namespaces/testspremVinsu","name":"testspremVinsu","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testspremvinsu","createdAt":"2023-03-15T23:06:23.53Z","updatedAt":"2023-03-15T23:07:30.617Z","serviceBusEndpoint":"https://testspremVinsu.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-express-entity-test","name":"sb-eldert-pg-express-entity-test","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-express-entity-test","createdAt":"2023-03-21T22:44:19.323Z","updatedAt":"2023-03-21T22:45:02.217Z","serviceBusEndpoint":"https://sb-eldert-pg-express-entity-test.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Basic","tier":"Basic"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jfgSBRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgBscNmpsc1","name":"jfgBscNmpsc1","type":"Microsoft.ServiceBus/Namespaces","location":"West - Europe","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:jfgbscnmpsc1","createdAt":"2023-03-22T18:14:12.7Z","updatedAt":"2023-03-22T18:14:58.807Z","serviceBusEndpoint":"https://jfgBscNmpsc1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sharmavijay-la-verification/providers/Microsoft.ServiceBus/namespaces/karankesri-la-test","name":"karankesri-la-test","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:karankesri-la-test","createdAt":"2023-03-29T10:44:22.423Z","updatedAt":"2023-03-30T14:26:24.35Z","serviceBusEndpoint":"https://karankesri-la-test.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Basic","tier":"Basic"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SaglodhaRG/providers/Microsoft.ServiceBus/namespaces/BasicNS","name":"BasicNS","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:basicns","createdAt":"2023-04-06T06:45:05.293Z","updatedAt":"2023-04-06T06:45:48.64Z","serviceBusEndpoint":"https://BasicNS.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/davadhani-vnet-backfill-testing/providers/Microsoft.ServiceBus/namespaces/test-backfill-lavanya","name":"test-backfill-lavanya","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-backfill-lavanya","createdAt":"2023-04-11T06:40:51.44Z","updatedAt":"2023-04-11T08:06:22.837Z","serviceBusEndpoint":"https://test-backfill-lavanya.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/davadhani-vnet-backfill-testing/providers/Microsoft.ServiceBus/namespaces/test-backfill-charvak","name":"test-backfill-charvak","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-backfill-charvak","createdAt":"2023-04-11T06:41:49.343Z","updatedAt":"2023-04-11T08:09:36.313Z","serviceBusEndpoint":"https://test-backfill-charvak.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/davadhani-vnet-backfill-testing/providers/Microsoft.ServiceBus/namespaces/test-backfill-damodar","name":"test-backfill-damodar","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-backfill-damodar","createdAt":"2023-04-11T06:42:42.493Z","updatedAt":"2023-04-11T06:43:50.297Z","serviceBusEndpoint":"https://test-backfill-damodar.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/dlqtestfordavid","name":"dlqtestfordavid","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:dlqtestfordavid","createdAt":"2023-04-11T16:48:22.213Z","updatedAt":"2023-04-11T16:58:12.933Z","serviceBusEndpoint":"https://dlqtestfordavid.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jbj-sb-testing/providers/Microsoft.ServiceBus/namespaces/jbj-policy-allow","name":"jbj-policy-allow","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:jbj-policy-allow","createdAt":"2023-04-19T23:17:28.29Z","updatedAt":"2023-04-19T23:18:11.547Z","serviceBusEndpoint":"https://jbj-policy-allow.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jbj-sb-testing/providers/Microsoft.ServiceBus/namespaces/jbj-sb-none","name":"jbj-sb-none","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:jbj-sb-none","createdAt":"2023-04-20T00:02:37.353Z","updatedAt":"2023-04-20T00:03:20.52Z","serviceBusEndpoint":"https://jbj-sb-none.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-cdm-vmss-test-ns1","name":"kala-cdm-vmss-test-ns1","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US EUAP","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:kala-cdm-vmss-test-ns1","createdAt":"2023-04-20T22:34:19.26Z","updatedAt":"2023-04-20T22:35:00.763Z","serviceBusEndpoint":"https://kala-cdm-vmss-test-ns1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-prem-cbn-vmss-test-ns1","name":"kala-prem-cbn-vmss-test-ns1","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:kala-prem-cbn-vmss-test-ns1","createdAt":"2023-04-20T22:45:53.56Z","updatedAt":"2023-05-19T16:23:49.38Z","serviceBusEndpoint":"https://kala-prem-cbn-vmss-test-ns1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":16},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-performance-test-1-partition","name":"sb-eldert-pg-performance-test-1-partition","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-performance-test-1-partition","createdAt":"2023-04-26T23:10:09.797Z","updatedAt":"2023-05-11T23:46:43.717Z","serviceBusEndpoint":"https://sb-eldert-pg-performance-test-1-partition.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/srcty632","name":"srcty632","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:srcty632","createdAt":"2023-04-27T10:01:07.773Z","updatedAt":"2023-04-27T10:58:58.45Z","serviceBusEndpoint":"https://srcty632.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/srcty631","name":"srcty631","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:srcty631","createdAt":"2023-04-27T10:48:43.543Z","updatedAt":"2023-04-27T10:58:56.503Z","serviceBusEndpoint":"https://srcty631.servicebus.windows.net:443/","status":"Active","alternateName":"srcty71"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sharmavijay-la-verification/providers/Microsoft.ServiceBus/namespaces/sharmavijay-sb-prem-laverfication","name":"sharmavijay-sb-prem-laverfication","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sharmavijay-sb-prem-laverfication","createdAt":"2023-05-02T09:46:45.283Z","updatedAt":"2023-05-02T09:48:01.253Z","serviceBusEndpoint":"https://sharmavijay-sb-prem-laverfication.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/primary11","name":"primary11","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:primary11","createdAt":"2023-05-03T07:00:34.283Z","updatedAt":"2023-05-03T08:50:13.827Z","serviceBusEndpoint":"https://primary11.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/secondary11","name":"secondary11","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondary11","createdAt":"2023-05-03T07:10:40.58Z","updatedAt":"2023-05-03T08:50:13.983Z","serviceBusEndpoint":"https://secondary11.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliaszrgvrm57nv5ud6qn3uqcqacshc2vegw2vdvv225jxvdfwvewak4ettwru4/providers/Microsoft.ServiceBus/namespaces/sb-nscliplcsyerx3csb","name":"sb-nscliplcsyerx3csb","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscliplcsyerx3csb","createdAt":"2023-05-03T08:54:40.77Z","updatedAt":"2023-05-03T09:01:46.387Z","serviceBusEndpoint":"https://sb-nscliplcsyerx3csb.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_aliaszrgvrm57nv5ud6qn3uqcqacshc2vegw2vdvv225jxvdfwvewak4ettwru4/providers/Microsoft.ServiceBus/namespaces/sb-nsclif53bhx6dnzbr","name":"sb-nsclif53bhx6dnzbr","type":"Microsoft.ServiceBus/Namespaces","location":"North - Central US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nsclif53bhx6dnzbr","createdAt":"2023-05-03T08:57:02.91Z","updatedAt":"2023-05-03T09:01:45.083Z","serviceBusEndpoint":"https://sb-nsclif53bhx6dnzbr.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsurg_53/providers/Microsoft.ServiceBus/namespaces/testvinsusbprem-53","name":"testvinsusbprem-53","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvinsusbprem-53","createdAt":"2023-05-03T18:54:10.843Z","updatedAt":"2023-05-03T18:55:21.12Z","serviceBusEndpoint":"https://testvinsusbprem-53.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmanickam-migration-testing/providers/Microsoft.ServiceBus/namespaces/lmanickam-vnet-dr-sb-primary","name":"lmanickam-vnet-dr-sb-primary","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:lmanickam-vnet-dr-sb-primary","createdAt":"2023-05-04T08:55:18.56Z","updatedAt":"2023-05-04T10:34:03.887Z","serviceBusEndpoint":"https://lmanickam-vnet-dr-sb-primary.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/lmanickam-migration-testing/providers/Microsoft.ServiceBus/namespaces/lmanickam-vnet-dr-sb-secondary","name":"lmanickam-vnet-dr-sb-secondary","type":"Microsoft.ServiceBus/Namespaces","location":"Central - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:lmanickam-vnet-dr-sb-secondary","createdAt":"2023-05-04T08:58:27.687Z","updatedAt":"2023-05-04T09:01:46.3Z","serviceBusEndpoint":"https://lmanickam-vnet-dr-sb-secondary.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestKaren/providers/Microsoft.ServiceBus/namespaces/acisNewTest","name":"acisNewTest","type":"Microsoft.ServiceBus/Namespaces","location":"East - US 2","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:acisnewtest","createdAt":"2023-05-04T18:39:51.113Z","updatedAt":"2023-05-04T18:40:32.83Z","serviceBusEndpoint":"https://acisNewTest.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pablorod_new/providers/Microsoft.ServiceBus/namespaces/pablorod-premium","name":"pablorod-premium","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:pablorod-premium","createdAt":"2023-05-10T14:33:34.45Z","updatedAt":"2023-05-15T20:51:38.477Z","serviceBusEndpoint":"https://pablorod-premium.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-MalaysiaSouth/providers/Microsoft.ServiceBus/namespaces/ardsouza-malaysia-sb-standard","name":"ardsouza-malaysia-sb-standard","type":"Microsoft.ServiceBus/Namespaces","location":"Malaysia - South","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-malaysia-sb-standard","createdAt":"2023-05-11T01:48:40.313Z","updatedAt":"2023-05-11T01:49:26.573Z","serviceBusEndpoint":"https://ardsouza-malaysia-sb-standard.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.ServiceBus/namespaces/shsama-scus-1","name":"shsama-scus-1","type":"Microsoft.ServiceBus/Namespaces","location":"South - Central US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-scus-1","createdAt":"2023-05-13T03:23:57.597Z","updatedAt":"2023-05-13T03:25:06.1Z","serviceBusEndpoint":"https://shsama-scus-1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/lee-migration","name":"lee-migration","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:lee-migration","createdAt":"2023-05-15T20:22:25.94Z","updatedAt":"2023-05-23T04:41:11.66Z","serviceBusEndpoint":"https://lee-migration.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/lee-migration-geodr","name":"lee-migration-geodr","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:lee-migration-geodr","createdAt":"2023-05-16T00:36:52.333Z","updatedAt":"2023-05-16T02:17:08.3Z","serviceBusEndpoint":"https://lee-migration-geodr.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/lee-migration-cmk","name":"lee-migration-cmk","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"identity":{"principalId":"ec279db7-bcf1-4399-872e-b33a5439706d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"cmkkey","keyVaultUri":"https://lee-test-12.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":false},"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:lee-migration-cmk","createdAt":"2023-05-16T00:53:34.277Z","updatedAt":"2023-05-16T00:58:30.507Z","serviceBusEndpoint":"https://lee-migration-cmk.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-EASTUS2EUAP/providers/Microsoft.ServiceBus/namespaces/lee-migration-doubleencryption","name":"lee-migration-doubleencryption","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"identity":{"principalId":"b8cc5fc0-0ac0-43bb-9340-5c3d8aa98ee0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"cmkkey","keyVaultUri":"https://lee-test-12.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:lee-migration-doubleencryption","createdAt":"2023-05-16T01:03:03.663Z","updatedAt":"2023-05-16T01:08:21.887Z","serviceBusEndpoint":"https://lee-migration-doubleencryption.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-WestEurope/providers/Microsoft.ServiceBus/namespaces/lee-migration-geodr-secondary","name":"lee-migration-geodr-secondary","type":"Microsoft.ServiceBus/Namespaces","location":"West - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:lee-migration-geodr-secondary","createdAt":"2023-05-16T02:13:53.117Z","updatedAt":"2023-05-16T02:17:05.243Z","serviceBusEndpoint":"https://lee-migration-geodr-secondary.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sharmavijay-la-verification/providers/Microsoft.ServiceBus/namespaces/sharmavijay-sb-prem-laverification2","name":"sharmavijay-sb-prem-laverification2","type":"Microsoft.ServiceBus/Namespaces","location":"EAST - US 2 EUAP","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sharmavijay-sb-prem-laverification2","createdAt":"2023-05-19T11:32:08.54Z","updatedAt":"2023-05-21T16:08:34.523Z","serviceBusEndpoint":"https://sharmavijay-sb-prem-laverification2.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jbj-sb-testing/providers/Microsoft.ServiceBus/namespaces/jbj-relay-dotnet-test","name":"jbj-relay-dotnet-test","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:jbj-relay-dotnet-test","createdAt":"2023-05-19T15:52:28.603Z","updatedAt":"2023-05-19T15:53:12.803Z","serviceBusEndpoint":"https://jbj-relay-dotnet-test.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-ItalyNorth/providers/Microsoft.ServiceBus/namespaces/ardsouza-ITN-VAZ00001-1","name":"ardsouza-ITN-VAZ00001-1","type":"Microsoft.ServiceBus/Namespaces","location":"Italy - North","tags":{},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-itn-vaz00001-1","createdAt":"2023-05-19T21:50:05.81Z","updatedAt":"2023-05-19T21:50:51.103Z","serviceBusEndpoint":"https://ardsouza-ITN-VAZ00001-1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-ItalyNorth/providers/Microsoft.ServiceBus/namespaces/ardsouza-ITN-VAZ40001-1","name":"ardsouza-ITN-VAZ40001-1","type":"Microsoft.ServiceBus/Namespaces","location":"Italy - North","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-itn-vaz40001-1","createdAt":"2023-05-19T21:51:00.577Z","updatedAt":"2023-05-19T21:52:24.76Z","serviceBusEndpoint":"https://ardsouza-ITN-VAZ40001-1.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-05-23T11:40:33.473Z","updatedAt":"2023-05-23T11:41:44.69Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview&$skipToken=2023-05-23T11:40:33.473Z"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-cbr-sy-1","name":"anqyan-cbr-sy-1","type":"Microsoft.ServiceBus/Namespaces","location":"australiacentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiacentral","roleType":"Secondary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-cbr-sy-1","serviceBusEndpoint":"https://anqyan-cbr-sy-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-27T20:33:11.8291805Z","updatedAt":"2024-08-27T21:12:21Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-geo-replication-australia","name":"sb-eldert-pg-geo-replication-australia","type":"Microsoft.ServiceBus/Namespaces","location":"australiacentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-geo-replication-australia","serviceBusEndpoint":"https://sb-eldert-pg-geo-replication-australia.servicebus.windows.net:443/","provisioningState":"Failed","status":"Failed","createdAt":"2024-09-06T02:46:08.7528321Z","updatedAt":"2024-09-29T06:44:24Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testingSBTemplate","name":"testingSBTemplate","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testingsbtemplate","serviceBusEndpoint":"https://sbmigratepremium2.servicebus.windows.net:443/","alternateName":"sbmigratepremium2","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:21.3305984Z","updatedAt":"2024-08-06T08:55:21Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7033","name":"sdk-Namespace-7033","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7033","serviceBusEndpoint":"https://sdk-Namespace-7033.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:21.744817Z","updatedAt":"2024-08-06T08:55:21Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8973","name":"sdk-Namespace-8973","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8973","serviceBusEndpoint":"https://sdk-Namespace-8973.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:22.5747981Z","updatedAt":"2024-08-06T08:55:22Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSV2","name":"testPSV2","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpsv2","serviceBusEndpoint":"https://testPSV2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:22.9098135Z","updatedAt":"2024-08-06T08:55:22Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5025","name":"sdk-Namespace-5025","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5025","serviceBusEndpoint":"https://sdk-Namespace-5025.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:23.0746985Z","updatedAt":"2024-08-06T08:55:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8751","name":"sdk-Namespace-8751","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8751","serviceBusEndpoint":"https://sdk-Namespace-8751.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:23.3363678Z","updatedAt":"2024-08-06T08:55:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-sy-3","name":"anqyan-sy-3","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"centraluseuap","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-sy-3","serviceBusEndpoint":"https://anqyan-sy-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-19T18:39:09.8117877Z","updatedAt":"2024-08-19T18:43:33Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-sy-yt-1","name":"anqyan-sy-yt-1","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Secondary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-sy-yt-1","serviceBusEndpoint":"https://anqyan-sy-yt-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-25T23:47:07.1336143Z","updatedAt":"2024-08-26T00:26:59Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/klam-rg/providers/Microsoft.ServiceBus/namespaces/klam-test-deleteme","name":"klam-test-deleteme","type":"Microsoft.ServiceBus/Namespaces","location":"brazilsouth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"brazilsouth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:klam-test-deleteme","serviceBusEndpoint":"https://klam-test-deleteme.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-12-12T18:00:25.5916408Z","updatedAt":"2022-12-12T18:01:10.0911441Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbcc","name":"test-davadhani-sbcc","type":"Microsoft.ServiceBus/Namespaces","location":"canadacentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadacentral","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadaeast","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbcc","serviceBusEndpoint":"https://test-davadhani-sbcc.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-08T09:48:13.0387393Z","updatedAt":"2024-08-21T06:07:46Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbce","name":"test-davadhani-sbce","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Secondary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbce","serviceBusEndpoint":"https://test-davadhani-sbce.servicebus.windows.net:443/","provisioningState":"Failed","status":"Failed","createdAt":"2024-08-08T09:48:57.5477841Z","updatedAt":"2024-09-29T06:43:07Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbcc2","name":"test-davadhani-sbcc2","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Secondary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbcc2","serviceBusEndpoint":"https://test-davadhani-sbcc2.servicebus.windows.net:443/","provisioningState":"Failed","status":"Failed","createdAt":"2024-08-09T07:17:00.1702511Z","updatedAt":"2024-09-29T06:43:07Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-yq-sy-1","name":"anqyan-yq-sy-1","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"australiaeast","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-yq-sy-1","serviceBusEndpoint":"https://anqyan-yq-sy-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-21T18:49:47.8413036Z","updatedAt":"2024-08-21T18:54:22Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbce2","name":"test-davadhani-sbce2","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbce2","serviceBusEndpoint":"https://test-davadhani-sbce2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-04T10:59:23.9371277Z","updatedAt":"2024-09-04T11:03:25Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusPremiumNonAzCreateAfter","name":"NamespaceServiceBusPremiumNonAzCreateAfter","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebuspremiumnonazcreateafter","serviceBusEndpoint":"https://NamespaceServiceBusPremiumNonAzCreateAfter.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:06.8035159Z","updatedAt":"2024-09-23T08:20:06Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusStandardNonAzCreateAfter","name":"NamespaceServiceBusStandardNonAzCreateAfter","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebusstandardnonazcreateafter","serviceBusEndpoint":"https://NamespaceServiceBusStandardNonAzCreateAfter.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:06.8291674Z","updatedAt":"2024-09-23T08:20:06Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusPremiumNonAzCreate","name":"NamespaceServiceBusPremiumNonAzCreate","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebuspremiumnonazcreate","serviceBusEndpoint":"https://NamespaceServiceBusPremiumNonAzCreate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:07.1416766Z","updatedAt":"2024-09-23T08:20:07Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusStandardNonAzCreate","name":"NamespaceServiceBusStandardNonAzCreate","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebusstandardnonazcreate","serviceBusEndpoint":"https://NamespaceServiceBusStandardNonAzCreate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:07.2153221Z","updatedAt":"2024-09-23T08:20:07Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-jms-geo-cus","name":"shsama-jms-geo-cus","type":"Microsoft.ServiceBus/Namespaces","location":"centralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-jms-geo-cus","serviceBusEndpoint":"https://shsama-jms-geo-cus.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:50:14.2539704Z","updatedAt":"2024-09-26T07:50:14Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkwrj55aatxlgxucsba6igeidap7hqov64fz6i6fhkxg2q66tsychlm5im/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclidurp","name":"servicebus-nsclidurp","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclidurp","serviceBusEndpoint":"https://servicebus-nsclidurp.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T01:13:23.2939303Z","updatedAt":"2022-07-01T18:31:51.371547Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsurg712/providers/Microsoft.ServiceBus/namespaces/testvinsunseastusstd1","name":"testvinsunseastusstd1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvinsunseastusstd1","serviceBusEndpoint":"https://testvinsunseastusstd1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-07-12T23:29:32.611628Z","updatedAt":"2023-07-12T23:30:16.5962022Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vinaygupta-test/providers/Microsoft.ServiceBus/namespaces/vinayguptatest","name":"vinayguptatest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vinayguptatest","serviceBusEndpoint":"https://vinayguptatest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-05T22:38:27.4596584Z","updatedAt":"2024-08-05T22:38:30.3503384Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d24","name":"namespace9f015d24","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d24","serviceBusEndpoint":"https://namespace9f015d24.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:33:24.562823Z","updatedAt":"2024-09-29T06:33:27.6410778Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/dsa-message-test","name":"dsa-message-test","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:dsa-message-test","serviceBusEndpoint":"https://dsa-message-test.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-06-01T23:06:41.351463Z","updatedAt":"2023-06-01T23:07:26.5942034Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxeussbpremns-2","name":"kevxeussbpremns-2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxeussbpremns-2","serviceBusEndpoint":"https://kevxeussbpremns-2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T18:15:27.558986Z","updatedAt":"2024-09-27T18:21:10.4409199Z"},"identity":{"principalId":"a73b1b17-4fa2-40fb-b0d9-be7190b254f3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kevx-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kevxmi-wcus":{"clientId":"d07b99be-8faf-4798-b40d-343d7ef97ee6","principalId":"54518d54-4fd1-4b2e-962a-5e800f38f33a"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/woseibonsu-pm-playground/providers/Microsoft.ServiceBus/namespaces/wo-standard-migration-namespace","name":"wo-standard-migration-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:wo-standard-migration-namespace","serviceBusEndpoint":"https://wo-standard-namespace-finished-migration.servicebus.windows.net:443/","alternateName":"wo-standard-namespace-finished-migration","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-31T22:43:44.5125182Z","updatedAt":"2023-05-31T23:18:14.6185172Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscliq3wv","name":"servicebus-nscliq3wv","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscliq3wv","serviceBusEndpoint":"https://servicebus-nscliq3wv.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:09:12.5686577Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkb6dybi7i77qadmwp3x7qn4fsvzex5svqgkd23ljbqqekhpuqpewxl5ox/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclimdvj","name":"servicebus-nsclimdvj","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclimdvj","serviceBusEndpoint":"https://servicebus-nsclimdvj.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-28T19:41:42.5700344Z","updatedAt":"2022-07-01T20:13:49.7569297Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsPMmintls","name":"jagsPMmintls","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagspmmintls","serviceBusEndpoint":"https://jagsPMmintls.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-28T19:42:35.786006Z","updatedAt":"2022-07-01T20:16:02.7964931Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:47:10.8619607Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d2","name":"namespace9f015d2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d2","serviceBusEndpoint":"https://namespace9f015d2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:27:09.9208018Z","updatedAt":"2024-09-29T06:27:13.1555134Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxsbns-1","name":"kevxsbns-1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxsbns-1","serviceBusEndpoint":"https://kevxsbns-1-alt-1.servicebus.windows.net:443/","alternateName":"kevxsbns-1-alt-1","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-24T00:24:32.6494816Z","updatedAt":"2024-09-24T00:35:45.7526013Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jbj-sb-testing/providers/Microsoft.ServiceBus/namespaces/jbj-sb-none","name":"jbj-sb-none","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jbj-sb-none","serviceBusEndpoint":"https://jbj-sb-none.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-04-20T00:02:37.5794792Z","updatedAt":"2023-04-20T00:03:21.1901226Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:24.5492204Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nitinnair/providers/Microsoft.ServiceBus/namespaces/nitinTest","name":"nitinTest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:nitintest","serviceBusEndpoint":"https://nitinTest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-12T00:37:45.7428123Z","updatedAt":"2024-06-12T00:37:48.5709927Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscliamdo","name":"servicebus-nscliamdo","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscliamdo","serviceBusEndpoint":"https://servicebus-nscliamdo.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T19:41:22.4600773Z","updatedAt":"2024-09-28T19:42:35.5878274Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsurg712/providers/Microsoft.ServiceBus/namespaces/testvinsunseastusstd2","name":"testvinsunseastusstd2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvinsunseastusstd2","serviceBusEndpoint":"https://testvinsunseastusstd2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-07-13T00:05:21.8158731Z","updatedAt":"2023-07-13T00:06:04.5839459Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/cmktest","name":"cmktest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"cmkkey","keyVaultUri":"https://anwaykveus.vault.azure.net"}],"requireInfrastructureEncryption":false},"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cmktest","serviceBusEndpoint":"https://cmktest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-04-04T20:43:51.2755663Z","updatedAt":"2024-04-18T20:47:31.4544353Z"},"identity":{"principalId":"73fe4c96-eb6a-4dc1-8f77-69243c4721a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/primaryNSut8xa0","name":"primaryNSut8xa0","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsut8xa0","serviceBusEndpoint":"https://postMigrationulz9q8.servicebus.windows.net:443/","alternateName":"postMigrationulz9q8","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-10T18:33:19.854114Z","updatedAt":"2024-02-16T01:27:22.8129171Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/ContosoSBusNS1","name":"ContosoSBusNS1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:contososbusns1","serviceBusEndpoint":"https://ContosoSBusNS1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-14T23:47:17.3402338Z","updatedAt":"2023-12-14T23:48:01.0284606Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-sb-basic","name":"shsama-sb-basic","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-sb-basic","serviceBusEndpoint":"https://shsama-sb-basic.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-07-14T17:21:51.2293166Z","updatedAt":"2023-07-14T17:22:33.9389723Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakeschiller-synthetics/providers/Microsoft.ServiceBus/namespaces/synthetics-sb-ns","name":"synthetics-sb-ns","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"jms-for":"cache"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:synthetics-sb-ns","serviceBusEndpoint":"https://synthetics-sb-ns.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-29T12:40:40.3481843Z","updatedAt":"2022-07-08T18:29:10.8080802Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/primaryNSfjarv9","name":"primaryNSfjarv9","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsfjarv9","serviceBusEndpoint":"https://postMigration16it5x.servicebus.windows.net:443/","alternateName":"postMigration16it5x","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-13T06:16:32.4273613Z","updatedAt":"2024-02-16T01:27:22.8129171Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxsbpremns-1","name":"kevxsbpremns-1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxsbpremns-1","serviceBusEndpoint":"https://kevxsbpremns-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-24T00:26:56.4030811Z","updatedAt":"2024-09-24T00:35:47.6276401Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarri-cmk/providers/Microsoft.ServiceBus/namespaces/skarrisubtest-s","name":"skarrisubtest-s","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarrisubtest-s","serviceBusEndpoint":"https://skarrisubtest-s.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-10T22:31:44.1588201Z","updatedAt":"2024-06-10T22:34:37.0730266Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-vinaygupta/providers/Microsoft.ServiceBus/namespaces/mytest-vinaygupta","name":"mytest-vinaygupta","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:mytest-vinaygupta","serviceBusEndpoint":"https://mytest-vinaygupta.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T00:41:32.2656913Z","updatedAt":"2024-08-06T00:41:35.8126567Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SB-Intern2021ResourceGroup/providers/Microsoft.ServiceBus/namespaces/sophia-explore","name":"sophia-explore","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sophia-explore","serviceBusEndpoint":"https://sophia-explore.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-29T23:50:17.3775749Z","updatedAt":"2022-07-01T23:40:50.7777225Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxeussbpremns-3","name":"kevxeussbpremns-3","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxeussbpremns-3","serviceBusEndpoint":"https://kevxeussbpremns-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T21:31:40.644525Z","updatedAt":"2024-09-27T18:16:11.5702593Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pablorod_new/providers/Microsoft.ServiceBus/namespaces/pablorod-suscription-rules-v2","name":"pablorod-suscription-rules-v2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:pablorod-suscription-rules-v2","serviceBusEndpoint":"https://pablorod-suscription-rules-v2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-12-28T21:24:03.9050498Z","updatedAt":"2022-12-28T21:24:47.2023828Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardregressiontest","name":"standardregressiontest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:standardregressiontest","serviceBusEndpoint":"https://standardregressiontest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-30T01:24:56.3582525Z","updatedAt":"2022-07-02T01:24:37.2031797Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d2xz","name":"namespace9f015d2xz","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d2xz","serviceBusEndpoint":"https://namespace9f015d2xz.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:32:05.7125853Z","updatedAt":"2024-09-29T06:32:08.5720951Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/primaryNSn6fmhu","name":"primaryNSn6fmhu","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsn6fmhu","serviceBusEndpoint":"https://postMigrationqt7hcd.servicebus.windows.net:443/","alternateName":"postMigrationqt7hcd","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-22T17:41:18.5773436Z","updatedAt":"2024-02-16T01:28:23.7255974Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkteenbwgqgyyl2y6iy7uyajvcvzeffcawclhjplzvgypwqep53ptcz56k/providers/Microsoft.ServiceBus/namespaces/servicebus-nscligk4i","name":"servicebus-nscligk4i","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscligk4i","serviceBusEndpoint":"https://servicebus-nscligk4i.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-29T12:39:57.4290855Z","updatedAt":"2022-07-01T21:58:43.5950617Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vinsutestmigrationrg95/providers/Microsoft.ServiceBus/namespaces/vinsutestmigrationstd","name":"vinsutestmigrationstd","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vinsutestmigrationstd","serviceBusEndpoint":"https://vinsutestmigrationstdprev.servicebus.windows.net:443/","alternateName":"vinsutestmigrationstdprev","provisioningState":"Succeeded","status":"Active","createdAt":"2023-09-05T22:18:40.8601279Z","updatedAt":"2023-09-05T22:45:23.6464104Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/primaryNS6wbgdx","name":"primaryNS6wbgdx","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primaryns6wbgdx","serviceBusEndpoint":"https://postMigrationajsixu.servicebus.windows.net:443/","alternateName":"postMigrationajsixu","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-23T12:03:35.2157047Z","updatedAt":"2024-02-16T01:28:23.7255974Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:45:00.1085662Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardnewapi","name":"standardnewapi","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:standardnewapi","serviceBusEndpoint":"https://standardnewapi.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T01:12:08.5491945Z","updatedAt":"2022-07-01T18:30:52.3241886Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-jms-geo-eus","name":"shsama-jms-geo-eus","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-jms-geo-eus","serviceBusEndpoint":"https://shsama-jms-geo-eus.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-03-09T04:22:56.0943711Z","updatedAt":"2024-02-16T01:27:22.8285412Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/testpremiumns","name":"testpremiumns","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpremiumns","serviceBusEndpoint":"https://testpremiumns.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-12T22:57:06.4977445Z","updatedAt":"2023-12-12T22:57:51.6813107Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prajaktaservicebusrg/providers/Microsoft.ServiceBus/namespaces/prajaktaprem1","name":"prajaktaprem1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prajaktaprem1","serviceBusEndpoint":"https://prajaktaprem1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-22T00:11:10.2537537Z","updatedAt":"2024-07-22T00:12:01.8377377Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg","name":"sb-eldert-pg","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg","serviceBusEndpoint":"https://sb-eldert-pg-standard.servicebus.windows.net:443/","alternateName":"sb-eldert-pg-standard","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-18T00:07:44.5054993Z","updatedAt":"2022-06-23T21:29:03.2119264Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/testingrestnamespace","name":"testingrestnamespace","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testingrestnamespace","serviceBusEndpoint":"https://testingrestnamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-12T01:32:10.0516954Z","updatedAt":"2023-12-12T01:32:52.9658514Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBSDK130108","name":"TestSBSDK130108","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testsbsdk130108","serviceBusEndpoint":"https://TestSBSDK130108.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-08T23:00:42.2506917Z","updatedAt":"2024-06-08T04:39:31.4672173Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-playground/providers/Microsoft.ServiceBus/namespaces/abhigarg-test-ns-2024-06-06-001","name":"abhigarg-test-ns-2024-06-06-001","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"my-super-secret-key-001","keyVaultUri":"https://abhigargkv-20240606-001.vault.azure.net"}],"requireInfrastructureEncryption":false},"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:abhigarg-test-ns-2024-06-06-001","serviceBusEndpoint":"https://abhigarg-test-ns-2024-06-06-001.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-07T00:22:49.6311194Z","updatedAt":"2024-06-07T01:12:37.5162967Z"},"identity":{"principalId":"a068a543-81d8-41a7-bd1e-1e95b0db33e0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarri-cmk/providers/Microsoft.ServiceBus/namespaces/skarrisubtest","name":"skarrisubtest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarrisubtest","serviceBusEndpoint":"https://skarrisubtest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-10T20:59:03.0740033Z","updatedAt":"2024-06-10T22:34:39.1889514Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicebuscrirg/providers/Microsoft.ServiceBus/namespaces/servicebuscritesting","name":"servicebuscritesting","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebuscritesting","serviceBusEndpoint":"https://servicebuscritesting.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-03-05T21:41:33.9884605Z","updatedAt":"2024-03-05T21:42:26.5791797Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGName-5648/providers/Microsoft.ServiceBus/namespaces/Namespace1-1879","name":"Namespace1-1879","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{"Tag1":"Tag1Value"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-1879","serviceBusEndpoint":"https://Namespace1-1879.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T18:02:09.9966098Z","updatedAt":"2022-06-25T18:02:53.6788809Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/sbmessaging-standard","name":"sbmessaging-standard","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbmessaging-standard","serviceBusEndpoint":"https://sbmessaging-standard.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-11-06T19:41:02.1548582Z","updatedAt":"2023-11-06T19:41:47.3489621Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestDataDRPPG/providers/Microsoft.ServiceBus/namespaces/TestPremSBDataDRNS0104","name":"TestPremSBDataDRNS0104","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpremsbdatadrns0104","serviceBusEndpoint":"https://TestPremSBDataDRNS0104.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-05T00:53:54.1066644Z","updatedAt":"2024-01-05T00:55:29.6885548Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-std-1","name":"anqyan-std-1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-std-1","serviceBusEndpoint":"https://anqyan-std-1-post.servicebus.windows.net:443/","alternateName":"anqyan-std-1-post","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-11T17:58:55.7827946Z","updatedAt":"2024-09-11T18:35:16.5463988Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-IsraelCentral/providers/Microsoft.ServiceBus/namespaces/fr-israel-sbstd","name":"fr-israel-sbstd","type":"Microsoft.ServiceBus/Namespaces","location":"israelcentral","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"israelcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:fr-israel-sbstd","serviceBusEndpoint":"https://fr-israel-sbstd.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T09:23:19.302291Z","updatedAt":"2024-09-17T09:23:19Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-ItalyNorth/providers/Microsoft.ServiceBus/namespaces/ardsouza-ITN-VAZ00001-1","name":"ardsouza-ITN-VAZ00001-1","type":"Microsoft.ServiceBus/Namespaces","location":"italynorth","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"italynorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-itn-vaz00001-1","serviceBusEndpoint":"https://ardsouza-ITN-VAZ00001-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-10T15:34:23.0687152Z","updatedAt":"2024-06-10T15:34:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/arunsgeodrdemonamespace-6-68","name":"arunsgeodrdemonamespace-6-68","type":"Microsoft.ServiceBus/Namespaces","location":"italynorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"italynorth","roleType":"Secondary","replicaState":"Ready"},{"locationName":"spaincentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:arunsgeodrdemonamespace-6-68","serviceBusEndpoint":"https://arunsgeodrdemonamespace-6-68.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-28T20:13:00.5994213Z","updatedAt":"2024-06-28T20:46:37Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagssbgeorep","name":"jagssbgeorep","type":"Microsoft.ServiceBus/Namespaces","location":"italynorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"italynorth","roleType":"Primary","replicaState":"Ready"},{"locationName":"spaincentral","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagssbgeorep","serviceBusEndpoint":"https://jagssbgeorep.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-05T15:14:22.4441529Z","updatedAt":"2024-08-05T15:18:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-JapanWest/providers/Microsoft.ServiceBus/namespaces/ardsouza-japanwest-repronamespace-deleteme","name":"ardsouza-japanwest-repronamespace-deleteme","type":"Microsoft.ServiceBus/Namespaces","location":"japanwest","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"japanwest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-japanwest-repronamespace-deleteme","serviceBusEndpoint":"https://ardsouza-japanwest-repronamespace-deleteme.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-11T10:20:34.2311855Z","updatedAt":"2024-09-11T10:20:34Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationeqtoed6xgavneelsmwausqqhcvr24gcbjdxth6uopazwxilwdp3w7m/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclikwlbpfe2","name":"sb-pre-nsclikwlbpfe2","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclikwlbpfe2","serviceBusEndpoint":"https://sb-pre-nsclikwlbpfe2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:55.4401526Z","updatedAt":"2024-09-26T07:48:55Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameEventTest","name":"SuparameEventTest","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparameeventtest","serviceBusEndpoint":"https://SuparameEventTest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:55.4584919Z","updatedAt":"2024-09-26T07:48:55Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationsculekczk6rbzy3zn3er3z3nyjgxnqecgsdiwhyqmvbfaqgr2e4isn/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliovi7tnfs","name":"sb-pre-nscliovi7tnfs","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliovi7tnfs","serviceBusEndpoint":"https://sb-pre-nscliovi7tnfs.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:55.4918071Z","updatedAt":"2024-09-26T07:48:55Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-9080","name":"ServiceBus-PRENamespace-9080","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-9080","serviceBusEndpoint":"https://ServiceBus-PRENamespace-9080.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.0440474Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgo64dh47qainaf7qucvghm77jfde5w4xzbtfkhpw4lg3h26hmovw6r/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliozip4wkh","name":"sb-pre-nscliozip4wkh","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliozip4wkh","serviceBusEndpoint":"https://sb-pre-nscliozip4wkh.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.1589083Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationh764zxsz7zmshbhevzjfxvdehgp5g2gc5eabpwdhy5rcqdwl6mgnks/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliv3edwnxd","name":"sb-pre-nscliv3edwnxd","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliv3edwnxd","serviceBusEndpoint":"https://sb-pre-nscliv3edwnxd.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.7052214Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgwiklflupjaz34l5qdwtajzgbpdugmzilw23kszwuz6phccvl7rfcc/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclisnu35eog","name":"sb-pre-nsclisnu35eog","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclisnu35eog","serviceBusEndpoint":"https://sb-pre-nsclisnu35eog.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.9069716Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgkxbhiyuychyewd4athlvz73tjjrf3e4ivqwm33jbpq5ztn3ed4jad/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliptizjoaa","name":"sb-pre-nscliptizjoaa","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliptizjoaa","serviceBusEndpoint":"https://sb-pre-nscliptizjoaa.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.0519803Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5io3sa5ajwzrzqnvstbmaj6wk565ed4f3suvlf5arqkue7douc3ej5/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclibwcbek2k","name":"sb-pre-nsclibwcbek2k","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclibwcbek2k","serviceBusEndpoint":"https://sb-pre-nsclibwcbek2k.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.1168258Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration2di4ymwkzkfj73xqtuuvx6s5la5chn57aqs346jyw4s6ap6hijc2cx/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclilfuzcmk2","name":"sb-pre-nsclilfuzcmk2","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclilfuzcmk2","serviceBusEndpoint":"https://sb-pre-nsclilfuzcmk2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.7785083Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationwpmp3ndtkmeamgj2u26xlptka4h4qp7in7tp5ntcqfqijjme5s5c6g/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclil4ikiywf","name":"sb-pre-nsclil4ikiywf","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclil4ikiywf","serviceBusEndpoint":"https://sb-pre-nsclil4ikiywf.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.9594113Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5eezamk36l5j3kz2ezhtesfz65sdngon5g4c5swqfmx5re5bx2imnf/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliwot7f2kb","name":"sb-pre-nscliwot7f2kb","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliwot7f2kb","serviceBusEndpoint":"https://sb-pre-nscliwot7f2kb.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:58.0211253Z","updatedAt":"2024-09-26T07:48:58Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationti3pyun7wnva3zwii5kbvv2ykhzmjk2ehjbyd553r5a5c7cmjpn7m5/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliixenlvu6","name":"sb-pre-nscliixenlvu6","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliixenlvu6","serviceBusEndpoint":"https://sb-pre-nscliixenlvu6.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:58.3566388Z","updatedAt":"2024-09-26T07:48:58Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-8744","name":"ServiceBus-PRENamespace-8744","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-8744","serviceBusEndpoint":"https://ServiceBus-PRENamespace-8744.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:59.2406892Z","updatedAt":"2024-09-26T07:48:59Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-3686","name":"ServiceBus-PRENamespace-3686","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-3686","serviceBusEndpoint":"https://ServiceBus-PRENamespace-3686.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:59.9008027Z","updatedAt":"2024-09-26T07:48:59Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationdoxqfkzqz3sd2v7dfkto6uiqf3uzbrozq36cx2lyrkf35qqjonsfvq/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclihdqtn2m3","name":"sb-pre-nsclihdqtn2m3","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclihdqtn2m3","serviceBusEndpoint":"https://sb-pre-nsclihdqtn2m3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:49:00.0158314Z","updatedAt":"2024-09-26T07:49:00Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-7974","name":"Namespace1-7974","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-7974","serviceBusEndpoint":"https://Namespace1-7974.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-25T08:01:39.9152083Z","updatedAt":"2022-09-25T08:07:58.3425988Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-6359","name":"Namespace1-6359","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key2","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key1","keyVaultUri":"https://ps-test-kv2.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}}],"requireInfrastructureEncryption":false},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-6359","serviceBusEndpoint":"https://Namespace1-6359.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-25T08:17:21.9588872Z","updatedAt":"2024-01-31T19:07:54.7506401Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1":{"clientId":"38a989a1-3fab-4015-b546-cbcf7a67aa89","principalId":"624205aa-192c-4303-9606-990d06cbd997"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2":{"clientId":"440d7336-c408-4327-ad13-10a4e71aad64","principalId":"1bdb6af0-4284-47f4-b049-94aa2868d90b"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace2-5304","name":"Namespace2-5304","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":""},{"keyName":"key2","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":false},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace2-5304","serviceBusEndpoint":"https://Namespace2-5304.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-25T08:08:42.699394Z","updatedAt":"2024-01-31T19:07:54.7194404Z"},"identity":{"principalId":"acb4ce9b-2730-494d-a18d-a8be0420bdcb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-NorthEurope/providers/Microsoft.ServiceBus/namespaces/vmsscpu","name":"vmsscpu","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vmsscpu","serviceBusEndpoint":"https://vmsscpu.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-02-29T18:16:47.6173232Z","updatedAt":"2024-02-29T18:18:14.2399465Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSStandard","name":"testPSStandard","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpsstandard","serviceBusEndpoint":"https://testSBPostMigrationName.servicebus.windows.net:443/","alternateName":"testSBPostMigrationName","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-17T12:29:23.1842017Z","updatedAt":"2024-01-31T19:10:33.7887309Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-SBNS-std-2-14-2023-p-1","name":"ardsouza-SBNS-std-2-14-2023-p-1","type":"Microsoft.ServiceBus/Namespaces","location":"polandcentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"polandcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-sbns-std-2-14-2023-p-1","serviceBusEndpoint":"https://ardsouza-SBNS-std-2-14-2023-p-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-13T07:28:23.787552Z","updatedAt":"2024-08-13T07:28:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-testrg1/providers/Microsoft.ServiceBus/namespaces/ardsouza-polandcentral-std-12-21-22","name":"ardsouza-polandcentral-std-12-21-22","type":"Microsoft.ServiceBus/Namespaces","location":"polandcentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"polandcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-polandcentral-std-12-21-22","serviceBusEndpoint":"https://ardsouza-polandcentral-std-12-21-22.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-13T07:28:23.7986681Z","updatedAt":"2024-08-13T07:28:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-sb-prem-private-ep-test","name":"kala-sb-prem-private-ep-test","type":"Microsoft.ServiceBus/Namespaces","location":"polandcentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"polandcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Disabled","disableLocalAuth":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-sb-prem-private-ep-test/privateEndpointConnections/9611890d-0920-4ebb-b6a0-0dc6a73437bb","name":"9611890d-0920-4ebb-b6a0-0dc6a73437bb","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"polandcentral","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.Network/privateEndpoints/kala-sb-prem-private-ep"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}],"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kala-sb-prem-private-ep-test","serviceBusEndpoint":"https://kala-sb-prem-private-ep-test.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-05T23:11:54.1313602Z","updatedAt":"2024-09-05T23:12:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgwiklflupjaz34l5qdwtajzgbpdugmzilw23kszwuz6phccvl7rfcc/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli37kpfecv","name":"sb-std-nscli37kpfecv","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli37kpfecv","serviceBusEndpoint":"https://clipostmigration7aa2.servicebus.windows.net:443/","alternateName":"clipostmigration7aa2","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T10:48:19.6021974Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f0152","name":"namespace9f0152","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f0152","serviceBusEndpoint":"https://namespace9f0152.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:27:21.7097807Z","updatedAt":"2024-09-29T05:27:41.0664585Z"},"identity":{"principalId":"aec57946-cae0-4252-9dd0-957abaca5fed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/secondaryNSw9rzma","name":"secondaryNSw9rzma","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsw9rzma","serviceBusEndpoint":"https://secondaryNSw9rzma.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-10T18:33:19.9474033Z","updatedAt":"2024-01-26T01:01:57.7309421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9012","name":"namespace9012","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9012","serviceBusEndpoint":"https://namespace9012.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:39:18.8924972Z","updatedAt":"2024-09-29T04:39:22.0645022Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgo64dh47qainaf7qucvghm77jfde5w4xzbtfkhpw4lg3h26hmovw6r/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli3d7brt2y","name":"sb-std-nscli3d7brt2y","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli3d7brt2y","serviceBusEndpoint":"https://clipostmigrationv4hd.servicebus.windows.net:443/","alternateName":"clipostmigrationv4hd","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T06:39:35.540099Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationwpmp3ndtkmeamgj2u26xlptka4h4qp7in7tp5ntcqfqijjme5s5c6g/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclix6xolgzk","name":"sb-pre-nsclix6xolgzk","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclix6xolgzk","serviceBusEndpoint":"https://clipostmigrationnmkz.servicebus.windows.net:443/","alternateName":"clipostmigrationnmkz","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T11:42:05.3361521Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SaglodhaRG/providers/Microsoft.ServiceBus/namespaces/BasicNS","name":"BasicNS","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:basicns","serviceBusEndpoint":"https://BasicNS.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-04-06T06:45:05.4396312Z","updatedAt":"2023-04-06T06:45:49.7716597Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bwpoc/providers/Microsoft.ServiceBus/namespaces/partitionedns1","name":"partitionedns1","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:partitionedns1","serviceBusEndpoint":"https://partitionedns1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-10T01:27:38.1853061Z","updatedAt":"2024-09-10T01:29:09.3520316Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace90152","name":"namespace90152","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace90152","serviceBusEndpoint":"https://namespace90152.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:59:19.4506791Z","updatedAt":"2024-09-29T04:59:38.7698153Z"},"identity":{"principalId":"6adf0e72-48f6-4d32-95bf-44ff92e00528","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationdoxqfkzqz3sd2v7dfkto6uiqf3uzbrozq36cx2lyrkf35qqjonsfvq/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclifmgwyxrh","name":"sb-pre-nsclifmgwyxrh","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclifmgwyxrh","serviceBusEndpoint":"https://clipostmigrationvres.servicebus.windows.net:443/","alternateName":"clipostmigrationvres","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T11:04:04.1255486Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgkxbhiyuychyewd4athlvz73tjjrf3e4ivqwm33jbpq5ztn3ed4jad/providers/Microsoft.ServiceBus/namespaces/sb-std-nsclit667brb7","name":"sb-std-nsclit667brb7","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nsclit667brb7","serviceBusEndpoint":"https://clipostmigrationn346.servicebus.windows.net:443/","alternateName":"clipostmigrationn346","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T09:06:34.8755023Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-8049","name":"ServiceBus-STDNamespace-8049","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-8049","serviceBusEndpoint":"https://PostMigration-Name-3646.servicebus.windows.net:443/","alternateName":"PostMigration-Name-3646","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-10T22:03:31.60737Z","updatedAt":"2024-01-26T01:01:57.7153189Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/secondaryNS4qrb17","name":"secondaryNS4qrb17","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondaryns4qrb17","serviceBusEndpoint":"https://secondaryNS4qrb17.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-23T12:03:35.3043089Z","updatedAt":"2024-01-26T01:01:57.5903136Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/secondaryNS6zn7s8","name":"secondaryNS6zn7s8","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondaryns6zn7s8","serviceBusEndpoint":"https://secondaryNS6zn7s8.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-13T06:16:33.0795294Z","updatedAt":"2024-01-26T01:01:57.7309421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-6102","name":"ServiceBus-STDNamespace-6102","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-6102","serviceBusEndpoint":"https://PostMigration-Name-8545.servicebus.windows.net:443/","alternateName":"PostMigration-Name-8545","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-15T04:47:52.2948676Z","updatedAt":"2024-01-26T01:01:57.7153189Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationsculekczk6rbzy3zn3er3z3nyjgxnqecgsdiwhyqmvbfaqgr2e4isn/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli6p7zx6uw","name":"sb-std-nscli6p7zx6uw","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli6p7zx6uw","serviceBusEndpoint":"https://clipostmigrationje2w.servicebus.windows.net:443/","alternateName":"clipostmigrationje2w","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T06:31:31.211383Z","updatedAt":"2024-01-26T01:01:57.7309421Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SaglodhaRG/providers/Microsoft.ServiceBus/namespaces/SBPremsaglodha","name":"SBPremsaglodha","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbpremsaglodha","serviceBusEndpoint":"https://SBPremsaglodha.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-28T13:24:30.8390277Z","updatedAt":"2024-08-30T07:34:55.4603004Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.ServiceBus/namespaces/ali-cmk-validation","name":"ali-cmk-validation","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ali-byok-kv.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/prod-by3-533-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ua1"}}],"requireInfrastructureEncryption":false},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ali-cmk-validation","serviceBusEndpoint":"https://ali-cmk-validation.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-20T22:56:03.0130166Z","updatedAt":"2024-09-24T16:05:36.2656948Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/prod-by3-533-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ua1":{"clientId":"6adfc838-7885-450c-ab76-90988ebcecbc","principalId":"ab77b41c-cf0a-449d-80bc-815cdf3c5637"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration2di4ymwkzkfj73xqtuuvx6s5la5chn57aqs346jyw4s6ap6hijc2cx/providers/Microsoft.ServiceBus/namespaces/sb-std-nscliahk23qf3","name":"sb-std-nscliahk23qf3","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscliahk23qf3","serviceBusEndpoint":"https://clipostmigrationgki6.servicebus.windows.net:443/","alternateName":"clipostmigrationgki6","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T10:27:37.4878936Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7874/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-81","name":"ServiceBus-STDNamespace-81","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-81","serviceBusEndpoint":"https://ServiceBus-STDNamespace-81.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T16:29:39.6742128Z","updatedAt":"2022-06-25T16:30:24.4041021Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/secondaryNSiqjvmr","name":"secondaryNSiqjvmr","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsiqjvmr","serviceBusEndpoint":"https://secondaryNSiqjvmr.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-22T17:41:18.69702Z","updatedAt":"2024-01-26T01:01:57.4028107Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationeqtoed6xgavneelsmwausqqhcvr24gcbjdxth6uopazwxilwdp3w7m/providers/Microsoft.ServiceBus/namespaces/sb-std-nsclifmrer52d","name":"sb-std-nsclifmrer52d","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nsclifmrer52d","serviceBusEndpoint":"https://clipostmigrationamhb.servicebus.windows.net:443/","alternateName":"clipostmigrationamhb","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T07:40:08.1293673Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-276","name":"ServiceBus-STDNamespace-276","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-276","serviceBusEndpoint":"https://PostMigration-Name-9658.servicebus.windows.net:443/","alternateName":"PostMigration-Name-9658","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-16T05:32:29.7527134Z","updatedAt":"2024-01-26T01:01:57.7153189Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5io3sa5ajwzrzqnvstbmaj6wk565ed4f3suvlf5arqkue7douc3ej5/providers/Microsoft.ServiceBus/namespaces/sb-std-nscliakx5upva","name":"sb-std-nscliakx5upva","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscliakx5upva","serviceBusEndpoint":"https://clipostmigration2xdu.servicebus.windows.net:443/","alternateName":"clipostmigration2xdu","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T10:40:55.8364218Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5eezamk36l5j3kz2ezhtesfz65sdngon5g4c5swqfmx5re5bx2imnf/providers/Microsoft.ServiceBus/namespaces/sb-std-nsclirfsecojc","name":"sb-std-nsclirfsecojc","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nsclirfsecojc","serviceBusEndpoint":"https://clipostmigrationwjzz.servicebus.windows.net:443/","alternateName":"clipostmigrationwjzz","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T07:02:15.6412169Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationh764zxsz7zmshbhevzjfxvdehgp5g2gc5eabpwdhy5rcqdwl6mgnks/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclidsadn7fx","name":"sb-pre-nsclidsadn7fx","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclidsadn7fx","serviceBusEndpoint":"https://clipostmigration35d7.servicebus.windows.net:443/","alternateName":"clipostmigration35d7","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T11:19:42.0696133Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-prem-1","name":"anqyan-prem-1","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-prem-1","serviceBusEndpoint":"https://anqyan-prem-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-11T18:04:25.7412653Z","updatedAt":"2024-09-11T18:35:16.5898898Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationti3pyun7wnva3zwii5kbvv2ykhzmjk2ehjbyd553r5a5c7cmjpn7m5/providers/Microsoft.ServiceBus/namespaces/sb-std-nscliaabalsds","name":"sb-std-nscliaabalsds","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscliaabalsds","serviceBusEndpoint":"https://clipostmigration3f65.servicebus.windows.net:443/","alternateName":"clipostmigration3f65","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T06:54:36.5997072Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaPremiumNamespace","name":"PrithaPremiumNamespace","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithapremiumnamespace","serviceBusEndpoint":"https://PrithaPremiumNamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.1484132Z","updatedAt":"2024-09-23T08:20:45Z"},"identity":{"principalId":"dd24dfdb-8366-426d-955f-7331d953a692","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaPremiumSBnamespace2","name":"PrithaPremiumSBnamespace2","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithapremiumsbnamespace2","serviceBusEndpoint":"https://PrithaPremiumSBnamespace2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.2092778Z","updatedAt":"2024-09-23T08:20:45Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaTestSBNamespace","name":"PrithaTestSBNamespace","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithatestsbnamespace","serviceBusEndpoint":"https://PrithaTestSBNamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.4140376Z","updatedAt":"2024-09-23T08:20:45Z"},"identity":{"principalId":"2df3939c-4419-4f76-83ee-8e36b9c42c22","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaTestNamespace","name":"PrithaTestNamespace","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithatestnamespace","serviceBusEndpoint":"https://PrithaTestNamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.525476Z","updatedAt":"2024-09-23T08:20:45Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaNamespacePremium","name":"PrithaNamespacePremium","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithanamespacepremium","serviceBusEndpoint":"https://PrithaNamespacePremium.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-25T11:27:55.5125162Z","updatedAt":"2024-09-25T11:29:04Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsgeorepdr","name":"jagsgeorepdr","type":"Microsoft.ServiceBus/Namespaces","location":"spaincentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"spaincentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagsgeorepdr","serviceBusEndpoint":"https://jagsgeorepdr.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-19T23:50:14.7256265Z","updatedAt":"2024-07-19T23:51:15Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsu58_rg/providers/Microsoft.ServiceBus/namespaces/testperfprodvinsu","name":"testperfprodvinsu","type":"Microsoft.ServiceBus/Namespaces","location":"swedencentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"swedencentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testperfprodvinsu","serviceBusEndpoint":"https://testperfprodvinsu.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-30T06:03:58.282936Z","updatedAt":"2024-08-30T06:03:58Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarri-cmk/providers/Microsoft.ServiceBus/namespaces/ukcxtest","name":"ukcxtest","type":"Microsoft.ServiceBus/Namespaces","location":"uksouth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"uksouth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ukcxtest","serviceBusEndpoint":"https://ukcxtest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-25T21:55:42.8939321Z","updatedAt":"2024-09-25T21:56:46Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6064","name":"sdk-Namespace-6064","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6064","serviceBusEndpoint":"https://sdk-PostMigration-4665.servicebus.windows.net:443/","alternateName":"sdk-PostMigration-4665","provisioningState":"Succeeded","status":"Active","createdAt":"2022-05-16T23:03:13.268341Z","updatedAt":"2024-09-24T00:26:35.6056738Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7912","name":"sdk-Namespace-7912","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7912","serviceBusEndpoint":"https://sdk-Namespace-7912.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-05-17T18:14:19.8230335Z","updatedAt":"2024-09-24T00:26:39.2775477Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/ardsouza-1-10-2024-namespaceskuvalidation","name":"ardsouza-1-10-2024-namespaceskuvalidation","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-1-10-2024-namespaceskuvalidation","serviceBusEndpoint":"https://ardsouza-1-10-2024-namespaceskuvalidation.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-11T02:01:03.5622177Z","updatedAt":"2024-01-11T02:01:07.5154051Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5506","name":"sdk-Namespace-5506","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5506","serviceBusEndpoint":"https://sdk-PostMigration-5506.servicebus.windows.net:443/","alternateName":"sdk-PostMigration-5506","provisioningState":"Succeeded","status":"Active","createdAt":"2022-05-16T23:03:13.2527129Z","updatedAt":"2022-05-19T17:14:23.9709598Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jfgSBRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgBscNmpsc1","name":"jfgBscNmpsc1","type":"Microsoft.ServiceBus/Namespaces","location":"westeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jfgbscnmpsc1","serviceBusEndpoint":"https://jfgBscNmpsc1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-03-22T18:14:12.8659366Z","updatedAt":"2023-03-22T18:15:04.1369302Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jfgSBRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgSBNmspc1","name":"jfgSBNmspc1","type":"Microsoft.ServiceBus/Namespaces","location":"westeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jfgsbnmspc1","serviceBusEndpoint":"https://jfgSBNmspc1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-03-09T22:57:08.592498Z","updatedAt":"2023-03-09T22:57:55.0779659Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameSbusTest","name":"SuparameSbusTest","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparamesbustest","serviceBusEndpoint":"https://SuparameSbusTest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-10T02:29:57.3676953Z","updatedAt":"2022-06-10T02:29:57.3676953Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGName-2450/providers/Microsoft.ServiceBus/namespaces/Namespace-9959","name":"Namespace-9959","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace-9959","serviceBusEndpoint":"https://Namespace-9959.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-02T10:43:49.7401268Z","updatedAt":"2024-02-23T01:12:52.8670868Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EHPerformanceTestingFramework/providers/Microsoft.ServiceBus/namespaces/performanceframeworkbroker","name":"performanceframeworkbroker","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:performanceframeworkbroker","serviceBusEndpoint":"https://performanceframeworkbroker.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-09-19T07:56:44.692459Z","updatedAt":"2023-09-19T07:57:27.8038791Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-basic","name":"sb-eldert-pg-basic","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-basic","serviceBusEndpoint":"https://sb-eldert-pg-basic.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-02-20T21:46:15.3387193Z","updatedAt":"2024-02-20T21:46:58.5912982Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameNamespaceTest1","name":"SuparameNamespaceTest1","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparamenamespacetest1","serviceBusEndpoint":"https://SuparameNamespaceTest1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-12-16T05:52:15.1832564Z","updatedAt":"2022-12-16T05:53:00.183933Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testSBARMTemplate","name":"testSBARMTemplate","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testsbarmtemplate","serviceBusEndpoint":"https://testSBARMTemplate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-14T09:01:24.7124833Z","updatedAt":"2024-02-23T01:23:46.7510623Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxwussbpremns-2","name":"kevxwussbpremns-2","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kevx-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kevxmi-wcus"}}],"requireInfrastructureEncryption":true},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxwussbpremns-2","serviceBusEndpoint":"https://kevxwussbpremns-2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T18:14:32.6827249Z","updatedAt":"2024-09-27T18:21:20.3068417Z"},"identity":{"principalId":"0e992b76-71d9-456b-ae95-e195ab0d010f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kevx-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kevxmi-wcus":{"clientId":"d07b99be-8faf-4798-b40d-343d7ef97ee6","principalId":"54518d54-4fd1-4b2e-962a-5e800f38f33a"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/dlqtestfordavid","name":"dlqtestfordavid","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:dlqtestfordavid","serviceBusEndpoint":"https://dlqtestfordavid.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-04-11T16:48:22.7563558Z","updatedAt":"2023-04-11T16:58:13.9243033Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription6m27zc5rufs7xp34pis2phf5wfu2j7kk7lqieysmclma6iytq4r/providers/Microsoft.ServiceBus/namespaces/sb-nsclizscx2ebag64z","name":"sb-nsclizscx2ebag64z","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nsclizscx2ebag64z","serviceBusEndpoint":"https://sb-nsclizscx2ebag64z.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-07T08:00:56.4710146Z","updatedAt":"2023-02-07T08:01:39.3967793Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsprempm","name":"jagsprempm","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagsprempm","serviceBusEndpoint":"https://jagsprempm.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-03T18:26:02.5410715Z","updatedAt":"2024-09-03T18:27:23.1169986Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxwussbpremns-4","name":"kevxwussbpremns-4","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxwussbpremns-4","serviceBusEndpoint":"https://kevxwussbpremns-4.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T21:34:28.050363Z","updatedAt":"2024-09-27T18:16:22.6524976Z"},"identity":{"principalId":"bc5015dd-fa7a-4e7b-a233-4a013f9921a9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/recreate","name":"recreate","type":"Microsoft.ServiceBus/Namespaces","location":"westus","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:recreate","serviceBusEndpoint":"https://recreate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-10T21:40:30.4945103Z","updatedAt":"2023-12-11T04:54:08.0288363Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/testvstsan3","name":"testvstsan3","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvstsan3","serviceBusEndpoint":"https://testvstsan3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-02-25T20:55:35.746222Z","updatedAt":"2024-02-25T20:56:52.3567074Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.ServiceBus/namespaces/SBSDKv2NS0621","name":"SBSDKv2NS0621","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbsdkv2ns0621","serviceBusEndpoint":"https://SBSDKv2NS0621.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-21T22:44:45.3021513Z","updatedAt":"2024-08-08T02:47:51.3346007Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/klam-rg/providers/Microsoft.ServiceBus/namespaces/klam-sb-namespace","name":"klam-sb-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:klam-sb-namespace","serviceBusEndpoint":"https://klam-sb-namespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-05-24T17:24:06.7846144Z","updatedAt":"2024-05-24T17:24:10.3471942Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/KarenTesting/providers/Microsoft.ServiceBus/namespaces/st2testpremVmss","name":"st2testpremVmss","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:st2testpremvmss","serviceBusEndpoint":"https://st2testpremVmss.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-04-18T23:21:14.6444569Z","updatedAt":"2024-04-24T07:05:10.6934365Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-implementing-an-event-sourcing-strategy-on-azure/providers/Microsoft.ServiceBus/namespaces/sb-implementing-event-sourcing-strategy","name":"sb-implementing-event-sourcing-strategy","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-implementing-event-sourcing-strategy","serviceBusEndpoint":"https://sb-implementing-event-sourcing-strategy.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-24T20:28:20.0617256Z","updatedAt":"2022-12-06T18:15:03.9465739Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-empower-your-azure-iac-with-bicep/providers/Microsoft.ServiceBus/namespaces/contoso-service-bus","name":"contoso-service-bus","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:contoso-service-bus","serviceBusEndpoint":"https://contoso-service-bus.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-24T20:28:22.4992557Z","updatedAt":"2022-06-24T20:28:22.4992557Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureServiceBusInDepth/providers/Microsoft.ServiceBus/namespaces/simplesbmessaging","name":"simplesbmessaging","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:simplesbmessaging","serviceBusEndpoint":"https://simplesbmessaging.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-28T23:16:58.4116898Z","updatedAt":"2023-12-28T23:17:43.5894886Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/v-carrue-powershelltest/providers/Microsoft.ServiceBus/namespaces/v-carrue-ns1","name":"v-carrue-ns1","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:v-carrue-ns1","serviceBusEndpoint":"https://v-carrue-ns1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-24T23:46:28.8715332Z","updatedAt":"2022-06-24T23:46:28.8715332Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/SBTestPagination06060129","name":"SBTestPagination06060129","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbtestpagination06060129","serviceBusEndpoint":"https://SBTestPagination06060129.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-29T23:28:16.2615671Z","updatedAt":"2024-04-10T20:14:32.7743468Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jupachol-rg/providers/Microsoft.ServiceBus/namespaces/jupachol-manyentities2","name":"jupachol-manyentities2","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jupachol-manyentities2","serviceBusEndpoint":"https://jupachol-manyentities2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T21:09:43.0686492Z","updatedAt":"2024-09-23T21:10:46.2483538Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-premium","name":"sb-eldert-pg-premium","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-premium","serviceBusEndpoint":"https://sb-eldert-pg-premium.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-19T19:49:27.5808727Z","updatedAt":"2024-05-09T00:13:59.4852492Z"},"identity":{"principalId":"150b1ab1-9538-451a-b4e6-9c8a68b41810","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/ServiceBusStandardNSSuparme","name":"ServiceBusStandardNSSuparme","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebusstandardnssuparme","serviceBusEndpoint":"https://ServiceBusStandardNSSuparme.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-01-31T18:38:27.5382008Z","updatedAt":"2023-09-18T19:02:02.0162724Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap","name":"ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap/privateEndpointConnections/b6864f23-00b1-4284-ae74-5531b896adef","name":"b6864f23-00b1-4284-ae74-5531b896adef","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"centraluseuap","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.Network/privateEndpoints/pve1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}],"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-nonaz-cuseuap","serviceBusEndpoint":"https://ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.0173441Z","updatedAt":"2024-09-13T20:29:06Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test6718","name":"test6718","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test6718","serviceBusEndpoint":"https://test6718.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.0775922Z","updatedAt":"2024-09-27T20:36:53Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/abhigarg-test-ns-2023-11-28-001","name":"abhigarg-test-ns-2023-11-28-001","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:abhigarg-test-ns-2023-11-28-001","serviceBusEndpoint":"https://abhigarg-test-ns-2023-11-28-001.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.1219649Z","updatedAt":"2024-06-04T06:46:30Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-CentralUSEUAP/providers/Microsoft.ServiceBus/namespaces/PROD-CDM-V00001-sb-std-test","name":"PROD-CDM-V00001-sb-std-test","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prod-cdm-v00001-sb-std-test","serviceBusEndpoint":"https://PROD-CDM-V00001-sb-std-test.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.2673502Z","updatedAt":"2024-07-25T01:50:12Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijayscalesetsloadtest/providers/Microsoft.ServiceBus/namespaces/vijaystandardaadtest","name":"vijaystandardaadtest","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vijaystandardaadtest","serviceBusEndpoint":"https://vijaystandardaadtest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.7819973Z","updatedAt":"2024-07-25T01:56:48Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarridatadrrg/providers/Microsoft.ServiceBus/namespaces/skarri-test-central-euap","name":"skarri-test-central-euap","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"centraluseuap","roleType":"Secondary","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarri-test-central-euap","serviceBusEndpoint":"https://skarri-test-central-euap.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-14T04:03:47.3716478Z","updatedAt":"2024-08-14T04:25:41Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxcuseuap-sbpremns-3","name":"kevxcuseuap-sbpremns-3","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{"t":"t"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxcuseuap-sbpremns-3","serviceBusEndpoint":"https://kevxcuseuap-sbpremns-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-13T18:19:46.2728027Z","updatedAt":"2024-09-27T18:26:17Z"},"identity":{"principalId":"5ffa658e-1bc1-424a-8876-d3089798f22e","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alitest/providers/Microsoft.ServiceBus/namespaces/ali-pe-lock-test-namespace","name":"ali-pe-lock-test-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ali-pe-lock-test-namespace","serviceBusEndpoint":"https://ali-pe-lock-test-namespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-19T17:34:25.9319507Z","updatedAt":"2024-09-19T17:35:36Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ","name":"ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-reallynonaz","serviceBusEndpoint":"https://ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-15T17:11:52.3250786Z","updatedAt":"2024-09-13T20:28:54.186495Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sharmavijay-la-verification/providers/Microsoft.ServiceBus/namespaces/sharmavijay-sb-std-la-verification","name":"sharmavijay-sb-std-la-verification","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sharmavijay-sb-std-la-verification","serviceBusEndpoint":"https://sharmavijay-sb-std-la-verification.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-01T11:00:10.0884419Z","updatedAt":"2023-02-01T11:00:57.0274208Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dsms-test-rg/providers/Microsoft.ServiceBus/namespaces/dsmstestsb1","name":"dsmstestsb1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:dsmstestsb1","serviceBusEndpoint":"https://dsmstestsb1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-22T17:15:28.4683589Z","updatedAt":"2023-11-14T10:34:31.0549Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxeus2euap-sbpremns-3","name":"kevxeus2euap-sbpremns-3","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{"u":"u"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxeus2euap-sbpremns-3","serviceBusEndpoint":"https://kevxeus2euap-sbpremns-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-13T18:18:40.0458811Z","updatedAt":"2024-09-27T18:26:23.8803299Z"},"identity":{"principalId":"82309214-f4f7-4132-81a6-5efcfdb8720f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/leandertestcanary/providers/Microsoft.ServiceBus/namespaces/leandertestgeodrmsi2","name":"leandertestgeodrmsi2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:leandertestgeodrmsi2","serviceBusEndpoint":"https://leandertestgeodrmsi2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-04-29T17:33:21.1148004Z","updatedAt":"2024-09-06T02:52:02.284835Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-MalaysiaSouth/providers/Microsoft.ServiceBus/namespaces/ardsouza-malaysia-sb-standard","name":"ardsouza-malaysia-sb-standard","type":"Microsoft.ServiceBus/Namespaces","location":"malaysiasouth","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"malaysiasouth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-malaysia-sb-standard","serviceBusEndpoint":"https://ardsouza-malaysia-sb-standard.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-30T06:03:30.5242517Z","updatedAt":"2024-08-30T06:03:30Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/framborg/providers/Microsoft.ServiceBus/namespaces/framborg-nzn-sbs2","name":"framborg-nzn-sbs2","type":"Microsoft.ServiceBus/Namespaces","location":"newzealandnorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"newzealandnorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:framborg-nzn-sbs2","serviceBusEndpoint":"https://framborg-nzn-sbs2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-02T21:46:58.0124397Z","updatedAt":"2024-07-02T21:47:08.2470018Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alitest/providers/Microsoft.ServiceBus/namespaces/ali-test-namespace","name":"ali-test-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"norwaywest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"norwaywest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ali-test-namespace","serviceBusEndpoint":"https://ali-test-namespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-12T05:52:08.8242238Z","updatedAt":"2024-07-12T05:52:08Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-namespace3","name":"ardsouza-namespace3","type":"Microsoft.ServiceBus/Namespaces","location":"norwaywest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"norwaywest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-namespace3","serviceBusEndpoint":"https://ardsouza-namespace3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-12T05:52:08.3689087Z","updatedAt":"2024-07-12T05:52:08Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-namespace1","name":"ardsouza-namespace1","type":"Microsoft.ServiceBus/Namespaces","location":"norwaywest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"norwaywest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-namespace1","serviceBusEndpoint":"https://ardsouza-namespace1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-12T05:52:09.813331Z","updatedAt":"2024-07-12T05:52:09Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/lmanickam-sb-cosmos-basic","name":"lmanickam-sb-cosmos-basic","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:lmanickam-sb-cosmos-basic","serviceBusEndpoint":"https://lmanickam-sb-cosmos-basic.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-05-31T11:40:46.4780932Z","updatedAt":"2024-06-05T13:01:52Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/framborg/providers/Microsoft.ServiceBus/namespaces/framborg-twn-sbs","name":"framborg-twn-sbs","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:framborg-twn-sbs","serviceBusEndpoint":"https://framborg-twn-sbs.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-05-31T11:50:41.6292866Z","updatedAt":"2024-05-31T11:50:41Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarridatadrrg/providers/Microsoft.ServiceBus/namespaces/skarritaiwantest1","name":"skarritaiwantest1","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"},{"locationName":"centraluseuap","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarritaiwantest1","serviceBusEndpoint":"https://skarritaiwantest1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-15T03:34:21.6921044Z","updatedAt":"2024-06-15T03:38:25Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-pu-pr","name":"anqyan-pu-pr","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"},{"locationName":"italynorth","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-pu-pr","serviceBusEndpoint":"https://anqyan-pu-pr.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-26T00:00:52.6685501Z","updatedAt":"2024-08-26T00:04:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namspace91vf21","name":"namspace91vf21","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namspace91vf21","serviceBusEndpoint":"https://namspace91vf21.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T19:21:05.8127004Z","updatedAt":"2024-09-26T19:22:09Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namspace91vfcx21","name":"namspace91vfcx21","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namspace91vfcx21","serviceBusEndpoint":"https://namspace91vfcx21.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T19:34:49.6613793Z","updatedAt":"2024-09-26T19:35:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namspace91vfcx22","name":"namspace91vfcx22","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"australiaeast","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namspace91vfcx22","serviceBusEndpoint":"https://namspace91vfcx22.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T19:59:44.1843374Z","updatedAt":"2024-09-26T20:03:53Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/framborg/providers/Microsoft.ServiceBus/namespaces/framborg-twnw-sbs","name":"framborg-twnw-sbs","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorthwest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorthwest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:framborg-twnw-sbs","serviceBusEndpoint":"https://framborg-twnw-sbs.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T08:59:25.3863242Z","updatedAt":"2024-06-04T08:59:25Z"},"sku":{"name":"Standard","tier":"Standard"}}]}' headers: cache-control: - no-cache content-length: - - '80217' + - '185996' content-type: - application/json; charset=utf-8 date: - - Tue, 23 May 2023 11:52:21 GMT + - Sun, 29 Sep 2024 06:47:37 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-inline-count: + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' - '' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace list - Connection: - - keep-alive - User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces?api-version=2022-10-01-preview&$skipToken=2023-05-23T11:40:33.473Z - response: - body: - string: '{"value":[{"sku":{"name":"Premium","tier":"Premium","capacity":4},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"tag1":"value1","tag2":"value2"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","createdAt":"2023-05-23T11:42:18.453Z","updatedAt":"2023-05-23T11:44:37.593Z","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","status":"Active"}},{"sku":{"name":"Premium","tier":"Premium","capacity":2},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"identity":{"principalId":"d78726a0-5992-4ed8-909f-91f8648197a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"e1c0ab41-5a65-4010-97b1-809387462957","principalId":"190f3484-7a0e-4add-b1cd-08f24bf9ea4d"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"4392a857-f39b-43c7-8ff3-7fee5f8623d3","principalId":"8f39159a-7c8d-4aa5-87ae-5125ff8e75b0"}}},"properties":{"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","createdAt":"2023-05-23T11:44:44.253Z","updatedAt":"2023-05-23T11:51:53.593Z","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","status":"Active"}}]}' - headers: - cache-control: - - no-cache - content-length: - - '2249' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 23 May 2023 11:52:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-inline-count: - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: B0F63ADAEC9C44FFBA6C166A05F3107F Ref B: TYO201100117051 Ref C: 2024-09-29T06:47:34Z' status: code: 200 message: OK @@ -2538,9 +1441,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: string: '' @@ -2550,24 +1453,27 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:52:23 GMT + - Sun, 29 Sep 2024 06:47:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892619900741&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=UXu_0Y-Rsld0_-FZlHMJd67yFSVyja5XMfgKsANnMaZFtvsIXqIf-lSqcE5Db3gjHoGpbuR9SUrvmbFyfMn_XbpxYFH53RcqhzmMMvSgn44VP8gbptA4NKocjhf3PeJMgSoEACxnp51kHIAoj6XVLLkdmzSU-GibKEQ7Za8Xv_8ZCW5y2R8KWeVMn7mR1ahA8_21RbiGiRn84ym4TligvlF_CceJzMpn0ttWkqotNbeCsMJdVDnON6YVaUxzQvK8Ef7B_02v-FA-MlmYMdwe7gSK3pCB1jPHJxcdhP-7BcR_XNduyAB02wvt8X2nl4VfboZTYzJ-yV8VImNCMTKeew&h=9zm5ZU_MD4BWOhVQDuE18vVTq3_NFfFHtvByZkiMAIY pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000003976 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G13|2024-09-29T06:47:41 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 645B7F91FDC94D37A7EF61A440F7FEAC Ref B: OSA221030115039 Ref C: 2024-09-29T06:47:38Z' status: code: 202 message: Accepted @@ -2585,9 +1491,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892619900741&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=UXu_0Y-Rsld0_-FZlHMJd67yFSVyja5XMfgKsANnMaZFtvsIXqIf-lSqcE5Db3gjHoGpbuR9SUrvmbFyfMn_XbpxYFH53RcqhzmMMvSgn44VP8gbptA4NKocjhf3PeJMgSoEACxnp51kHIAoj6XVLLkdmzSU-GibKEQ7Za8Xv_8ZCW5y2R8KWeVMn7mR1ahA8_21RbiGiRn84ym4TligvlF_CceJzMpn0ttWkqotNbeCsMJdVDnON6YVaUxzQvK8Ef7B_02v-FA-MlmYMdwe7gSK3pCB1jPHJxcdhP-7BcR_XNduyAB02wvt8X2nl4VfboZTYzJ-yV8VImNCMTKeew&h=9zm5ZU_MD4BWOhVQDuE18vVTq3_NFfFHtvByZkiMAIY response: body: string: '' @@ -2597,22 +1503,25 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:52:23 GMT + - Sun, 29 Sep 2024 06:47:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892629359046&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=IRyBMpQDi4NFd1v7MklAFQ4pEX1tnOV-3DF5xGOs2Tejo9I9jQoe1FR8VGgF-68IbOCAkRrPdA1LCWyYIbdnN5LEUPvUSjFNEMu8eD8r42L-nANr7P1t-EcUOSs-HVM2d-RJQuSIT8PoksdxQSs2dhBc5cA8hK_ubiY0VU72l8TKFn4xLiROtTJxepi0X5ng3BiABoqObZABng_tzfXMW0AB1hrpFiHOEAzxeUUYgy_Fb-rjWxriNRa82neEA2tS0L7oOItcZ-1tUbkNVOD3MAsvIdY6C3dg3zdp2MD_wi1I-hHoPjSC3w2l3jQ0POC2GMt31539vh6oojVLSJ-85w&h=UqwlQpIETn5eLqeWlUbr26J9UGezjtMAlbKMrjuMzmM pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000003760 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G11|2024-09-29T06:47:42 + x-msedge-ref: + - 'Ref A: FAB8AE4508254E719701356709594AA6 Ref B: OSA221030115039 Ref C: 2024-09-29T06:47:42Z' status: code: 202 message: Accepted @@ -2630,9 +1539,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892629359046&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=IRyBMpQDi4NFd1v7MklAFQ4pEX1tnOV-3DF5xGOs2Tejo9I9jQoe1FR8VGgF-68IbOCAkRrPdA1LCWyYIbdnN5LEUPvUSjFNEMu8eD8r42L-nANr7P1t-EcUOSs-HVM2d-RJQuSIT8PoksdxQSs2dhBc5cA8hK_ubiY0VU72l8TKFn4xLiROtTJxepi0X5ng3BiABoqObZABng_tzfXMW0AB1hrpFiHOEAzxeUUYgy_Fb-rjWxriNRa82neEA2tS0L7oOItcZ-1tUbkNVOD3MAsvIdY6C3dg3zdp2MD_wi1I-hHoPjSC3w2l3jQ0POC2GMt31539vh6oojVLSJ-85w&h=UqwlQpIETn5eLqeWlUbr26J9UGezjtMAlbKMrjuMzmM response: body: string: '' @@ -2640,20 +1549,25 @@ interactions: cache-control: - no-cache date: - - Tue, 23 May 2023 11:52:54 GMT + - Sun, 29 Sep 2024 06:48:13 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892940210066&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=Q0Oemhao6pSxPGFBYiNeb9_CjSzjKRr4mOpywula2V_vcpzZl3t8VOeka0yBuRYlJDF3KRaXttUjFfP5rK0nBY8mT5Ly_R_pk_dr55UWtufz8M39xBkuJx-8enJY-K-kC8QQFdRJrzZa8fzcYWcSb3EinKJQVUKmeMK06lLIxDWzIo3S6ycD2YVFHWSiT9ZqlIGtc9qR7_yOTWVHBMCjBW748F5i0miRCYYefCYRDq2sxTKrUxBXjtDfXUzVYiKiQFE7artLYV1l_DjB6olG6judH_VD9Z2v8ptL0NtaGiA_8YBXyj8-Har1nBAOg-6bYlWTu0_XOTuAqYvCUYUH5g&h=B3sEJ0P_AQpUuVxSu5QLY_ZYlVD9HQUNTsKhhOPmK7g pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000003760 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G11|2024-09-29T06:48:13 + x-msedge-ref: + - 'Ref A: C2537CD12A194F1DB2B7A5208C32A1DB Ref B: OSA221030115039 Ref C: 2024-09-29T06:48:13Z' status: code: 204 message: No Content @@ -2673,9 +1587,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: string: '' @@ -2685,24 +1599,27 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:52:55 GMT + - Sun, 29 Sep 2024 06:48:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli1000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892982152748&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=JDrqk7mCTJjhGrLzXpDPt5QgTWjyltdcOjpMQk-Cta8Dns-FiUWgdjD2ZcU-UDn4xUkfNEyUo5q7cyaUmSQxH2Dv8-mF5JXiYXMdWn28CyOB4OhYc2LvjjqsNiMPBLndppjfPKpnFlmmKGSrbmk3FRsZFnFqf2sfyOA9qX4sPMe1naRc9bpGyLPCZG0aYMa0bbhCwdCt13DlqzCZ--5lep4VehpWzPMh05XLqgyCqzYiMc17xXIvs813NbItqzB-9y8xVisXGMWEJXIDWw_jj1IdrnIyK9uz7yd-ufuucrrkLYScnWn8RKdSrilyQ3OUdbjx5QktjHfw9nz_wqn5zg&h=N6h39wF5AKboCsUxQ3LNr8YEXMOPXJzlN-hkM_uhN2I pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000009732 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G1|2024-09-29T06:48:18 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: F560D564BB1B4B30ACFC906072E138B5 Ref B: OSA221030116037 Ref C: 2024-09-29T06:48:14Z' status: code: 202 message: Accepted @@ -2720,9 +1637,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli1000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892982152748&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=JDrqk7mCTJjhGrLzXpDPt5QgTWjyltdcOjpMQk-Cta8Dns-FiUWgdjD2ZcU-UDn4xUkfNEyUo5q7cyaUmSQxH2Dv8-mF5JXiYXMdWn28CyOB4OhYc2LvjjqsNiMPBLndppjfPKpnFlmmKGSrbmk3FRsZFnFqf2sfyOA9qX4sPMe1naRc9bpGyLPCZG0aYMa0bbhCwdCt13DlqzCZ--5lep4VehpWzPMh05XLqgyCqzYiMc17xXIvs813NbItqzB-9y8xVisXGMWEJXIDWw_jj1IdrnIyK9uz7yd-ufuucrrkLYScnWn8RKdSrilyQ3OUdbjx5QktjHfw9nz_wqn5zg&h=N6h39wF5AKboCsUxQ3LNr8YEXMOPXJzlN-hkM_uhN2I response: body: string: '' @@ -2732,22 +1649,25 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:52:55 GMT + - Sun, 29 Sep 2024 06:48:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli1000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892992291588&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=lE8JnWmdG4TVu8ktXz9vvhFyVC_E7zANkjkBEc3M2qyzODB1B_jJNF1DXqjpVxLU0aXeIBp_ghGkzNBNvlG5NFcAduzT9p7Vvp1EXPk-8Va5sCx5sDA8Q4Jno0ouiBnlSvIQCZzXg8jOEv10lZVN-zzrDH-X3Gw4JBHG1JZxu0fH_PVFIELpMtsrCf4V7rHQRIfNC2Rv5iricVs8i1poSWJH9x983hPGmWyhMiEoqvZTCDSWcHNQrfigiO5fsgtftdufImKDC5LZojU22OmmiSYJvhhn4NkoPVllYB-I3UCLX18W1eH9mug0zlN6DsTT6zGaLQmWSkd2rYy7SrRWLw&h=6nTRisdeG581n04yAaJGcyi4t8R56J0yb8kv_-Ip2Wk pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006456 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G9|2024-09-29T06:48:19 + x-msedge-ref: + - 'Ref A: 8D96910B9F98462CBDB41B2D4DD89ED3 Ref B: OSA221030116037 Ref C: 2024-09-29T06:48:18Z' status: code: 202 message: Accepted @@ -2765,9 +1685,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli1000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892992291588&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=lE8JnWmdG4TVu8ktXz9vvhFyVC_E7zANkjkBEc3M2qyzODB1B_jJNF1DXqjpVxLU0aXeIBp_ghGkzNBNvlG5NFcAduzT9p7Vvp1EXPk-8Va5sCx5sDA8Q4Jno0ouiBnlSvIQCZzXg8jOEv10lZVN-zzrDH-X3Gw4JBHG1JZxu0fH_PVFIELpMtsrCf4V7rHQRIfNC2Rv5iricVs8i1poSWJH9x983hPGmWyhMiEoqvZTCDSWcHNQrfigiO5fsgtftdufImKDC5LZojU22OmmiSYJvhhn4NkoPVllYB-I3UCLX18W1eH9mug0zlN6DsTT6zGaLQmWSkd2rYy7SrRWLw&h=6nTRisdeG581n04yAaJGcyi4t8R56J0yb8kv_-Ip2Wk response: body: string: '' @@ -2777,22 +1697,25 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:53:25 GMT + - Sun, 29 Sep 2024 06:48:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli1000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893302414628&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OPqx9X60P-II3px4IG3XmUEV-plnwZTUxpn24jgfeqhrMXtLn-zWBXJ9RU6633KVaXng26c7nWWhmEBBXwC2Mx-YJhqlFiZCjBQi-0eSKOqZx8Dhz2cIaqeJ1ddB8xzvJly6idlCe7FeVuKD50CU4YDfdpZ2fcVcphAcT1zkhECCpyXeTMAESxKSlnRYHg7JVNW1X1IcDBPBXByPIr7SRsXyg5RxfQ_QX0F3rDIQGMGdUcjsr275BGCvTuB4uttcN4p--WVApxv-Qhfz6-vfx_SmWYz_pW48wl2KNcRUg2yJ3BRNa8wQk5TKRWDwz0fze7Es-k_TVO1IX3WUYMCl7g&h=QdZevyCPy2VG16DG0SjWneuefWJE3qo0C3Hu-va45bg pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000002560 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G4|2024-09-29T06:48:50 + x-msedge-ref: + - 'Ref A: CA38990B94C6405DA998E61022CC91E7 Ref B: OSA221030116037 Ref C: 2024-09-29T06:48:49Z' status: code: 202 message: Accepted @@ -2810,9 +1733,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli1000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893302414628&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OPqx9X60P-II3px4IG3XmUEV-plnwZTUxpn24jgfeqhrMXtLn-zWBXJ9RU6633KVaXng26c7nWWhmEBBXwC2Mx-YJhqlFiZCjBQi-0eSKOqZx8Dhz2cIaqeJ1ddB8xzvJly6idlCe7FeVuKD50CU4YDfdpZ2fcVcphAcT1zkhECCpyXeTMAESxKSlnRYHg7JVNW1X1IcDBPBXByPIr7SRsXyg5RxfQ_QX0F3rDIQGMGdUcjsr275BGCvTuB4uttcN4p--WVApxv-Qhfz6-vfx_SmWYz_pW48wl2KNcRUg2yJ3BRNa8wQk5TKRWDwz0fze7Es-k_TVO1IX3WUYMCl7g&h=QdZevyCPy2VG16DG0SjWneuefWJE3qo0C3Hu-va45bg response: body: string: '' @@ -2822,22 +1745,25 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:53:56 GMT + - Sun, 29 Sep 2024 06:49:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli1000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893612331688&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=WghMse-u7Nt_c78crZRXdC7XkdHbbJScYlV3yv8MCa9bB7Jg4qhyCEBaPhLh0tm-BjO15AGtmEr-Opv4q0MZe5bmx6bJp1yr6QMWQFbqEfvYKyp68ck-xAFwS4_LKjFD_C_kJejzOJzuFPRm2fgl0WQmM_2Eni9X-wPure-lkKzUQm_kZn9j-RzGI5z5WDxqlU0wUucY0v3jzEIwL4TezA_3Nxu0WLlK8YsrdrDyDEpMdV7qF7ONBgAfgiFpd3NxMqkqa87uNSf0bqkkeC-jMhdPHTkCf8V0HJ72gdZB5KDlSd5Z53R_nyRjXmfhYSfzAdiq3-go9jKAWwfE0D8RDQ&h=ZSt_ZBBK1cfiBTm0ttnFxOKLgccgtTl8zPsocVuQH2U pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006996 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G12|2024-09-29T06:49:21 + x-msedge-ref: + - 'Ref A: 384277E6B1154E09A5B5BEA2EB0389D0 Ref B: OSA221030116037 Ref C: 2024-09-29T06:49:20Z' status: code: 202 message: Accepted @@ -2855,9 +1781,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli1000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893612331688&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=WghMse-u7Nt_c78crZRXdC7XkdHbbJScYlV3yv8MCa9bB7Jg4qhyCEBaPhLh0tm-BjO15AGtmEr-Opv4q0MZe5bmx6bJp1yr6QMWQFbqEfvYKyp68ck-xAFwS4_LKjFD_C_kJejzOJzuFPRm2fgl0WQmM_2Eni9X-wPure-lkKzUQm_kZn9j-RzGI5z5WDxqlU0wUucY0v3jzEIwL4TezA_3Nxu0WLlK8YsrdrDyDEpMdV7qF7ONBgAfgiFpd3NxMqkqa87uNSf0bqkkeC-jMhdPHTkCf8V0HJ72gdZB5KDlSd5Z53R_nyRjXmfhYSfzAdiq3-go9jKAWwfE0D8RDQ&h=ZSt_ZBBK1cfiBTm0ttnFxOKLgccgtTl8zPsocVuQH2U response: body: string: '' @@ -2865,20 +1791,25 @@ interactions: cache-control: - no-cache date: - - Tue, 23 May 2023 11:54:26 GMT + - Sun, 29 Sep 2024 06:49:51 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893922116821&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=D3nLpTHgMgGW8-kNjWl-PMPGy8-8jRmG9kAXidRQ8FV-OhtLz2iPhTgzj_P5xX5GvLS_f-ibm803w1s2SW5kwxbwM7DFFt9WAHJHt10vq91hWx-RvSGgUc8ENeYsVgWh9i1itfzGcZG64yD7p0Fzqip9UR7VwpP8Z04q90XvWZ8rv37JbDSuSUTfV0oZ_zB-7T1ZVdknuG8CC9j8teu4Gd-GcRNRVbirPAczXw5-lUwmBrU6NaibmPh1fyUiD5KCkDtp0e0bYTXz4jdllx96reqe7DwWY9UJJ10vv_1aiAI0NByKpt6tsJPTuFs8wsKc7y_8eZbd4XYIMagcyNP1KA&h=gf66-9hiTjqNI8i7kj4KmiNQSf2iiAmXO5zlMRn2-Rg pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006992 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G14|2024-09-29T06:49:52 + x-msedge-ref: + - 'Ref A: A5A5D220561F43F98C48D19061A76E83 Ref B: OSA221030116037 Ref C: 2024-09-29T06:49:51Z' status: code: 204 message: No Content @@ -2898,9 +1829,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview response: body: string: '' @@ -2910,24 +1841,27 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:54:29 GMT + - Sun, 29 Sep 2024 06:49:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli2000004?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893947431106&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OgLbXVUlhN1ih79i05nN1YrYcKlTNEAtyVdofGlStgT5WOG6k3UY1riXfNaEKs2DDShM5tTQoM92qbfeZXuIYxUr4RtQrYO7G2b-M1PPP0cvp5__11K2Kc5yeMM0_vQR0zZRBYjhc5XWoPehyr05iq7HYtP9WUkt0iL6WVMu8Z6wCussG8teOl53Gj2I_3Ldk70bdzQ1oPQ8eSIB0tWZbluO9Co8-sXINXCu_L5XtSsZfCqyucrxJLeAClN62OczBjC8P5gp_WwxpT7UNbQ9RU9TVy4TpiyVdtxkGL8ln5wMsJmkJI_zFdv2M1Z7LvB5DAfPv_xMke_DsSj-XTOM4w&h=VT-r5MVWEXlE132cA_1oA1hIyVqNAfmCUAMTkMxxxOM pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006996 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G12|2024-09-29T06:49:54 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: E2DA1073EE504C11B2D3EF8A10AD8AD6 Ref B: TYO201151006025 Ref C: 2024-09-29T06:49:52Z' status: code: 202 message: Accepted @@ -2945,9 +1879,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli2000004?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893947431106&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OgLbXVUlhN1ih79i05nN1YrYcKlTNEAtyVdofGlStgT5WOG6k3UY1riXfNaEKs2DDShM5tTQoM92qbfeZXuIYxUr4RtQrYO7G2b-M1PPP0cvp5__11K2Kc5yeMM0_vQR0zZRBYjhc5XWoPehyr05iq7HYtP9WUkt0iL6WVMu8Z6wCussG8teOl53Gj2I_3Ldk70bdzQ1oPQ8eSIB0tWZbluO9Co8-sXINXCu_L5XtSsZfCqyucrxJLeAClN62OczBjC8P5gp_WwxpT7UNbQ9RU9TVy4TpiyVdtxkGL8ln5wMsJmkJI_zFdv2M1Z7LvB5DAfPv_xMke_DsSj-XTOM4w&h=VT-r5MVWEXlE132cA_1oA1hIyVqNAfmCUAMTkMxxxOM response: body: string: '' @@ -2957,22 +1891,25 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:54:29 GMT + - Sun, 29 Sep 2024 06:49:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli2000004?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893957972226&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=KZ1sU3wJMMAjzVmr6r0abbaWuitU5cMAAeooTPFPz_YUAY8qD7UqwKQsPNenrXIYw0GkNLF3-vY3EqsV3_mtEiwWk-wIPkIGGmkY2Yly1tsq6bKug0x0Pn7xsBsIOWY9TA8Zi4UYCUULRA2LsAoEnQHNZv7L4cnc6cRTnVaK8mkUHEsnfl_R1iSoKHSFeq_V-HRKfNDrIQPxBq6EcxNmUegrFU_YUZ4nOGeGLlZ3kNyP6p8IpGoEOidKvpj0ir08lU3OkyFzJCtAxMYIIi--JW8HZstIHmyTf2adYcAOFDRhPtQINfKsl4vEsUrD83bEMO8VeB6mY6lQ0REulSbXJg&h=YPiW259qT01F4JLmGbFBxXcRIEBqBbp6ddNadb5Lsco pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000005028 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G5|2024-09-29T06:49:55 + x-msedge-ref: + - 'Ref A: 6C5C85ABB18347ABBAA965742BDF8549 Ref B: TYO201151006025 Ref C: 2024-09-29T06:49:54Z' status: code: 202 message: Accepted @@ -2990,9 +1927,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli2000004?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893957972226&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=KZ1sU3wJMMAjzVmr6r0abbaWuitU5cMAAeooTPFPz_YUAY8qD7UqwKQsPNenrXIYw0GkNLF3-vY3EqsV3_mtEiwWk-wIPkIGGmkY2Yly1tsq6bKug0x0Pn7xsBsIOWY9TA8Zi4UYCUULRA2LsAoEnQHNZv7L4cnc6cRTnVaK8mkUHEsnfl_R1iSoKHSFeq_V-HRKfNDrIQPxBq6EcxNmUegrFU_YUZ4nOGeGLlZ3kNyP6p8IpGoEOidKvpj0ir08lU3OkyFzJCtAxMYIIi--JW8HZstIHmyTf2adYcAOFDRhPtQINfKsl4vEsUrD83bEMO8VeB6mY6lQ0REulSbXJg&h=YPiW259qT01F4JLmGbFBxXcRIEBqBbp6ddNadb5Lsco response: body: string: '' @@ -3002,22 +1939,25 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:54:59 GMT + - Sun, 29 Sep 2024 06:50:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli2000004?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894268239593&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=DdHmLni1qGnHfxpw2GhAkEtH5mQDvDxnMgtAoywyGFGhiPqfSShQxbqvAS8xODZhNrdwX-h05Jk_fSwR61WT3AgA7V94s3P6BmtD_QYmS0YWwJ_weD_SqBJmccOHsmTz1K-3KwpAol3ksqYXlwkL8S73i72Wev-DzXTSpn7ts2IkFcqqLtgap6gQRC74fgBhbZe2hEOqJN861yzcQMT8WbrLr0Az8O1xIxxLNV5-cKS40p2DCIekGSv0vxYwGISlsHMWWA_kMSJ6VEeB-nYL0HB_CMEKxJOWSi_sHTODVBEj47QtrwOIyX9qh25VGblt5kzvML-B2DGJtGq4UFrPZw&h=0IfRuBbmb615K5xeQlzgEk71knwWi3PJfgNbrFkMyJs pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000003760 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G11|2024-09-29T06:50:26 + x-msedge-ref: + - 'Ref A: 06265C8602B046BDA1D3DFFB2993489D Ref B: TYO201151006025 Ref C: 2024-09-29T06:50:25Z' status: code: 202 message: Accepted @@ -3035,9 +1975,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli2000004?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894268239593&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=DdHmLni1qGnHfxpw2GhAkEtH5mQDvDxnMgtAoywyGFGhiPqfSShQxbqvAS8xODZhNrdwX-h05Jk_fSwR61WT3AgA7V94s3P6BmtD_QYmS0YWwJ_weD_SqBJmccOHsmTz1K-3KwpAol3ksqYXlwkL8S73i72Wev-DzXTSpn7ts2IkFcqqLtgap6gQRC74fgBhbZe2hEOqJN861yzcQMT8WbrLr0Az8O1xIxxLNV5-cKS40p2DCIekGSv0vxYwGISlsHMWWA_kMSJ6VEeB-nYL0HB_CMEKxJOWSi_sHTODVBEj47QtrwOIyX9qh25VGblt5kzvML-B2DGJtGq4UFrPZw&h=0IfRuBbmb615K5xeQlzgEk71knwWi3PJfgNbrFkMyJs response: body: string: '' @@ -3047,22 +1987,25 @@ interactions: content-length: - '0' date: - - Tue, 23 May 2023 11:55:29 GMT + - Sun, 29 Sep 2024 06:50:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli2000004?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894578728440&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=YbGVMUuYYt79fawk9tUF_ckHmLh069oBneSFiKBIKBCi9vKFrYn-T6ZSq4q6hZ84TMEAHMReUBgJHGeq6H4V09uZdWAKySALcshafPyC2WgIVqZSKZtv1XELiB6Bxs9fsZ-x2_GJfUJBMNtfwhKdwBte-gPLZiAoZ_CwGBCfCQxFPExdImkRuFsVUeqZ-J92wjEgpJ6i4nmY19WsyGl-CjTpJy-THcf7SDuvoNi-cO6EgNyzncg7j_wWyx-65J_BwE5YNbY3saAvDRM4hqehNb8QBqGetN9k_YWgWYjdSODuhh8YYrVjY7lh_LDr024RVT-UyaFKs5u7wpJgRbGn8A&h=pyowaUZDWze799kua4h9gPGhe4uQHSnWrxYsHeUxAOo pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006456 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G9|2024-09-29T06:50:57 + x-msedge-ref: + - 'Ref A: 178937425C894B9B836158A9AA644121 Ref B: TYO201151006025 Ref C: 2024-09-29T06:50:56Z' status: code: 202 message: Accepted @@ -3080,9 +2023,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.49.0 (AAZ) azsdk-python-core/1.26.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-nscli2000004?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894578728440&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=YbGVMUuYYt79fawk9tUF_ckHmLh069oBneSFiKBIKBCi9vKFrYn-T6ZSq4q6hZ84TMEAHMReUBgJHGeq6H4V09uZdWAKySALcshafPyC2WgIVqZSKZtv1XELiB6Bxs9fsZ-x2_GJfUJBMNtfwhKdwBte-gPLZiAoZ_CwGBCfCQxFPExdImkRuFsVUeqZ-J92wjEgpJ6i4nmY19WsyGl-CjTpJy-THcf7SDuvoNi-cO6EgNyzncg7j_wWyx-65J_BwE5YNbY3saAvDRM4hqehNb8QBqGetN9k_YWgWYjdSODuhh8YYrVjY7lh_LDr024RVT-UyaFKs5u7wpJgRbGn8A&h=pyowaUZDWze799kua4h9gPGhe4uQHSnWrxYsHeUxAOo response: body: string: '' @@ -3090,20 +2033,25 @@ interactions: cache-control: - no-cache date: - - Tue, 23 May 2023 11:55:59 GMT + - Sun, 29 Sep 2024 06:51:28 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894888231355&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=tetLVLEqnSczPDYDeLgcOLLyF1CseFiRjtWbl0fCrcYnU4yIxDQFQqqcWX9M7bW1YA7-5dk2mAtnekac1_B0-vJANOVmiMdJi73-iIyjJZXnkA4iiw3gunknDNUL3Tnmofn3qqPPi23QzSHf76chovpT9CY4i3DAxBKCsPAVzGXsMqNDGgHYcz9WWRyHE6_-XQ2NCZ6Br94ivMvx01MaWZyd0uLn6x11A0bYduIp2K5DNtmVK-Ir2bvwCOjcTsY5yotqYszbkm4K_Itdd2hEmdFXiAhEnVdqU1M48FfBQb4ablyfycVhE4RsrEa9h0zM3zu0_hWD574_h663-VZJxw&h=9SBuWZCDTBp-M8a7yeXQ39UpnSCxjonVan3h5q7OX3g pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006456 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G9|2024-09-29T06:51:28 + x-msedge-ref: + - 'Ref A: 4B485CC7E9244B028184716E7C67A6A8 Ref B: TYO201151006025 Ref C: 2024-09-29T06:51:27Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace_encryption.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace_encryption.yaml index bfa585f4ffd..32e95a77156 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace_encryption.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace_encryption.yaml @@ -1289,7 +1289,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1341,7 +1341,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1391,7 +1391,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1441,7 +1441,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1491,7 +1491,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1541,7 +1541,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1591,7 +1591,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1641,7 +1641,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1691,7 +1691,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1741,7 +1741,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1791,7 +1791,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1841,7 +1841,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1891,7 +1891,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1941,7 +1941,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -1991,7 +1991,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2041,7 +2041,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2214,7 +2214,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2265,7 +2265,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2327,7 +2327,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2380,7 +2380,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2431,7 +2431,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2497,7 +2497,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2551,7 +2551,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2603,7 +2603,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2655,7 +2655,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2707,7 +2707,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2759,7 +2759,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2811,7 +2811,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2863,7 +2863,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2915,7 +2915,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -2967,7 +2967,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3019,7 +3019,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3071,7 +3071,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3123,7 +3123,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3175,7 +3175,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3227,7 +3227,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3279,7 +3279,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3330,7 +3330,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3381,7 +3381,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3448,7 +3448,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3501,7 +3501,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3552,7 +3552,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3603,7 +3603,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3654,7 +3654,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3723,7 +3723,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3776,7 +3776,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3827,7 +3827,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3878,7 +3878,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3929,7 +3929,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -3994,7 +3994,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -4047,7 +4047,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -4098,7 +4098,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -4149,7 +4149,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -4200,7 +4200,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -4269,7 +4269,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -4322,7 +4322,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -4373,7 +4373,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North @@ -4426,7 +4426,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '' @@ -4651,7 +4651,7 @@ interactions: User-Agent: - AZURECLI/2.53.1 (AAZ) azsdk-python-core/1.26.0 Python/3.10.11 (Windows-10-10.0.22621-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: string: '' @@ -4858,4 +4858,4 @@ interactions: status: code: 204 message: No Content -version: 1 +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace_msi.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace_msi.yaml index 93e18beffef..46fdf318c12 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace_msi.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace_msi.yaml @@ -13,32 +13,33 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001","name":"cli_test_eh_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T12:51:10Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001","name":"cli_test_eh_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace_msi","date":"2024-09-29T05:00:09Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '385' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:51:10 GMT + - Sun, 29 Sep 2024 05:00:12 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 912A5EFA22204A49BBD0E479339EE206 Ref B: OSA221030116019 Ref C: 2024-09-29T05:00:12Z' status: code: 200 message: OK @@ -60,13 +61,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008?api-version=2023-01-31 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008","name":"sb-identity1000008","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5","clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008","name":"sb-identity1000008","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9","clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9"}}' headers: cache-control: - no-cache @@ -75,7 +75,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:51:14 GMT + - Sun, 29 Sep 2024 05:00:17 GMT expires: - '-1' location: @@ -84,10 +84,14 @@ interactions: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 581F0A49CA474BCF8840109FB02E6B88 Ref B: OSA221030114033 Ref C: 2024-09-29T05:00:12Z' status: code: 201 message: Created @@ -105,32 +109,33 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001","name":"cli_test_eh_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T12:51:10Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001","name":"cli_test_eh_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace_msi","date":"2024-09-29T05:00:09Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '385' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:51:14 GMT + - Sun, 29 Sep 2024 05:00:18 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BFC82808375A476CAB1A590E1BA58FEF Ref B: OSA221030114027 Ref C: 2024-09-29T05:00:18Z' status: code: 200 message: OK @@ -152,13 +157,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009?api-version=2023-01-31 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009","name":"sb-identity2000009","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f","clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009","name":"sb-identity2000009","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78","clientId":"c509d345-6a96-44a0-835c-e4259b1becb4"}}' headers: cache-control: - no-cache @@ -167,7 +171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:51:16 GMT + - Sun, 29 Sep 2024 05:00:21 GMT expires: - '-1' location: @@ -176,10 +180,14 @@ interactions: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: E1A0131E310A40FD81B46A25398F4A32 Ref B: OSA221030115037 Ref C: 2024-09-29T05:00:19Z' status: code: 201 message: Created @@ -197,32 +205,33 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001","name":"cli_test_eh_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T12:51:10Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001","name":"cli_test_eh_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace_msi","date":"2024-09-29T05:00:09Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '385' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:51:16 GMT + - Sun, 29 Sep 2024 05:00:22 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: C3DCF1859AA643D2BC11D5439C3C9A5E Ref B: OSA221030113051 Ref C: 2024-09-29T05:00:22Z' status: code: 200 message: OK @@ -244,13 +253,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010?api-version=2023-01-31 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010","name":"sb-identity3000010","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db","clientId":"a322c860-a853-4317-9d2a-077e22ed915f"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010","name":"sb-identity3000010","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9","clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b"}}' headers: cache-control: - no-cache @@ -259,7 +267,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:51:18 GMT + - Sun, 29 Sep 2024 05:00:25 GMT expires: - '-1' location: @@ -268,10 +276,14 @@ interactions: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 0B2F44B4F7ED42F79D3BFF6CE1065575 Ref B: OSA221030116047 Ref C: 2024-09-29T05:00:23Z' status: code: 201 message: Created @@ -289,32 +301,33 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001","name":"cli_test_eh_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T12:51:10Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001","name":"cli_test_eh_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace_msi","date":"2024-09-29T05:00:09Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '332' + - '385' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:51:18 GMT + - Sun, 29 Sep 2024 05:00:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: D7E4D72410C14AC5A05C32AEDF5B48D2 Ref B: TYO201100116045 Ref C: 2024-09-29T05:00:26Z' status: code: 200 message: OK @@ -329,665 +342,104 @@ interactions: - identity create Connection: - keep-alive - Content-Length: - - '22' - Content-Type: - - application/json - ParameterSetName: - - --name --resource-group - User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-msi/7.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity4000011?api-version=2023-01-31 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity4000011","name":"sb-identity4000011","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"27f2b56f-6c9a-4524-b05f-f27aee1eaaa4","clientId":"ede0dbff-649d-4904-af46-fce7ad2ee497"}}' - headers: - cache-control: - - no-cache - content-length: - - '465' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:51:22 GMT - expires: - - '-1' - location: - - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity4000011 - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010": - {}}}, "location": "northeurope", "sku": {"name": "Premium", "tier": "Premium"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - Content-Length: - - '680' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:51:24.837Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '803' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:51:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:51:24.837Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '1375' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:51:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:51:24.837Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' - headers: - cache-control: - - no-cache - content-length: - - '1375' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:52:25 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '1371' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:52:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '1371' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:53:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '1371' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:53:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '1371' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:54:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '1371' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:54:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '1371' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:55:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '1371' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 12:55:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive + Content-Length: + - '22' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --sku --mi-user-assigned + - --name --resource-group User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity4000011?api-version=2023-01-31 response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity4000011","name":"sb-identity4000011","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"2778361f-7426-4757-867c-fc816fde1512","clientId":"f4d97e69-6bf8-4e50-95b0-a2b58760ac7c"}}' headers: cache-control: - no-cache content-length: - - '1371' + - '465' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:56:27 GMT + - Sun, 29 Sep 2024 05:00:29 GMT expires: - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity4000011 pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 0F24535B15404056B25BFA31455E51BB Ref B: TYO201100115035 Ref C: 2024-09-29T05:00:27Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: - body: null + body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010": + {}}}, "location": "northeurope", "sku": {"name": "Premium", "tier": "Premium"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - servicebus namespace create Connection: - keep-alive + Content-Length: + - '680' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --location --sku --mi-user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:00:38.3808758Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1371' + - '1829' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:56:57 GMT + - Sun, 29 Sep 2024 05:00:38 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7a15fd1b-8ee0-4257-a7bd-5f1fba1be8a0 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G11|2024-09-29T05:00:38 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: 1C70702F35894761A4656FC73647967A Ref B: OSA221030115037 Ref C: 2024-09-29T05:00:31Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1002,40 +454,37 @@ interactions: ParameterSetName: - --resource-group --name --location --sku --mi-user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:00:38.3808758Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1371' + - '1829' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:57:27 GMT + - Sun, 29 Sep 2024 05:00:39 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c3835c8a-2901-4375-9319-059c28d6a126 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:00:39 + x-msedge-ref: + - 'Ref A: 1ECCF23EFDCF469C82953C70B0B68052 Ref B: OSA221030115037 Ref C: 2024-09-29T05:00:38Z' status: code: 200 message: OK @@ -1053,40 +502,37 @@ interactions: ParameterSetName: - --resource-group --name --location --sku --mi-user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:00:38.3808758Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1371' + - '1829' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:57:58 GMT + - Sun, 29 Sep 2024 05:01:10 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 43857217-7ad4-474f-88ef-5df1c5941778 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G6|2024-09-29T05:01:11 + x-msedge-ref: + - 'Ref A: 9B52D8781FB94E5FB3AB269E78F1561D Ref B: OSA221030115037 Ref C: 2024-09-29T05:01:10Z' status: code: 200 message: OK @@ -1104,40 +550,37 @@ interactions: ParameterSetName: - --resource-group --name --location --sku --mi-user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:52:38.957Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:00:38.3808758Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1371' + - '1829' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:58:28 GMT + - Sun, 29 Sep 2024 05:01:41 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ff39e923-c93c-402e-8087-ef4c63902bbe + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G14|2024-09-29T05:01:42 + x-msedge-ref: + - 'Ref A: 64B52A288806405CA6041362700C4006 Ref B: OSA221030115037 Ref C: 2024-09-29T05:01:41Z' status: code: 200 message: OK @@ -1155,40 +598,37 @@ interactions: ParameterSetName: - --resource-group --name --location --sku --mi-user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:58:42.813Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:01:44.2598121Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1668' + - '1826' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:58:57 GMT + - Sun, 29 Sep 2024 05:02:12 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c31be4ad-33e0-40bf-b74f-2edf2bb846d0 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G6|2024-09-29T05:02:13 + x-msedge-ref: + - 'Ref A: 71B24D1D06214FC0AEE37734BE59C25B Ref B: OSA221030115037 Ref C: 2024-09-29T05:02:12Z' status: code: 200 message: OK @@ -1206,40 +646,37 @@ interactions: ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:58:42.813Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:01:44.2598121Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1668' + - '1826' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:58:59 GMT + - Sun, 29 Sep 2024 05:02:15 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 173da88f-b80b-43d2-903a-25d2b658d9f2 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:02:15 + x-msedge-ref: + - 'Ref A: 5D1A06AEBD3F4156B4E1C7AA2C97C7BB Ref B: OSA221030113029 Ref C: 2024-09-29T05:02:14Z' status: code: 200 message: OK @@ -1257,47 +694,45 @@ interactions: ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:58:42.813Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:01:44.2598121Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1668' + - '1826' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:58:59 GMT + - Sun, 29 Sep 2024 05:02:17 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 27d0008d-d0e4-4e84-86a3-6fc1fa606151 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:02:17 + x-msedge-ref: + - 'Ref A: 57E31B64584C483F831725F07E618D9E Ref B: OSA221030114019 Ref C: 2024-09-29T05:02:16Z' status: code: 200 message: OK - request: body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010": - {}}}, "location": "North Europe", "properties": {"disableLocalAuth": false, - "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + {}}}, "location": "northeurope", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' headers: @@ -1310,48 +745,45 @@ interactions: Connection: - keep-alive Content-Length: - - '510' + - '645' Content-Type: - application/json ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:59:07.397Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:02:23.9382301Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1671' + - '1287' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:59:08 GMT + - Sun, 29 Sep 2024 05:02:23 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 18cea07d-ede1-42fc-9279-08d97bc290b6 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:02:24 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: EFE21E6DE0E04115B219BF3821995CF7 Ref B: OSA221030114019 Ref C: 2024-09-29T05:02:18Z' status: code: 200 message: OK @@ -1369,40 +801,37 @@ interactions: ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:59:10.457Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:02:23.9382301Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1108' + - '1287' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:59:38 GMT + - Sun, 29 Sep 2024 05:02:23 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b75b6467-f47a-4801-bba2-42deea689b95 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:02:24 + x-msedge-ref: + - 'Ref A: F894A418D61C41309A58DAAB8B762A59 Ref B: OSA221030114019 Ref C: 2024-09-29T05:02:24Z' status: code: 200 message: OK @@ -1410,50 +839,47 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:59:10.457Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:02:49.5169281Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1108' + - '1266' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:59:38 GMT + - Sun, 29 Sep 2024 05:02:55 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 1db0f51c-54b1-4ea4-b8cc-c1a78082dcd0 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G4|2024-09-29T05:02:56 + x-msedge-ref: + - 'Ref A: B339D9EECAC145C8843230EDFD23A4C5 Ref B: OSA221030114019 Ref C: 2024-09-29T05:02:54Z' status: code: 200 message: OK @@ -1471,47 +897,42 @@ interactions: ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:59:10.457Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:02:49.5169281Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1108' + - '1266' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:59:39 GMT + - Sun, 29 Sep 2024 05:02:57 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ba7a0c92-89a2-4283-aa85-7f6d77d8884d + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G13|2024-09-29T05:02:57 + x-msedge-ref: + - 'Ref A: DCE9BC581BBE41EAA098A5517CCFEA24 Ref B: TYO201151006036 Ref C: 2024-09-29T05:02:56Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": - {}}}, "location": "North Europe", "properties": {"disableLocalAuth": false, - "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": - "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", - "tier": "Premium"}, "tags": {}}' + body: null headers: Accept: - application/json @@ -1521,92 +942,101 @@ interactions: - servicebus namespace identity assign Connection: - keep-alive - Content-Length: - - '870' - Content-Type: - - application/json ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:59:47.047Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:02:49.5169281Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1111' + - '1266' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 12:59:47 GMT + - Sun, 29 Sep 2024 05:02:58 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + x-ms-messaging-activity-id: + - 5fc5ee6c-c481-4ad1-b9bb-3373bceb61a9 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G14|2024-09-29T05:02:59 + x-msedge-ref: + - 'Ref A: 00E51B6D2EFD4CD18DE2FBA2A24BE439 Ref B: TYO201151006042 Ref C: 2024-09-29T05:02:58Z' status: code: 200 message: OK - request: - body: null + body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": + {}}}, "location": "northeurope", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", + "tier": "Premium"}, "tags": {}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - servicebus namespace identity assign Connection: - keep-alive + Content-Length: + - '1005' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:59:49.433Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:03:03.5170563Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1473' + - '1847' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:00:17 GMT + - Sun, 29 Sep 2024 05:03:03 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a584b1a9-b08f-4d9d-ad54-8d3401c5b5e9 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G13|2024-09-29T05:03:03 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: 6E7F93420BA943068DEB93800FED2A71 Ref B: TYO201151006042 Ref C: 2024-09-29T05:02:59Z' status: code: 200 message: OK @@ -1624,36 +1054,37 @@ interactions: ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T12:59:49.433Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:03:03.5170563Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1473' + - '1847' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:00:48 GMT + - Sun, 29 Sep 2024 05:03:04 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a61da0d8-ed29-4bb6-ac7c-a99f735f6aa7 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:03:05 + x-msedge-ref: + - 'Ref A: 4D3D232E455C4D38AA9612227DAF0AD0 Ref B: TYO201151006042 Ref C: 2024-09-29T05:03:03Z' status: code: 200 message: OK @@ -1671,36 +1102,37 @@ interactions: ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:00:50.53Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:03:33.3952951Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1667' + - '1826' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:01:18 GMT + - Sun, 29 Sep 2024 05:03:35 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a07f6dd8-d907-4fc2-86be-517cb77b7657 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:03:36 + x-msedge-ref: + - 'Ref A: 1385C733E35B494687427AA3515F7B90 Ref B: TYO201151006042 Ref C: 2024-09-29T05:03:35Z' status: code: 200 message: OK @@ -1718,40 +1150,37 @@ interactions: ParameterSetName: - --resource-group --name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:00:50.53Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:03:33.3952951Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1667' + - '1826' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:01:18 GMT + - Sun, 29 Sep 2024 05:03:38 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d1aa9894-4c37-4c6d-9476-e69e077a5e63 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G0|2024-09-29T05:03:38 + x-msedge-ref: + - 'Ref A: FC00CCE8E9E44728BCE5C8D9FD1675E2 Ref B: TYO201100117049 Ref C: 2024-09-29T05:03:37Z' status: code: 200 message: OK @@ -1769,50 +1198,48 @@ interactions: ParameterSetName: - --resource-group --name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:00:50.53Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:03:33.3952951Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1667' + - '1826' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:01:18 GMT + - Sun, 29 Sep 2024 05:03:38 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f8d50eb8-df30-4b07-ba8d-a801d49d7a51 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:03:38 + x-msedge-ref: + - 'Ref A: B298A5B88D7D4D16BB179C6A52CE0F16 Ref B: TYO201100113033 Ref C: 2024-09-29T05:03:38Z' status: code: 200 message: OK - request: body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": - {}}}, "location": "North Europe", "properties": {"disableLocalAuth": false, - "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": + {}}}, "location": "northeurope", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' headers: @@ -1825,49 +1252,46 @@ interactions: Connection: - keep-alive Content-Length: - - '886' + - '1021' Content-Type: - application/json ParameterSetName: - --resource-group --name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ba9e3250-5bea-4a0c-9c56-9b89eefb5fe4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:01:28.88Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:03:44.0204031Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1799' + - '1966' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:01:29 GMT + - Sun, 29 Sep 2024 05:03:43 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5499df1e-9279-4ce3-88df-ed02c8367494 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:03:44 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: C082BECF4DFE4290BFEE2C9FB8969702 Ref B: TYO201100113033 Ref C: 2024-09-29T05:03:38Z' status: code: 200 message: OK @@ -1885,41 +1309,38 @@ interactions: ParameterSetName: - --resource-group --name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ba9e3250-5bea-4a0c-9c56-9b89eefb5fe4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:01:28.88Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:03:44.0204031Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1799' + - '1966' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:02:00 GMT + - Sun, 29 Sep 2024 05:03:45 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 42afb6e8-a7e6-4c2f-9914-530c999031e5 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:03:45 + x-msedge-ref: + - 'Ref A: B303294BF3DF4A1781FAE865290F5245 Ref B: TYO201100113033 Ref C: 2024-09-29T05:03:44Z' status: code: 200 message: OK @@ -1937,41 +1358,38 @@ interactions: ParameterSetName: - --resource-group --name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ba9e3250-5bea-4a0c-9c56-9b89eefb5fe4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:02:00.343Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:03:44.0204031Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1796' + - '1966' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:02:30 GMT + - Sun, 29 Sep 2024 05:04:16 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a28d0b09-cd14-477c-9ab5-15b781fbd8b6 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G14|2024-09-29T05:04:16 + x-msedge-ref: + - 'Ref A: A366C3C6915A4CEAAA5198197DAB1BBC Ref B: TYO201100113033 Ref C: 2024-09-29T05:04:15Z' status: code: 200 message: OK @@ -1989,41 +1407,38 @@ interactions: ParameterSetName: - --resource-group --name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ba9e3250-5bea-4a0c-9c56-9b89eefb5fe4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:02:37.69Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:04:29.1492265Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1786' + - '1945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:03:01 GMT + - Sun, 29 Sep 2024 05:04:47 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - afee6f59-79d8-4768-b0f8-4af3cbc88e60 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G12|2024-09-29T05:04:47 + x-msedge-ref: + - 'Ref A: 54ED09513C644CF8B18C960FC7370346 Ref B: TYO201100113033 Ref C: 2024-09-29T05:04:46Z' status: code: 200 message: OK @@ -2041,41 +1456,38 @@ interactions: ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ba9e3250-5bea-4a0c-9c56-9b89eefb5fe4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:02:37.69Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:04:29.1492265Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1786' + - '1945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:03:01 GMT + - Sun, 29 Sep 2024 05:04:50 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - fc59b615-43fc-465d-b9b6-bbdcb4c0b0d2 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:04:50 + x-msedge-ref: + - 'Ref A: CDF3C6D8101D450D8010EFF73A77D3DF Ref B: OSA221030114027 Ref C: 2024-09-29T05:04:48Z' status: code: 200 message: OK @@ -2093,49 +1505,48 @@ interactions: ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ba9e3250-5bea-4a0c-9c56-9b89eefb5fe4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:02:37.69Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:04:29.1492265Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1786' + - '1945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:03:01 GMT + - Sun, 29 Sep 2024 05:04:51 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 59741d7d-c859-4efc-a148-76ad619165a1 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:04:51 + x-msedge-ref: + - 'Ref A: 2BD4E58DDB204824A6A5277870688C43 Ref B: OSA221030116051 Ref C: 2024-09-29T05:04:50Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned"}, "location": "North Europe", "properties": - {"disableLocalAuth": false, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": - 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": - 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' + body: '{"identity": {"type": "SystemAssigned"}, "location": "northeurope", "properties": + {"disableLocalAuth": false, "geoDataReplication": {"locations": [{"locationName": + "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", + "tier": "Premium"}, "tags": {}}' headers: Accept: - application/json @@ -2146,48 +1557,45 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '439' Content-Type: - application/json ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ba9e3250-5bea-4a0c-9c56-9b89eefb5fe4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:03:10.013Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:04:55.790024Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '909' + - '1084' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:03:10 GMT + - Sun, 29 Sep 2024 05:04:55 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2d6e996b-81b4-47fc-b2a5-0ebac4779c28 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G8|2024-09-29T05:04:55 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' + x-msedge-ref: + - 'Ref A: 46161F7967074F72979B8C78893B6763 Ref B: OSA221030116051 Ref C: 2024-09-29T05:04:51Z' status: code: 200 message: OK @@ -2205,98 +1613,37 @@ interactions: ParameterSetName: - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview - response: - body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ba9e3250-5bea-4a0c-9c56-9b89eefb5fe4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000003","createdAt":"2023-03-13T12:51:24.837Z","updatedAt":"2023-03-13T13:03:12.02Z","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","status":"Active"}}' - headers: - cache-control: - - no-cache - content-length: - - '905' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Mar 2023 13:03:40 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"identity": {"type": "SystemAssigned"}, "location": "northeurope", "sku": - {"name": "Premium", "tier": "Premium"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - servicebus namespace create - Connection: - - keep-alive - Content-Length: - - '114' - Content-Type: - - application/json - ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned - User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:03:47.687Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:04:55.790024Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '919' + - '1084' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:03:48 GMT + - Sun, 29 Sep 2024 05:04:56 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1196' + x-ms-messaging-activity-id: + - ded25a4c-e77c-4995-b155-eac28c6fb744 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:04:57 + x-msedge-ref: + - 'Ref A: 78B4FC8EF7C5447CBD4CC3D841B5C877 Ref B: OSA221030116051 Ref C: 2024-09-29T05:04:56Z' status: code: 200 message: OK @@ -2308,46 +1655,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:03:47.687Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:04:55.790024Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '919' + - '1084' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:04:18 GMT + - Sun, 29 Sep 2024 05:05:28 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c567aac6-8094-4066-8280-939ff83e5a14 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:05:28 + x-msedge-ref: + - 'Ref A: 6E7CFE319F45420DBC637B11D32F66C3 Ref B: OSA221030116051 Ref C: 2024-09-29T05:05:27Z' status: code: 200 message: OK @@ -2359,100 +1703,101 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:03:47.687Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003","name":"servicebus-nscli000003","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000003","serviceBusEndpoint":"https://servicebus-nscli000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:00:38.3808758Z","updatedAt":"2024-09-29T05:05:42.3062512Z"},"identity":{"principalId":"9b5db33a-f732-4f78-a637-ba5113c6fb06","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '919' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:04:47 GMT + - Sun, 29 Sep 2024 05:05:59 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 8cd72e37-0e5a-4177-bad0-18308373c872 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G14|2024-09-29T05:05:59 + x-msedge-ref: + - 'Ref A: 55A228CF134046BB8CB8BB28A34DD966 Ref B: OSA221030116051 Ref C: 2024-09-29T05:05:58Z' status: code: 200 message: OK - request: - body: null + body: '{"identity": {"type": "SystemAssigned"}, "location": "northeurope", "sku": + {"name": "Premium", "tier": "Premium"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - servicebus namespace create Connection: - keep-alive + Content-Length: + - '114' + Content-Type: + - application/json ParameterSetName: - --resource-group --name --location --sku --mi-system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:06:07.6660129Z"},"identity":{"principalId":"1ac5425f-3e37-47cd-bf05-7e538e44f2f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '1067' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:05:17 GMT + - Sun, 29 Sep 2024 05:06:07 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7df9073a-b4eb-4a2f-8669-adf55becd9b4 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G9|2024-09-29T05:06:07 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 74BEED7DC5AC4B46B07791886E77E95E Ref B: OSA221030115035 Ref C: 2024-09-29T05:06:00Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2467,40 +1812,37 @@ interactions: ParameterSetName: - --resource-group --name --location --sku --mi-system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:06:07.6660129Z"},"identity":{"principalId":"1ac5425f-3e37-47cd-bf05-7e538e44f2f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '1067' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:05:49 GMT + - Sun, 29 Sep 2024 05:06:09 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 873ab4bd-e9f4-4da0-a7db-f38ade05efd6 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:06:10 + x-msedge-ref: + - 'Ref A: A2AF6FE72A5F4A74B2003ECB01B64523 Ref B: OSA221030115035 Ref C: 2024-09-29T05:06:08Z' status: code: 200 message: OK @@ -2518,40 +1860,37 @@ interactions: ParameterSetName: - --resource-group --name --location --sku --mi-system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:06:07.6660129Z"},"identity":{"principalId":"1ac5425f-3e37-47cd-bf05-7e538e44f2f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '1067' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:06:19 GMT + - Sun, 29 Sep 2024 05:06:41 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 39c74c25-1dd1-4a86-a0f3-fbeaf1d5dabc + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G4|2024-09-29T05:06:41 + x-msedge-ref: + - 'Ref A: ABD5CC2FF6CD40D08BC6EB834C469CCC Ref B: OSA221030115035 Ref C: 2024-09-29T05:06:40Z' status: code: 200 message: OK @@ -2569,40 +1908,37 @@ interactions: ParameterSetName: - --resource-group --name --location --sku --mi-system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:06:07.6660129Z"},"identity":{"principalId":"1ac5425f-3e37-47cd-bf05-7e538e44f2f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '1067' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:06:48 GMT + - Sun, 29 Sep 2024 05:07:12 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7da2c73a-b87d-46e1-a46e-c20d67233ebf + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:07:12 + x-msedge-ref: + - 'Ref A: E76B03DAFE8B4997A34C48E5F44EBEF3 Ref B: OSA221030115035 Ref C: 2024-09-29T05:07:11Z' status: code: 200 message: OK @@ -2620,40 +1956,37 @@ interactions: ParameterSetName: - --resource-group --name --location --sku --mi-system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:07:33.5286764Z"},"identity":{"principalId":"1ac5425f-3e37-47cd-bf05-7e538e44f2f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:07:19 GMT + - Sun, 29 Sep 2024 05:07:43 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4ce109d7-5fb2-4912-b7b0-7b8c3eaf25bb + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G2|2024-09-29T05:07:44 + x-msedge-ref: + - 'Ref A: 5CEFDA9B4B1241FF8EF0F03B14C031DB Ref B: OSA221030115035 Ref C: 2024-09-29T05:07:42Z' status: code: 200 message: OK @@ -2661,50 +1994,47 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:07:33.5286764Z"},"identity":{"principalId":"1ac5425f-3e37-47cd-bf05-7e538e44f2f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:07:50 GMT + - Sun, 29 Sep 2024 05:07:46 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d899c959-3647-4e26-a625-1996038fba99 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:07:46 + x-msedge-ref: + - 'Ref A: 2C0D76EC9FEC422B82DA2AFA7CEF8E9F Ref B: TYO201100114021 Ref C: 2024-09-29T05:07:45Z' status: code: 200 message: OK @@ -2712,101 +2042,106 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:07:33.5286764Z"},"identity":{"principalId":"1ac5425f-3e37-47cd-bf05-7e538e44f2f6","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:08:19 GMT + - Sun, 29 Sep 2024 05:07:47 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4327276c-af52-4235-b93e-d0454c376474 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G2|2024-09-29T05:07:47 + x-msedge-ref: + - 'Ref A: FB015C2404D744CD82C5F1D6A45C0D1C Ref B: TYO201151005029 Ref C: 2024-09-29T05:07:46Z' status: code: 200 message: OK - request: - body: null + body: '{"identity": {"type": "None"}, "location": "northeurope", "properties": + {"disableLocalAuth": false, "geoDataReplication": {"locations": [{"locationName": + "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", + "tier": "Premium"}, "tags": {}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity remove Connection: - keep-alive + Content-Length: + - '429' + Content-Type: + - application/json ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:07:51.6382659Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:08:49 GMT + - Sun, 29 Sep 2024 05:07:51 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 95a43397-8651-4483-902e-aa567e8d803c + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G13|2024-09-29T05:07:51 + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + x-msedge-ref: + - 'Ref A: DA7C200441164C8DB108A1480FD8AE0A Ref B: TYO201151005029 Ref C: 2024-09-29T05:07:47Z' status: code: 200 message: OK @@ -2818,46 +2153,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:07:51.6382659Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:09:19 GMT + - Sun, 29 Sep 2024 05:07:52 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f5a37c54-a332-492d-a03b-3fd25917b0bf + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G13|2024-09-29T05:07:53 + x-msedge-ref: + - 'Ref A: 74150E649949413EABB51F0BB239CDBE Ref B: TYO201151005029 Ref C: 2024-09-29T05:07:52Z' status: code: 200 message: OK @@ -2869,46 +2201,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:07:51.6382659Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:09:49 GMT + - Sun, 29 Sep 2024 05:08:24 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a994066c-d6df-430d-93f2-5e707b658603 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G11|2024-09-29T05:08:24 + x-msedge-ref: + - 'Ref A: 9507BEDF95BA4F1586A0EA52D1FA52A4 Ref B: TYO201151005029 Ref C: 2024-09-29T05:08:23Z' status: code: 200 message: OK @@ -2920,46 +2249,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:08:39.0001497Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '924' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:10:20 GMT + - Sun, 29 Sep 2024 05:08:55 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b515213c-c128-47ef-a1f9-9eda0faa863a + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G9|2024-09-29T05:08:55 + x-msedge-ref: + - 'Ref A: 7B26D690D8A74EA29508E01042013F60 Ref B: TYO201151005029 Ref C: 2024-09-29T05:08:54Z' status: code: 200 message: OK @@ -2967,50 +2293,47 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:05:05.317Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:08:39.0001497Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '924' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:10:51 GMT + - Sun, 29 Sep 2024 05:08:56 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 744cbe9d-b77f-4803-9e1c-71632c7655c3 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:08:57 + x-msedge-ref: + - 'Ref A: 85C50D38B96342FD842338DD5F988E63 Ref B: TYO201100116037 Ref C: 2024-09-29T05:08:56Z' status: code: 200 message: OK @@ -3018,97 +2341,106 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:11:16.02Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:08:39.0001497Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '905' + - '924' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:11:21 GMT + - Sun, 29 Sep 2024 05:08:57 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4032e612-7674-4468-b969-3148445466c0 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:08:58 + x-msedge-ref: + - 'Ref A: 5A9FEB41CD334B18A00B583AB2463513 Ref B: OSA221030115049 Ref C: 2024-09-29T05:08:57Z' status: code: 200 message: OK - request: - body: null + body: '{"identity": {"type": "SystemAssigned"}, "location": "northeurope", "properties": + {"disableLocalAuth": false, "geoDataReplication": {"locations": [{"locationName": + "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", + "tier": "Premium"}, "tags": {}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive + Content-Length: + - '439' + Content-Type: + - application/json ParameterSetName: - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:11:16.02Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:09:03.5161649Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '905' + - '1085' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:11:21 GMT + - Sun, 29 Sep 2024 05:09:03 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 6afbd95a-8c55-43c6-a0d2-9967435f36c9 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:09:03 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 7DEFE59912454F46933871415F2B265A Ref B: OSA221030115049 Ref C: 2024-09-29T05:08:58Z' status: code: 200 message: OK @@ -3116,110 +2448,95 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"88cc828e-a452-423e-a2ac-0c34c7b55ef5","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:11:16.02Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:09:03.5161649Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '905' + - '1085' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:11:21 GMT + - Sun, 29 Sep 2024 05:09:04 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 1698e93a-2cf2-4f64-b851-e2052b27c51f + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:09:05 + x-msedge-ref: + - 'Ref A: 861C5623FD3B40F4889F41FB1AB2E477 Ref B: OSA221030115049 Ref C: 2024-09-29T05:09:03Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "North Europe", "properties": - {"disableLocalAuth": false, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": - 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": - 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive - Content-Length: - - '294' - Content-Type: - - application/json ParameterSetName: - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:11:29.76Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:09:03.5161649Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '768' + - '1085' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:11:30 GMT + - Sun, 29 Sep 2024 05:09:35 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1195' + x-ms-messaging-activity-id: + - d8cac2d9-8222-4e4d-9606-49b86b20966e + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G6|2024-09-29T05:09:36 + x-msedge-ref: + - 'Ref A: 74B5CF8655F74ACA8F98E4E70E1206B7 Ref B: OSA221030115049 Ref C: 2024-09-29T05:09:35Z' status: code: 200 message: OK @@ -3231,46 +2548,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:11:33.737Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:09:50.6885326Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '766' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:12:00 GMT + - Sun, 29 Sep 2024 05:10:07 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b44a31a5-4981-427c-8818-d06c2a4ab3b3 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G14|2024-09-29T05:10:07 + x-msedge-ref: + - 'Ref A: E97D9F0CCE7D431BB8ABF9043E2E1D0D Ref B: OSA221030115049 Ref C: 2024-09-29T05:10:06Z' status: code: 200 message: OK @@ -3286,42 +2600,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:11:33.737Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:09:50.6885326Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '766' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:12:00 GMT + - Sun, 29 Sep 2024 05:10:08 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - dc2d34bf-28e7-475d-b42c-54fd989871fe + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:10:09 + x-msedge-ref: + - 'Ref A: 54561C2B477A49CFB7338856E3B64BE1 Ref B: OSA221030114031 Ref C: 2024-09-29T05:10:08Z' status: code: 200 message: OK @@ -3337,50 +2648,51 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:11:33.737Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:09:50.6885326Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '766' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:12:01 GMT + - Sun, 29 Sep 2024 05:10:10 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c152b629-a579-4547-aa05-3a01c1e8329a + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:10:11 + x-msedge-ref: + - 'Ref A: 0687A36BCE3346F59F97AF92DFC291B5 Ref B: OSA221030114017 Ref C: 2024-09-29T05:10:09Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned"}, "location": "North Europe", "properties": - {"disableLocalAuth": false, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": - 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": - 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' + body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": + {}}}, "location": "northeurope", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", + "tier": "Premium"}, "tags": {}}' headers: Accept: - application/json @@ -3391,48 +2703,46 @@ interactions: Connection: - keep-alive Content-Length: - - '304' + - '841' Content-Type: - application/json ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:12:10.093Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:10:16.6965704Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '919' + - '1686' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:12:10 GMT + - Sun, 29 Sep 2024 05:10:16 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d3e3fbfd-5ed9-4079-b9b4-ffcedf432b21 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:10:16 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 23CF1F3A5B424D6C83E25121A0C6B241 Ref B: OSA221030114017 Ref C: 2024-09-29T05:10:11Z' status: code: 200 message: OK @@ -3448,42 +2758,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:12:11.667Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:10:16.6965704Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '1686' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:12:40 GMT + - Sun, 29 Sep 2024 05:10:16 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - abf708d3-7495-4073-988e-226744131d93 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:10:17 + x-msedge-ref: + - 'Ref A: 7ECE44E9A02C46079E6B5F04B13FC524 Ref B: OSA221030114017 Ref C: 2024-09-29T05:10:17Z' status: code: 200 message: OK @@ -3499,42 +2807,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:12:11.667Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:10:16.6965704Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '915' + - '1686' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:13:12 GMT + - Sun, 29 Sep 2024 05:10:49 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 59380766-444d-4115-a014-9cf3aa71a703 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G6|2024-09-29T05:10:49 + x-msedge-ref: + - 'Ref A: 3AEDD7F8C8864F86A7A3FC195D844D9B Ref B: OSA221030114017 Ref C: 2024-09-29T05:10:47Z' status: code: 200 message: OK @@ -3550,42 +2856,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:13:24.867Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:11:00.8868287Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '906' + - '1665' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:13:48 GMT + - Sun, 29 Sep 2024 05:11:20 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5f12a190-d4d8-4f10-9d00-6396ea85f4d9 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:11:20 + x-msedge-ref: + - 'Ref A: 908E138103964F84AEB71960C146F390 Ref B: OSA221030114017 Ref C: 2024-09-29T05:11:19Z' status: code: 200 message: OK @@ -3597,46 +2901,44 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:13:24.867Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:11:00.8868287Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '906' + - '1665' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:13:48 GMT + - Sun, 29 Sep 2024 05:11:21 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 10ba3fcf-9483-4429-88a1-e1eba9e2cfe2 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:11:22 + x-msedge-ref: + - 'Ref A: 0A2C85651B144F9EABF36D0CD7EF633F Ref B: OSA221030115011 Ref C: 2024-09-29T05:11:21Z' status: code: 200 message: OK @@ -3648,55 +2950,52 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:13:24.867Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:11:00.8868287Z"},"identity":{"principalId":"34fb36db-1e63-459d-8394-4dd2b08cbf61","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '906' + - '1665' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:13:49 GMT + - Sun, 29 Sep 2024 05:11:22 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a3039b83-cd61-4cee-b530-afc1b13593d7 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:11:22 + x-msedge-ref: + - 'Ref A: F3415CFC0DC34AEBBA708225D75046D4 Ref B: OSA221030115011 Ref C: 2024-09-29T05:11:22Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": - {}}}, "location": "North Europe", "properties": {"disableLocalAuth": false, - "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + body: '{"identity": {"type": "None"}, "location": "northeurope", "properties": + {"disableLocalAuth": false, "geoDataReplication": {"locations": [{"locationName": + "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' headers: @@ -3705,53 +3004,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive Content-Length: - - '706' + - '429' Content-Type: - application/json ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:13:57.45Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:11:26.5338821Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '922' + - '945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:13:58 GMT + - Sun, 29 Sep 2024 05:11:26 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ee558673-7853-48db-beff-4322ecef1cb4 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:11:26 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + x-msedge-ref: + - 'Ref A: A2E78190D3EF4528A40D8B7251F99429 Ref B: OSA221030115011 Ref C: 2024-09-29T05:11:23Z' status: code: 200 message: OK @@ -3763,47 +3058,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:14:01.22Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:11:26.5338821Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1311' + - '945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:14:28 GMT + - Sun, 29 Sep 2024 05:11:26 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ca92299b-8f63-4a2e-8d5c-47fb10907412 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:11:27 + x-msedge-ref: + - 'Ref A: 097E3D2133124CC8ABECB4A753B9BBE0 Ref B: OSA221030115011 Ref C: 2024-09-29T05:11:26Z' status: code: 200 message: OK @@ -3815,47 +3106,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:14:01.22Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:11:26.5338821Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1311' + - '945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:14:58 GMT + - Sun, 29 Sep 2024 05:11:57 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 0f35016b-9ec9-42f9-9670-a6f1301b06cd + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:11:58 + x-msedge-ref: + - 'Ref A: B77E7339FE5B490D848DC0357143F684 Ref B: OSA221030115011 Ref C: 2024-09-29T05:11:57Z' status: code: 200 message: OK @@ -3867,47 +3154,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:15:08.61Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:12:08.777346Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1506' + - '923' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:15:28 GMT + - Sun, 29 Sep 2024 05:12:28 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9fcffcd1-f830-4b29-b083-0379d24b675c + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:12:29 + x-msedge-ref: + - 'Ref A: 67EDC0EDD7E24732A3BCB9DD2DE066CE Ref B: OSA221030115011 Ref C: 2024-09-29T05:12:28Z' status: code: 200 message: OK @@ -3919,47 +3202,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned --user-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:15:08.61Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:12:08.777346Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1506' + - '923' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:15:29 GMT + - Sun, 29 Sep 2024 05:12:30 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9e7ae198-7b1a-42be-b27c-afd85664fe9c + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G4|2024-09-29T05:12:31 + x-msedge-ref: + - 'Ref A: DB1349FDA88841478ED7D966A8923AE7 Ref B: TYO201100115039 Ref C: 2024-09-29T05:12:30Z' status: code: 200 message: OK @@ -3971,107 +3250,104 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned --user-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"ceb3c9a2-2023-49f5-a709-d5e00d99d4c4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:15:08.61Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:12:08.777346Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1506' + - '923' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:15:29 GMT + - Sun, 29 Sep 2024 05:12:32 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f2f2b785-e274-458a-8096-1494c9d3322b + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G0|2024-09-29T05:12:32 + x-msedge-ref: + - 'Ref A: 2A48914EC11E4811A2AB129C26C5A3C9 Ref B: TYO201151004042 Ref C: 2024-09-29T05:12:31Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "North Europe", "properties": - {"disableLocalAuth": false, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": - 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": - 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' + body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010": + {}}}, "location": "northeurope", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", + "tier": "Premium"}, "tags": {}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive Content-Length: - - '294' + - '1005' Content-Type: - application/json ParameterSetName: - - --resource-group --namespace-name --system-assigned --user-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:15:40.173Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:12:36.8487982Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '769' + - '1847' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:15:40 GMT + - Sun, 29 Sep 2024 05:12:37 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9b1d1430-fa26-4c32-8c50-45485efac7d6 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:12:36 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: F72755B3730F4846B30F207CBA5B46A3 Ref B: TYO201151004042 Ref C: 2024-09-29T05:12:33Z' status: code: 200 message: OK @@ -4083,46 +3359,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned --user-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:15:40.173Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:12:36.8487982Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '769' + - '1847' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:16:10 GMT + - Sun, 29 Sep 2024 05:12:38 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a87ff54a-7040-4e42-bab9-d7c23240fbe6 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:12:38 + x-msedge-ref: + - 'Ref A: 9CCC62C43D2A4611AB0DB946F234DD81 Ref B: TYO201151004042 Ref C: 2024-09-29T05:12:37Z' status: code: 200 message: OK @@ -4134,46 +3407,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned --user-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:16:33.603Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:13:05.6777759Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '766' + - '1826' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:16:41 GMT + - Sun, 29 Sep 2024 05:13:08 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 29a61ab0-ef42-4b7d-97ec-f66b6b5d7add + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:13:08 + x-msedge-ref: + - 'Ref A: B45A075DC1684799888BDDFFE362F360 Ref B: TYO201151004042 Ref C: 2024-09-29T05:13:08Z' status: code: 200 message: OK @@ -4189,42 +3459,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:16:33.603Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:13:05.6777759Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '766' + - '1826' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:16:41 GMT + - Sun, 29 Sep 2024 05:13:09 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5318dc48-491c-4136-8274-4e7022ebf743 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G9|2024-09-29T05:13:10 + x-msedge-ref: + - 'Ref A: 1553ABFD993A4DA39C999181BE93687F Ref B: TYO201100117011 Ref C: 2024-09-29T05:13:09Z' status: code: 200 message: OK @@ -4240,51 +3507,50 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:16:33.603Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:13:05.6777759Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '766' + - '1826' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:16:42 GMT + - Sun, 29 Sep 2024 05:13:11 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9178f098-ab74-4d31-83c5-a3728c18ab84 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:13:12 + x-msedge-ref: + - 'Ref A: 4353A7A2CAF946388CD900388BCC537B Ref B: OSA221030113009 Ref C: 2024-09-29T05:13:11Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": + body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010": - {}}}, "location": "North Europe", "properties": {"disableLocalAuth": false, - "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + {}}}, "location": "northeurope", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' headers: @@ -4297,48 +3563,46 @@ interactions: Connection: - keep-alive Content-Length: - - '870' + - '1021' Content-Type: - application/json ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:16:50.72Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:13:19.3967315Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1374' + - '1966' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:16:51 GMT + - Sun, 29 Sep 2024 05:13:18 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b8baf4e0-4eb7-43ea-a062-d0f6c7468c5a + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:13:19 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 6C51B4CC6CBB40708176E26D25A941FF Ref B: OSA221030113009 Ref C: 2024-09-29T05:13:12Z' status: code: 200 message: OK @@ -4354,42 +3618,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:16:52.877Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:13:19.3967315Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1371' + - '1966' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:17:21 GMT + - Sun, 29 Sep 2024 05:13:19 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 044a8dcd-969f-495d-a642-740cd59d324a + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:13:20 + x-msedge-ref: + - 'Ref A: E32FE814E2934EADAFEB98A934FA99B8 Ref B: OSA221030113009 Ref C: 2024-09-29T05:13:19Z' status: code: 200 message: OK @@ -4405,42 +3667,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:16:52.877Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:13:19.3967315Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1371' + - '1966' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:17:51 GMT + - Sun, 29 Sep 2024 05:13:51 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 304ec99a-8705-49c7-8e50-626f94b78bec + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G11|2024-09-29T05:13:51 + x-msedge-ref: + - 'Ref A: 164037F5AA1842BDBBF3ADC241B052E8 Ref B: OSA221030113009 Ref C: 2024-09-29T05:13:50Z' status: code: 200 message: OK @@ -4456,42 +3716,40 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:18:00.293Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:14:04.8416279Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1668' + - '1945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:18:21 GMT + - Sun, 29 Sep 2024 05:14:24 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - e14d669a-d975-4361-99ad-aea8a46e18e2 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:14:24 + x-msedge-ref: + - 'Ref A: AE7E2A220CAC428989B48CCCF2CDCC6D Ref B: OSA221030113009 Ref C: 2024-09-29T05:14:23Z' status: code: 200 message: OK @@ -4503,42 +3761,44 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:18:00.293Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:14:04.8416279Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1668' + - '1945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:18:22 GMT + - Sun, 29 Sep 2024 05:14:26 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ddd26481-b994-4d36-abea-9e54076b63ac + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G11|2024-09-29T05:14:27 + x-msedge-ref: + - 'Ref A: 6DCDDFFCEABE45A79ADECE1E29D887F5 Ref B: OSA221030113031 Ref C: 2024-09-29T05:14:25Z' status: code: 200 message: OK @@ -4550,56 +3810,52 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:18:00.293Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:14:04.8416279Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"c509d345-6a96-44a0-835c-e4259b1becb4","principalId":"7d90dd4f-6e77-4c7e-b1a3-5e44b31d0f78"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"f011fa36-e402-439c-8469-9a5549d5aa3b","principalId":"6d92e32f-a919-4836-ba12-9fc5a14d61e9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1668' + - '1945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:18:22 GMT + - Sun, 29 Sep 2024 05:14:28 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ff61461d-ee18-4bbf-a30a-786344bc25f9 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G12|2024-09-29T05:14:29 + x-msedge-ref: + - 'Ref A: 0D40528DE3254EA1B5D06672759A6153 Ref B: TYO201151002040 Ref C: 2024-09-29T05:14:27Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009": - {}}}, "location": "North Europe", "properties": {"disableLocalAuth": false, - "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + body: '{"identity": {"type": "SystemAssigned"}, "location": "northeurope", "properties": + {"disableLocalAuth": false, "geoDataReplication": {"locations": [{"locationName": + "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' headers: @@ -4608,53 +3864,49 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive Content-Length: - - '886' + - '439' Content-Type: - application/json ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:18:32.58Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:14:32.5296117Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1799' + - '1085' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:18:33 GMT + - Sun, 29 Sep 2024 05:14:31 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 66dc6439-37ff-4022-8e19-6eb82562fa08 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:14:32 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' + x-msedge-ref: + - 'Ref A: BD28BB52D81F492CAEF7DCB5BD651847 Ref B: TYO201151002040 Ref C: 2024-09-29T05:14:29Z' status: code: 200 message: OK @@ -4666,47 +3918,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:18:36.967Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:14:32.5296117Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1796' + - '1085' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:19:03 GMT + - Sun, 29 Sep 2024 05:14:33 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a8f02b71-f627-41c8-b261-57ac1f816d34 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:14:33 + x-msedge-ref: + - 'Ref A: 543DA9481C37435298516E681BA81002 Ref B: TYO201151002040 Ref C: 2024-09-29T05:14:32Z' status: code: 200 message: OK @@ -4718,47 +3966,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:18:36.967Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:14:32.5296117Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1796' + - '1085' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:19:34 GMT + - Sun, 29 Sep 2024 05:15:04 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 97812396-05de-4c48-b500-a98252893ffc + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G13|2024-09-29T05:15:05 + x-msedge-ref: + - 'Ref A: E1CF3B894F2A40F5B44AF80848998851 Ref B: TYO201151002040 Ref C: 2024-09-29T05:15:04Z' status: code: 200 message: OK @@ -4770,47 +4014,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:19:41.757Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:15:11.7643906Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1787' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:04 GMT + - Sun, 29 Sep 2024 05:15:36 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 318db987-f539-4596-b44f-0ad3e8a5126a + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G13|2024-09-29T05:15:36 + x-msedge-ref: + - 'Ref A: E58D40F9CED14E78B22173D90706CF32 Ref B: TYO201151002040 Ref C: 2024-09-29T05:15:35Z' status: code: 200 message: OK @@ -4822,47 +4062,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:19:41.757Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:15:11.7643906Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1787' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:04 GMT + - Sun, 29 Sep 2024 05:15:37 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 51628800-0df3-445e-bc86-ba5051ac31a8 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G12|2024-09-29T05:15:38 + x-msedge-ref: + - 'Ref A: 1C8E29F3C13542D4A933BC30E6E82ADA Ref B: OSA221030114029 Ref C: 2024-09-29T05:15:37Z' status: code: 200 message: OK @@ -4874,107 +4110,104 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity3000010":{"clientId":"a322c860-a853-4317-9d2a-077e22ed915f","principalId":"c0077922-ac63-4204-be42-cf8fb496b8db"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000009":{"clientId":"62df7bdb-14f0-49cc-8e22-459bfeb81780","principalId":"187ddc17-9505-40d7-84f4-94ee60d2483f"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:19:41.757Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:15:11.7643906Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1787' + - '1064' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:06 GMT + - Sun, 29 Sep 2024 05:15:39 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 154993aa-c9f3-4c8f-a680-f22b91821e8a + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G8|2024-09-29T05:15:39 + x-msedge-ref: + - 'Ref A: 285ADAF863054EEDA73DA5C1A6898162 Ref B: TYO201100113017 Ref C: 2024-09-29T05:15:38Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned"}, "location": "North Europe", "properties": - {"disableLocalAuth": false, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": - 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": - 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' + body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": + {}}}, "location": "northeurope", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", + "tier": "Premium"}, "tags": {}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive Content-Length: - - '304' + - '661' Content-Type: - application/json ParameterSetName: - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:20:15.833Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:15:44.4521711Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '909' + - '1406' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:16 GMT + - Sun, 29 Sep 2024 05:15:44 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 57a69860-cef3-4584-a1f7-ebc1d2b84849 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:15:44 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' + x-msedge-ref: + - 'Ref A: 323FADDCFC1F447F915EB6002EEE8AEA Ref B: TYO201100113017 Ref C: 2024-09-29T05:15:40Z' status: code: 200 message: OK @@ -4986,46 +4219,44 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace identity assign Connection: - keep-alive ParameterSetName: - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:20:20.49Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:15:44.4521711Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '905' + - '1406' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:46 GMT + - Sun, 29 Sep 2024 05:15:45 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 605e2c66-39af-4623-9914-d2c39c427425 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:15:45 + x-msedge-ref: + - 'Ref A: F3A6EDEA001D4584B90125963CF81AAD Ref B: TYO201100113017 Ref C: 2024-09-29T05:15:44Z' status: code: 200 message: OK @@ -5033,7 +4264,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -5043,40 +4274,38 @@ interactions: ParameterSetName: - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:20:20.49Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:15:44.4521711Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '905' + - '1406' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:46 GMT + - Sun, 29 Sep 2024 05:16:16 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 87228be6-8bbc-4a1c-8e60-566f23fc2ab4 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G8|2024-09-29T05:16:17 + x-msedge-ref: + - 'Ref A: EE9E000EEAD54DB0B894098E2B4A54D8 Ref B: TYO201100113017 Ref C: 2024-09-29T05:16:15Z' status: code: 200 message: OK @@ -5084,7 +4313,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -5094,103 +4323,87 @@ interactions: ParameterSetName: - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:20:20.49Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:16:23.656148Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '905' + - '1384' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:47 GMT + - Sun, 29 Sep 2024 05:16:47 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4b28c4e9-c28e-4f2b-b9ab-68eb4f88a2eb + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G13|2024-09-29T05:16:48 + x-msedge-ref: + - 'Ref A: 7C21D88F7ED14126BD7DFEB02420CD38 Ref B: TYO201100113017 Ref C: 2024-09-29T05:16:47Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": - {}}}, "location": "North Europe", "properties": {"disableLocalAuth": false, - "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": - "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", - "tier": "Premium"}, "tags": {}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive - Content-Length: - - '526' - Content-Type: - - application/json ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:20:54.76Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:16:23.656148Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1137' + - '1384' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:20:55 GMT + - Sun, 29 Sep 2024 05:16:50 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + x-ms-messaging-activity-id: + - f3e43d87-57b0-4ff7-9839-c54ec88ed512 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G9|2024-09-29T05:16:50 + x-msedge-ref: + - 'Ref A: A49FBC4E2E534EF6BE0C093223BC2A3F Ref B: TYO201151006029 Ref C: 2024-09-29T05:16:48Z' status: code: 200 message: OK @@ -5198,103 +4411,107 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:20:58.27Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:16:23.656148Z"},"identity":{"principalId":"217b598c-8760-463d-ab57-8f9c935d8d85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1133' + - '1384' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:21:25 GMT + - Sun, 29 Sep 2024 05:16:51 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d5aeb6b5-a53a-42de-adf7-52823489a790 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G2|2024-09-29T05:16:52 + x-msedge-ref: + - 'Ref A: 1843CB0FA7CF485BA07DD1E5F0652140 Ref B: OSA221030113023 Ref C: 2024-09-29T05:16:51Z' status: code: 200 message: OK - request: - body: null + body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": + {}}}, "location": "northeurope", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", + "tier": "Premium"}, "tags": {}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive + Content-Length: + - '645' + Content-Type: + - application/json ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"ActivatingIdentity","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:20:58.27Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:16:59.6565314Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1133' + - '1287' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:21:56 GMT + - Sun, 29 Sep 2024 05:16:59 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 17b4a42c-d536-48cf-8470-3f136cf9216d + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G6|2024-09-29T05:16:59 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: ECA4199EE2EC4BED859E73A2A37F297C Ref B: OSA221030113023 Ref C: 2024-09-29T05:16:52Z' status: code: 200 message: OK @@ -5306,47 +4523,43 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity assign + - servicebus namespace identity remove Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:21:59.49Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:16:59.6565314Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1226' + - '1287' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:22:26 GMT + - Sun, 29 Sep 2024 05:17:00 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 80da1a46-5d3a-411b-9d0a-b4ed6ff2136b + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:17:01 + x-msedge-ref: + - 'Ref A: 02038A72B95249B1AC09307D813426E3 Ref B: OSA221030113023 Ref C: 2024-09-29T05:17:00Z' status: code: 200 message: OK @@ -5354,7 +4567,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -5364,41 +4577,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:21:59.49Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:16:59.6565314Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1226' + - '1287' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:22:26 GMT + - Sun, 29 Sep 2024 05:17:31 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a79924d1-5078-4d2c-9211-2214ab6e939a + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G11|2024-09-29T05:17:32 + x-msedge-ref: + - 'Ref A: E37710EB282747A5A5CC9555479CE36F Ref B: OSA221030113023 Ref C: 2024-09-29T05:17:31Z' status: code: 200 message: OK @@ -5406,7 +4615,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -5416,50 +4625,42 @@ interactions: ParameterSetName: - --resource-group --namespace-name --system-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"principalId":"f86395c1-4dcd-4719-ad17-ea98d2a05fb4","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:21:59.49Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:17:44.3257452Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1226' + - '1266' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:22:26 GMT + - Sun, 29 Sep 2024 05:18:04 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ea5767ff-329a-4ba4-8263-4c8e558b9f1e + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G13|2024-09-29T05:18:04 + x-msedge-ref: + - 'Ref A: 883C2224DE294E1EAEE14EFE21DCEB5E Ref B: OSA221030113023 Ref C: 2024-09-29T05:18:02Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "UserAssigned", "userAssignedIdentities": {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008": - {}}}, "location": "North Europe", "properties": {"disableLocalAuth": false, - "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": - "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", - "tier": "Premium"}, "tags": {}}' + body: null headers: Accept: - application/json @@ -5469,49 +4670,40 @@ interactions: - servicebus namespace identity remove Connection: - keep-alive - Content-Length: - - '510' - Content-Type: - - application/json ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:22:36.28Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:17:44.3257452Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1110' + - '1266' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:22:36 GMT + - Sun, 29 Sep 2024 05:18:06 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1194' + x-ms-messaging-activity-id: + - 4289eb91-66b4-4458-81bd-109b56df0e82 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G9|2024-09-29T05:18:06 + x-msedge-ref: + - 'Ref A: 0EAB8AB8B4C54F4F94F2F0BA8E2F5486 Ref B: TYO201100117047 Ref C: 2024-09-29T05:18:05Z' status: code: 200 message: OK @@ -5519,7 +4711,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -5527,47 +4719,49 @@ interactions: Connection: - keep-alive ParameterSetName: - - --resource-group --namespace-name --system-assigned + - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:22:39.437Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:17:44.3257452Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"cd5488c7-4452-4e97-96c1-d549b6c882c9","principalId":"6bef94af-28f7-4436-93ce-f13c150d2be9"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1108' + - '1266' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:23:07 GMT + - Sun, 29 Sep 2024 05:18:06 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 3820365f-c7dd-4cd6-bdb4-d88544a77e81 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:18:07 + x-msedge-ref: + - 'Ref A: DB0E604AB2464A769AB9D06151525AFC Ref B: TYO201151004009 Ref C: 2024-09-29T05:18:06Z' status: code: 200 message: OK - request: - body: null + body: '{"identity": {"type": "None"}, "location": "northeurope", "properties": + {"disableLocalAuth": false, "geoDataReplication": {"locations": [{"locationName": + "northeurope", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 1, "name": "Premium", + "tier": "Premium"}, "tags": {}}' headers: Accept: - application/json @@ -5577,43 +4771,46 @@ interactions: - servicebus namespace identity remove Connection: - keep-alive + Content-Length: + - '429' + Content-Type: + - application/json ParameterSetName: - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:22:39.437Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:18:11.1385483Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1108' + - '945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:23:07 GMT + - Sun, 29 Sep 2024 05:18:10 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 771303fb-2bce-48a2-9da1-d711d1fbec02 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:18:11 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 0290410B085542998520F81B3CD97A5F Ref B: TYO201151004009 Ref C: 2024-09-29T05:18:07Z' status: code: 200 message: OK @@ -5621,7 +4818,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -5631,100 +4828,85 @@ interactions: ParameterSetName: - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000008":{"clientId":"4077964e-131a-44bd-8ed2-c4addd75caa0","principalId":"182061a2-23d3-42a1-b0de-881e2a238df5"}}},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:22:39.437Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"ActivatingIdentity","status":"ActivatingIdentity","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:18:11.1385483Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1108' + - '945' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:23:07 GMT + - Sun, 29 Sep 2024 05:18:11 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - cdda2a3d-071f-4c60-9c76-89fa80855b65 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:18:12 + x-msedge-ref: + - 'Ref A: AC290D4D80104C7793B492A3ACF97E98 Ref B: TYO201151004009 Ref C: 2024-09-29T05:18:11Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "North Europe", "properties": - {"disableLocalAuth": false, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": - 1, "publicNetworkAccess": "Enabled", "zoneRedundant": false}, "sku": {"capacity": - 1, "name": "Premium", "tier": "Premium"}, "tags": {}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - servicebus namespace identity remove Connection: - keep-alive - Content-Length: - - '294' - Content-Type: - - application/json ParameterSetName: - --resource-group --namespace-name --user-assigned User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Updating","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:23:15.29Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:06:07.6660129Z","updatedAt":"2024-09-29T05:18:40.0451678Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '768' + - '924' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:23:15 GMT + - Sun, 29 Sep 2024 05:18:43 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-messaging-activity-id: + - 9bc0f126-4c7d-4fd4-acda-904370cca8ea + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G4|2024-09-29T05:18:43 + x-msedge-ref: + - 'Ref A: 4FF39612AE374CB0A25D986B75D301F0 Ref B: TYO201151004009 Ref C: 2024-09-29T05:18:42Z' status: code: 200 message: OK @@ -5736,49 +4918,50 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace identity remove + - servicebus namespace delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - --resource-group --namespace-name --user-assigned + - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"North - Europe","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-nscli000002","createdAt":"2023-03-13T13:03:47.687Z","updatedAt":"2023-03-13T13:23:17.653Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '' headers: cache-control: - no-cache content-length: - - '766' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 13 Mar 2023 13:23:46 GMT + - Sun, 29 Sep 2024 05:18:48 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/ef73fd0b-84b0-4ac2-97cb-369830493679?isAsyncHeader=false&resourceName=servicebus-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631839283787785&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=QCqJAjBOzq_tpnjIHHrlE6OJSCaa7MacDbt4zKu6awi3L1IVAv0DYkEQ0wMEW2KUnbN5ZREykHcM7sHIEfyWZoYB155P52wFiiZ5mYp93ZCJA_0Eqieuqr4zNJ7Owe50FwY46eAtRIoFivuNXz9x8XI5_BD_veF5VITaatLGTw1yk2g6i0-60rg_Id5MuLnmx-l33Y_3NU8FT46voXkrtaoCkR73X-44pS2DWzKkPxo-_uRWgGD6QwEn19H7JCx3z-TNN1XainAPkQnZdEPUgY0ey7j3ooNDPZUEd-mDrtv4-BgsIOQz3Fe4jmTkzZUZVglrv95ookzBNQ6d9hfa5Q&h=U9UUmgVI-ViT-Eb8MgVaM2s2Qh6zUD1iHi_b52EkudY pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000004508 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G5|2024-09-29T05:18:48 + x-ms-ratelimit-remaining-subscription-deletes: + - '14998' + x-msedge-ref: + - 'Ref A: AE9C9112964A4BA39498A7F1109A1F9E Ref B: OSA221030114025 Ref C: 2024-09-29T05:18:44Z' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -5790,15 +4973,12 @@ interactions: - servicebus namespace delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/ef73fd0b-84b0-4ac2-97cb-369830493679?isAsyncHeader=false&resourceName=servicebus-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631839283787785&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=QCqJAjBOzq_tpnjIHHrlE6OJSCaa7MacDbt4zKu6awi3L1IVAv0DYkEQ0wMEW2KUnbN5ZREykHcM7sHIEfyWZoYB155P52wFiiZ5mYp93ZCJA_0Eqieuqr4zNJ7Owe50FwY46eAtRIoFivuNXz9x8XI5_BD_veF5VITaatLGTw1yk2g6i0-60rg_Id5MuLnmx-l33Y_3NU8FT46voXkrtaoCkR73X-44pS2DWzKkPxo-_uRWgGD6QwEn19H7JCx3z-TNN1XainAPkQnZdEPUgY0ey7j3ooNDPZUEd-mDrtv4-BgsIOQz3Fe4jmTkzZUZVglrv95ookzBNQ6d9hfa5Q&h=U9UUmgVI-ViT-Eb8MgVaM2s2Qh6zUD1iHi_b52EkudY response: body: string: '' @@ -5808,24 +4988,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:23:48 GMT + - Sun, 29 Sep 2024 05:18:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/ef73fd0b-84b0-4ac2-97cb-369830493679?isAsyncHeader=false&resourceName=servicebus-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631839297858676&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=Jp1CharYpk_ByllVi9fprhzl3YQNrefVA-9hGGZ9wnbPRH3f51b3U-Gmfr5citYAJPi7pt6Dj_-S-ub11B56F_LQPCEp7Zj0Fzl3VfB5fuwTWZOWPLCXJcp9I2U_StoxbyUPoWms7SSpUFIgLH7MSoKKjZ81DoqKsz-b-556n71ggN4L3j-QVS0Jy7Y1_JE0ifzuRYiKQtxbuWdjVgsgNvXRIgJaQIECAGJatT-OruHOjKatEjifHs8T3Hn7tcB5jRFt9CQbB6H69rNaPF0JEs5rMZE5vvLVw92mLhS_1wgu39aa5FdjmW4Fv_08AHfDDo6jZHsmdW8kGV52VGGV-w&h=PCpL6RKE1eQUptb3UQ2nLdGa671DtkmbaulR0CYFw_4 pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000004512 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G6|2024-09-29T05:18:49 + x-msedge-ref: + - 'Ref A: 129319702CD64522B1F119F9C97D9DAC Ref B: OSA221030114025 Ref C: 2024-09-29T05:18:48Z' status: code: 202 message: Accepted @@ -5843,10 +5024,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/ef73fd0b-84b0-4ac2-97cb-369830493679?isAsyncHeader=false&resourceName=servicebus-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631839297858676&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=Jp1CharYpk_ByllVi9fprhzl3YQNrefVA-9hGGZ9wnbPRH3f51b3U-Gmfr5citYAJPi7pt6Dj_-S-ub11B56F_LQPCEp7Zj0Fzl3VfB5fuwTWZOWPLCXJcp9I2U_StoxbyUPoWms7SSpUFIgLH7MSoKKjZ81DoqKsz-b-556n71ggN4L3j-QVS0Jy7Y1_JE0ifzuRYiKQtxbuWdjVgsgNvXRIgJaQIECAGJatT-OruHOjKatEjifHs8T3Hn7tcB5jRFt9CQbB6H69rNaPF0JEs5rMZE5vvLVw92mLhS_1wgu39aa5FdjmW4Fv_08AHfDDo6jZHsmdW8kGV52VGGV-w&h=PCpL6RKE1eQUptb3UQ2nLdGa671DtkmbaulR0CYFw_4 response: body: string: '' @@ -5856,22 +5036,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:24:18 GMT + - Sun, 29 Sep 2024 05:19:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/ef73fd0b-84b0-4ac2-97cb-369830493679?isAsyncHeader=false&resourceName=servicebus-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631839611156853&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=kC_84Hy0dFzSenh7p4oCiUDehCNTKLTINhimwKMX4AAP3trG6crzdhoK45cDagIgxos1zQZL7viyFasziLCnDkDT7ffg6tZaYwRWKlv53RTIYVHRmpXsk5b7IMVtw_ZCSnrnNejL6Z45tfRrOJXx-w95DFlb6k1M_QTu3Hg74jWs_twqfw59k3ab59mVUJtoZALJAxJ0CPDAlTcsBb4MEP08_e6dJBUSDZlUycNd9FkPIDxwpkEPnqVMu8dNBmNliLCleTJA9729Wsq6MYIQSAK0dUoq4z6FwdD9q8FvtodWwW9JQUVSfIYs5EcTTUS-YQYhBIfJiC8wxe0zZLwq9g&h=o6GU0vaQpWBE_EPAeBpbR1a1bGgJskkSDZgIvFngkFA pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006692 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G12|2024-09-29T05:19:21 + x-msedge-ref: + - 'Ref A: 06939AC9804B41ACB221009D6762DAC6 Ref B: OSA221030114025 Ref C: 2024-09-29T05:19:19Z' status: code: 202 message: Accepted @@ -5889,10 +5072,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/ef73fd0b-84b0-4ac2-97cb-369830493679?isAsyncHeader=false&resourceName=servicebus-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631839611156853&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=kC_84Hy0dFzSenh7p4oCiUDehCNTKLTINhimwKMX4AAP3trG6crzdhoK45cDagIgxos1zQZL7viyFasziLCnDkDT7ffg6tZaYwRWKlv53RTIYVHRmpXsk5b7IMVtw_ZCSnrnNejL6Z45tfRrOJXx-w95DFlb6k1M_QTu3Hg74jWs_twqfw59k3ab59mVUJtoZALJAxJ0CPDAlTcsBb4MEP08_e6dJBUSDZlUycNd9FkPIDxwpkEPnqVMu8dNBmNliLCleTJA9729Wsq6MYIQSAK0dUoq4z6FwdD9q8FvtodWwW9JQUVSfIYs5EcTTUS-YQYhBIfJiC8wxe0zZLwq9g&h=o6GU0vaQpWBE_EPAeBpbR1a1bGgJskkSDZgIvFngkFA response: body: string: '' @@ -5902,22 +5084,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:24:48 GMT + - Sun, 29 Sep 2024 05:19:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/ef73fd0b-84b0-4ac2-97cb-369830493679?isAsyncHeader=false&resourceName=servicebus-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631839925441062&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=r0gxJtRLZ3QcPb545vVrrc1tQj7wqe8cat1lIwZTtFewtt-b3HiaDmDGr9QhHyf8UFqGKyGx87pCXIrC7oBZKuiyFSKQYaKsvDjkNdUVzS50gazEeDG-QPWum9M4hPZAneSw4zYyBnPA8VXj-kB826hSj4F9qE6fo5ulbDvZ-jCP9E_60Hn8LtibI6vdGExykMPAl-UQFGjb02z9SZni7Fc7Q6VMDbd8d5thGjy5osW8hgD1nLwB05JMZLESMA425FUu9uhJ3pyuyAaaH6uKZbqN1dbWtNm_uGQIWgNVV5IUaYcsibspnzc__akE23rLLafUJg9w_Qe4YI4NzzApYw&h=fnZxmdlw87gphtNvzNxCCobnpOXTwN0XHT9Sc-zmQOs pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000009288 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:19:52 + x-msedge-ref: + - 'Ref A: F56E55A8D0FF4E8AB3D5E9EC02279CDD Ref B: OSA221030114025 Ref C: 2024-09-29T05:19:51Z' status: code: 202 message: Accepted @@ -5935,10 +5120,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/ef73fd0b-84b0-4ac2-97cb-369830493679?isAsyncHeader=false&resourceName=servicebus-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631839925441062&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=r0gxJtRLZ3QcPb545vVrrc1tQj7wqe8cat1lIwZTtFewtt-b3HiaDmDGr9QhHyf8UFqGKyGx87pCXIrC7oBZKuiyFSKQYaKsvDjkNdUVzS50gazEeDG-QPWum9M4hPZAneSw4zYyBnPA8VXj-kB826hSj4F9qE6fo5ulbDvZ-jCP9E_60Hn8LtibI6vdGExykMPAl-UQFGjb02z9SZni7Fc7Q6VMDbd8d5thGjy5osW8hgD1nLwB05JMZLESMA425FUu9uhJ3pyuyAaaH6uKZbqN1dbWtNm_uGQIWgNVV5IUaYcsibspnzc__akE23rLLafUJg9w_Qe4YI4NzzApYw&h=fnZxmdlw87gphtNvzNxCCobnpOXTwN0XHT9Sc-zmQOs response: body: string: '' @@ -5946,20 +5130,25 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Mar 2023 13:25:18 GMT + - Sun, 29 Sep 2024 05:20:23 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/ef73fd0b-84b0-4ac2-97cb-369830493679?isAsyncHeader=false&resourceName=servicebus-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631840239191635&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=mVU5TPjJ5b7QZmI5z335H2xY1zMP7c9uzgYlZP9eX6YEpvATqj9CMQtUppM8VGVO7y5LANRphY6O_QzvYf4k4N-U5kfoTGzrSvRujQSWlAO2_HGjqXufZun1RPNhBfNVHGUc3hPJ9rbZc_rq6q_SAo0d9PiieKULwC4724UuLpHLIg_7WrrOKRfQRxYwOTM7F6euE0K2FoCBgjxDE2YdWKkUP1bp568vKXxXusnR0obnoSeVyw98B8ooDbYBOXdHzJBvz6ccdbyBaP2AAiez1dmJiOrzF4dkR-cL5HuJ7BbJvtpEqt9zFO4q0d1Jr1zyADa4qljzvyLxFtM5cdXLQg&h=C_J1eXyg2LKp5379WmGrHqSRJGRqhw9onGV56QakJWo pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000009288 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G1|2024-09-29T05:20:23 + x-msedge-ref: + - 'Ref A: 8CB2841D987B43D689154FF14023D85C Ref B: OSA221030114025 Ref C: 2024-09-29T05:20:22Z' status: code: 204 message: No Content @@ -5979,10 +5168,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000003?api-version=2023-01-01-preview response: body: string: '' @@ -5992,24 +5180,75 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:25:21 GMT + - Sun, 29 Sep 2024 05:20:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/fcacfefa-3544-4cdf-96ca-ecba35003f25?isAsyncHeader=false&resourceName=servicebus-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631840271362337&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OORMy06fK987wIPoWabuxqJzRr_kNtWMOjd9T09Xm86VVZmSMTl7wOxXFOwOWZ0ldL1h2bVjsggpd8Gi6RCvfF6xO1Z2J9qIaJx3snHSogUbe60NmtQwEN8AyjIzSOuhGW8RgrWN7nswhKqjofls-FKi7a2TPMNP2qI0cVMATa8B0jk-MToXsVcWpAt3WUBLe_SQ76pqhzRsWzGfLXCCVN0DnbhiQ_V-GjwKzdETV12Hqyp5q7mgQUVuzHZ72c3sKojQLDFw7L44DVBJ1wPNy5eq-OXb0tN691S7rxVoiHD9E6pDrmOxuXsbndMtLWG6mLHqeQ9t-eHuQC1ulZRmNg&h=ju8beSkiCewEjODiJAKYYQYXP_7Q3z_AD8-uBYbDEd8 pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000004852 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G9|2024-09-29T05:20:26 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: DD1E791BCF3847DBA998DB43D240A593 Ref B: TYO201151002031 Ref C: 2024-09-29T05:20:24Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/fcacfefa-3544-4cdf-96ca-ecba35003f25?isAsyncHeader=false&resourceName=servicebus-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631840271362337&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OORMy06fK987wIPoWabuxqJzRr_kNtWMOjd9T09Xm86VVZmSMTl7wOxXFOwOWZ0ldL1h2bVjsggpd8Gi6RCvfF6xO1Z2J9qIaJx3snHSogUbe60NmtQwEN8AyjIzSOuhGW8RgrWN7nswhKqjofls-FKi7a2TPMNP2qI0cVMATa8B0jk-MToXsVcWpAt3WUBLe_SQ76pqhzRsWzGfLXCCVN0DnbhiQ_V-GjwKzdETV12Hqyp5q7mgQUVuzHZ72c3sKojQLDFw7L44DVBJ1wPNy5eq-OXb0tN691S7rxVoiHD9E6pDrmOxuXsbndMtLWG6mLHqeQ9t-eHuQC1ulZRmNg&h=ju8beSkiCewEjODiJAKYYQYXP_7Q3z_AD8-uBYbDEd8 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 29 Sep 2024 05:20:28 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/fcacfefa-3544-4cdf-96ca-ecba35003f25?isAsyncHeader=false&resourceName=servicebus-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631840285015908&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=o3HFmImK800p3OtH0HlPd5nR2JWB4noKSMa9ITrPpOsqwV7LxWgzHIA5knUtqsPcRFG25wf1pQMkYNeiOuIMfV1NXXcMk-TjLyuZYQ0zpkPvZa2VGrlWQJUWIwtjnc_g9jgV9ycISBD0hitHKQaNo7T-Ea2O389QBpLNu4eXrCoMAiDqnoP1-jcqvm_mDvljQbxnLQIG5bRjfRJq8AUFBMCX69pcNJhqvQpeyUccVO7fy5fiPWKzNMUvC-vmmUzoYBjpKQgMC7TmZgu30rLyjj72mbR6d7on5S7rEq_MDhwQZaAQn5dgHSGEmYoUwHt-du6odi9RgM6FCATVqp-oOQ&h=Rk6sfV9AjzOiZ2Rv5LyiyN6lHehZwR57uREBAbnFyaw + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000004284 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G2|2024-09-29T05:20:28 + x-msedge-ref: + - 'Ref A: BD534258FA524F9F85512DDB01F2F14E Ref B: TYO201151002031 Ref C: 2024-09-29T05:20:27Z' status: code: 202 message: Accepted @@ -6027,10 +5266,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/fcacfefa-3544-4cdf-96ca-ecba35003f25?isAsyncHeader=false&resourceName=servicebus-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631840285015908&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=o3HFmImK800p3OtH0HlPd5nR2JWB4noKSMa9ITrPpOsqwV7LxWgzHIA5knUtqsPcRFG25wf1pQMkYNeiOuIMfV1NXXcMk-TjLyuZYQ0zpkPvZa2VGrlWQJUWIwtjnc_g9jgV9ycISBD0hitHKQaNo7T-Ea2O389QBpLNu4eXrCoMAiDqnoP1-jcqvm_mDvljQbxnLQIG5bRjfRJq8AUFBMCX69pcNJhqvQpeyUccVO7fy5fiPWKzNMUvC-vmmUzoYBjpKQgMC7TmZgu30rLyjj72mbR6d7on5S7rEq_MDhwQZaAQn5dgHSGEmYoUwHt-du6odi9RgM6FCATVqp-oOQ&h=Rk6sfV9AjzOiZ2Rv5LyiyN6lHehZwR57uREBAbnFyaw response: body: string: '' @@ -6040,22 +5278,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:25:51 GMT + - Sun, 29 Sep 2024 05:20:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/fcacfefa-3544-4cdf-96ca-ecba35003f25?isAsyncHeader=false&resourceName=servicebus-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631840599326372&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=F13Uhw5s8uafVmlUE6xA6Zrh_GPiGJ_7MWblULpKMM5AZX-s_tcb55c9DNs3p3J3uH076gMgUZybQGzro0yZ3Ellb93_TaGRcfkgXRMCSRznieXomu5hJo5Um7mFXm5o0tAFkc9OaGYpRPmHCgTaRhLovpmZh0YN5vYXooPxr9g8McmiaAEMR0nvpgVovLuwlC-NrELWbUwBkNyH8DRpw8QZ_MijApV-ERGIr3Ai4iRJyZALSnDgsOr_rIrz33QFz-kkAiVrJg1dGjp78UQs_aQewZ_w3LEdd-L3tKVuxIrlp9DafrceY4o0CcSiJ79BI4Ne4yo_K2IxDMcHjL0eLg&h=HT54BN0HT31jL1QjC5jtkX4K5k2Cvm6-69ASDBqE5ko pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008340 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G3|2024-09-29T05:20:59 + x-msedge-ref: + - 'Ref A: 890D2C1A11AA4EB3B588D5790B3D3BDA Ref B: TYO201151002031 Ref C: 2024-09-29T05:20:58Z' status: code: 202 message: Accepted @@ -6073,10 +5314,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/fcacfefa-3544-4cdf-96ca-ecba35003f25?isAsyncHeader=false&resourceName=servicebus-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631840599326372&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=F13Uhw5s8uafVmlUE6xA6Zrh_GPiGJ_7MWblULpKMM5AZX-s_tcb55c9DNs3p3J3uH076gMgUZybQGzro0yZ3Ellb93_TaGRcfkgXRMCSRznieXomu5hJo5Um7mFXm5o0tAFkc9OaGYpRPmHCgTaRhLovpmZh0YN5vYXooPxr9g8McmiaAEMR0nvpgVovLuwlC-NrELWbUwBkNyH8DRpw8QZ_MijApV-ERGIr3Ai4iRJyZALSnDgsOr_rIrz33QFz-kkAiVrJg1dGjp78UQs_aQewZ_w3LEdd-L3tKVuxIrlp9DafrceY4o0CcSiJ79BI4Ne4yo_K2IxDMcHjL0eLg&h=HT54BN0HT31jL1QjC5jtkX4K5k2Cvm6-69ASDBqE5ko response: body: string: '' @@ -6086,22 +5326,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:26:20 GMT + - Sun, 29 Sep 2024 05:21:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/fcacfefa-3544-4cdf-96ca-ecba35003f25?isAsyncHeader=false&resourceName=servicebus-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631840913038145&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=mLyR5mgnKny-fANzXfu4JEYErgaxDv0oUR-ocHLmmTs4WoC1hJnxfLNB0d4LZjXgCeu9rERDZ5aOouNeF3vjaDbShGBWjTgqqyFWJgRhlUPe3Z9pHSHa9cZTDuorwG0t1MV18a7ZviT5I_qQ06dcprMloWnmf9QlL8GGIrOpD1ewGFIy3-dR_HrKJvRmwoBZZhOwV6nmZE0ghtYWvmVNlfjtXB8Y6lo54RJyhgYfLCc2MsLF2XuGgGJGVjFnHZ8YmTh-WG8N9RHs7ogI-UbOpXWTjQ_mKDSnL9bxStmYApkpk5hBJK4wdLm6nzfjS6JKLBuhG6W33sVS9Y6mRnZZqA&h=Vm_itcN-_GDNdGV9qhidaKz0xqGNGJjE5fKKNWOJMyU pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000004068 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G7|2024-09-29T05:21:31 + x-msedge-ref: + - 'Ref A: 433C51D2ABF24123BFA87D9CF33BE548 Ref B: TYO201151002031 Ref C: 2024-09-29T05:21:30Z' status: code: 202 message: Accepted @@ -6119,10 +5362,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_eh_namespace000001/providers/Microsoft.ServiceBus/locations/northeurope/operationStatus/servicebus-nscli000003?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/fcacfefa-3544-4cdf-96ca-ecba35003f25?isAsyncHeader=false&resourceName=servicebus-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631840913038145&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=mLyR5mgnKny-fANzXfu4JEYErgaxDv0oUR-ocHLmmTs4WoC1hJnxfLNB0d4LZjXgCeu9rERDZ5aOouNeF3vjaDbShGBWjTgqqyFWJgRhlUPe3Z9pHSHa9cZTDuorwG0t1MV18a7ZviT5I_qQ06dcprMloWnmf9QlL8GGIrOpD1ewGFIy3-dR_HrKJvRmwoBZZhOwV6nmZE0ghtYWvmVNlfjtXB8Y6lo54RJyhgYfLCc2MsLF2XuGgGJGVjFnHZ8YmTh-WG8N9RHs7ogI-UbOpXWTjQ_mKDSnL9bxStmYApkpk5hBJK4wdLm6nzfjS6JKLBuhG6W33sVS9Y6mRnZZqA&h=Vm_itcN-_GDNdGV9qhidaKz0xqGNGJjE5fKKNWOJMyU response: body: string: '' @@ -6130,20 +5372,25 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Mar 2023 13:26:51 GMT + - Sun, 29 Sep 2024 05:22:02 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/northeurope/namespaceOperationResults/fcacfefa-3544-4cdf-96ca-ecba35003f25?isAsyncHeader=false&resourceName=servicebus-nscli000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631841226803064&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=HdZn8Ttg0nHlQtsGpQV4dSxGLYxaTYbUh9XVuknuxaVvIITn_fKum_SJPIPFjY8L7QBTrBWKyDRXcj3lH4NoMZr2arbmbQb0t49Qk5MK0RA13Al15Bv5Ce5bHnrGxQUP2nlctg7WiUJeep0AvdG4qazkTwQxdoAbQr7JCiAc9Hn-HnsLLsawCkneY2Lghf2p_a0F_nfCqZepvRY_gSUKGE9e4guIGACWBH6mLOi_gZiuXrkuZdRbT0B9vjHDHVhstPOfAp-70Zn005WhoCdSgHhJxs7nUvZTC_gf7yiAkRjUnoKdm4As2wsQa7_8hBDJ1yM61rDA9kFGUH6J0FWShA&h=1HQM4wlzBCxQvVLP4bV1ltCKjcBkPop9YzshH1deWkY pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000004852 + x-ms-messaging-routing-id: + - NORTHEUROPE|NORTHEUROPE|G9|2024-09-29T05:22:02 + x-msedge-ref: + - 'Ref A: 2749610AB177499B99A49C41533739B7 Ref B: TYO201151002031 Ref C: 2024-09-29T05:22:01Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_network.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_network.yaml index d941d3ed7d7..40504a41af9 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_network.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_network.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_network000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001","name":"cli_test_sb_network000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_network","date":"2024-07-01T06:10:46Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001","name":"cli_test_sb_network000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_network","date":"2024-09-29T06:56:07Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:10:49 GMT + - Sun, 29 Sep 2024 06:56:11 GMT expires: - '-1' pragma: @@ -38,10 +38,8 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' x-msedge-ref: - - 'Ref A: A829DC98AFAE4D1CB0F4F1E54895716F Ref B: TYO201151001052 Ref C: 2024-07-01T06:10:49Z' + - 'Ref A: DA183D569F0F4E36B8199884A71C7AB8 Ref B: TYO201100114019 Ref C: 2024-09-29T06:56:11Z' status: code: 200 message: OK @@ -64,32 +62,25 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"sbehvnettest1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1\",\r\n - \ \"etag\": \"W/\\\"dc83455d-ca78-4196-ade8-80b28661bc05\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"2f286804-58fa-4d18-b8eb-c805f0b11bcb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" + string: '{"name":"sbehvnettest1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1","etag":"W/\"1d00c0d0-ec5a-47e9-8edb-08949be2c9d8\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"2b155e10-bb4d-43a9-a941-83b8b8883708","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ddb358eb-7dcd-430f-b790-72fd0272ba56?api-version=2022-01-01&t=638554110516486015&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=whhxaGnBYKPFouZNEKOOTy7ZHLbY_TCIaas1-MvTMAk0V3OrbQ2I55MHYPXA11mZymPA3C5weBmO58s340162RqTHxKg5V9HJG0D87RWCLVmLqRzBVFWXkiqFNmaXqwL2bzjzuL7RB8gJ-iUbx9aWtzl0K6ZyvgljtqB2igtwpIhfePoGLH41Idt5G4pHbRT6gb05wpXhGfiuuO493PvS9Rjz5KQBp6eb5jFH4MxSy1yIfOqaxURb-eGCDcP9MIaMj2kjOSjhoL5WZRNoTU547ZGHGQJF1LYUSje2zIRfNVf2TLwJ3e1ML6jPj0rE-sKT4eqeEyMYFH9E1uHumZpcA&h=XxM2fqPesTphJwe2n7BnTZD-EApKXnNF4OojobqY9fo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1f02fec3-344e-435a-9909-d6221790f04f?api-version=2022-01-01&t=638631897756146280&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=VKoddLAqhF3aTJdN6fnw9fw4u9Z7_eHOmmCrma-PU2zKHU2VgTtctdE4MooHUN-HmgFmvvq7V1JNv9UeQPfAoDzD-xnQqKIt5DWb4b88aGbK8e2FGjR4DL0Q08wpC93RAOPM2YbJQ6ZDliyGxmyseMoesV9LvLMXI4iPGsXlgEp2GKPfZFoKCFOrAWyWGjcK1Gpg5qQ43XzoYuh2CO6lmi_7Iyp0GYvHs0sNHemKRkMQ9sWPmvCc-U0L05CwmNenbOLEl2ypCigVeOvkLH_lQ2YnJE-bdRPKWOdRMKrRQVnj38aOXSoMwSU6Ob2EzdBAZ0Q9p9TdB8nBB0kfCjS_nw&h=BuyH12u_K2YN_2o6Lu74WswxxIBKoiV9Y-_Lu4uFezQ cache-control: - no-cache content-length: - - '629' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:10:51 GMT + - Sun, 29 Sep 2024 06:56:15 GMT expires: - '-1' pragma: @@ -101,13 +92,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57bf97ce-c125-4452-a446-9c0561572ceb - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - f86b38ec-67a9-45af-aa87-fc1c86555762 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: 37FC7A690CBC4C53A191240092B9194D Ref B: TYO201151004023 Ref C: 2024-07-01T06:10:49Z' + - 'Ref A: 08B0D24D6B954BC0947F7FCAE866F74E Ref B: OSA221030113021 Ref C: 2024-09-29T06:56:12Z' status: code: 201 message: Created @@ -125,21 +114,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ddb358eb-7dcd-430f-b790-72fd0272ba56?api-version=2022-01-01&t=638554110516486015&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=whhxaGnBYKPFouZNEKOOTy7ZHLbY_TCIaas1-MvTMAk0V3OrbQ2I55MHYPXA11mZymPA3C5weBmO58s340162RqTHxKg5V9HJG0D87RWCLVmLqRzBVFWXkiqFNmaXqwL2bzjzuL7RB8gJ-iUbx9aWtzl0K6ZyvgljtqB2igtwpIhfePoGLH41Idt5G4pHbRT6gb05wpXhGfiuuO493PvS9Rjz5KQBp6eb5jFH4MxSy1yIfOqaxURb-eGCDcP9MIaMj2kjOSjhoL5WZRNoTU547ZGHGQJF1LYUSje2zIRfNVf2TLwJ3e1ML6jPj0rE-sKT4eqeEyMYFH9E1uHumZpcA&h=XxM2fqPesTphJwe2n7BnTZD-EApKXnNF4OojobqY9fo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1f02fec3-344e-435a-9909-d6221790f04f?api-version=2022-01-01&t=638631897756146280&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=VKoddLAqhF3aTJdN6fnw9fw4u9Z7_eHOmmCrma-PU2zKHU2VgTtctdE4MooHUN-HmgFmvvq7V1JNv9UeQPfAoDzD-xnQqKIt5DWb4b88aGbK8e2FGjR4DL0Q08wpC93RAOPM2YbJQ6ZDliyGxmyseMoesV9LvLMXI4iPGsXlgEp2GKPfZFoKCFOrAWyWGjcK1Gpg5qQ43XzoYuh2CO6lmi_7Iyp0GYvHs0sNHemKRkMQ9sWPmvCc-U0L05CwmNenbOLEl2ypCigVeOvkLH_lQ2YnJE-bdRPKWOdRMKrRQVnj38aOXSoMwSU6Ob2EzdBAZ0Q9p9TdB8nBB0kfCjS_nw&h=BuyH12u_K2YN_2o6Lu74WswxxIBKoiV9Y-_Lu4uFezQ response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:10:51 GMT + - Sun, 29 Sep 2024 06:56:15 GMT expires: - '-1' pragma: @@ -151,11 +140,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f76f86ca-e84a-479b-a71a-18079ab0752e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - fbf35954-079c-4c0a-9541-d8575e960188 x-msedge-ref: - - 'Ref A: 3A5982A22E9C44F7992077E8AB4F09A7 Ref B: TYO201151004023 Ref C: 2024-07-01T06:10:51Z' + - 'Ref A: E9DF68FF7A1F45FD97200FBFEA18B975 Ref B: OSA221030113021 Ref C: 2024-09-29T06:56:15Z' status: code: 200 message: OK @@ -173,21 +160,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ddb358eb-7dcd-430f-b790-72fd0272ba56?api-version=2022-01-01&t=638554110516486015&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=whhxaGnBYKPFouZNEKOOTy7ZHLbY_TCIaas1-MvTMAk0V3OrbQ2I55MHYPXA11mZymPA3C5weBmO58s340162RqTHxKg5V9HJG0D87RWCLVmLqRzBVFWXkiqFNmaXqwL2bzjzuL7RB8gJ-iUbx9aWtzl0K6ZyvgljtqB2igtwpIhfePoGLH41Idt5G4pHbRT6gb05wpXhGfiuuO493PvS9Rjz5KQBp6eb5jFH4MxSy1yIfOqaxURb-eGCDcP9MIaMj2kjOSjhoL5WZRNoTU547ZGHGQJF1LYUSje2zIRfNVf2TLwJ3e1ML6jPj0rE-sKT4eqeEyMYFH9E1uHumZpcA&h=XxM2fqPesTphJwe2n7BnTZD-EApKXnNF4OojobqY9fo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1f02fec3-344e-435a-9909-d6221790f04f?api-version=2022-01-01&t=638631897756146280&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=VKoddLAqhF3aTJdN6fnw9fw4u9Z7_eHOmmCrma-PU2zKHU2VgTtctdE4MooHUN-HmgFmvvq7V1JNv9UeQPfAoDzD-xnQqKIt5DWb4b88aGbK8e2FGjR4DL0Q08wpC93RAOPM2YbJQ6ZDliyGxmyseMoesV9LvLMXI4iPGsXlgEp2GKPfZFoKCFOrAWyWGjcK1Gpg5qQ43XzoYuh2CO6lmi_7Iyp0GYvHs0sNHemKRkMQ9sWPmvCc-U0L05CwmNenbOLEl2ypCigVeOvkLH_lQ2YnJE-bdRPKWOdRMKrRQVnj38aOXSoMwSU6Ob2EzdBAZ0Q9p9TdB8nBB0kfCjS_nw&h=BuyH12u_K2YN_2o6Lu74WswxxIBKoiV9Y-_Lu4uFezQ response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:02 GMT + - Sun, 29 Sep 2024 06:56:25 GMT expires: - '-1' pragma: @@ -199,11 +186,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 132af8e4-6d84-4a6b-8674-1ecb471d833c - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 7a7de5db-9f5f-4dbd-9eec-534678c1323b x-msedge-ref: - - 'Ref A: C64D1DE8386143AEA2EF8F3DE29D461C Ref B: TYO201151004023 Ref C: 2024-07-01T06:11:02Z' + - 'Ref A: 76FA6F0144F44EDA95C27BEA8FD50EFE Ref B: OSA221030113021 Ref C: 2024-09-29T06:56:25Z' status: code: 200 message: OK @@ -221,30 +206,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"sbehvnettest1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1\",\r\n - \ \"etag\": \"W/\\\"cd0d64c5-1b9a-4e00-b9f5-9935fba09bf4\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"2f286804-58fa-4d18-b8eb-c805f0b11bcb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" + string: '{"name":"sbehvnettest1","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1","etag":"W/\"f8858906-740f-4f57-9f0e-fbccaccd7d9a\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"2b155e10-bb4d-43a9-a941-83b8b8883708","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '630' + - '519' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:03 GMT + - Sun, 29 Sep 2024 06:56:26 GMT etag: - - W/"cd0d64c5-1b9a-4e00-b9f5-9935fba09bf4" + - W/"f8858906-740f-4f57-9f0e-fbccaccd7d9a" expires: - '-1' pragma: @@ -256,11 +234,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8a10d356-9722-407f-8b2e-6c7ace87aa18 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 30980691-27b6-4e83-ac66-9b61ddef01e4 x-msedge-ref: - - 'Ref A: 2830095A22AD4743AE6883530DA66FA8 Ref B: TYO201151004023 Ref C: 2024-07-01T06:11:02Z' + - 'Ref A: 8A1F7DC9FF584985B53EE003B5F15D4F Ref B: OSA221030113021 Ref C: 2024-09-29T06:56:26Z' status: code: 200 message: OK @@ -278,21 +254,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_network000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001","name":"cli_test_sb_network000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_network","date":"2024-07-01T06:10:46Z","module":"servicebus","Creator":"v-taoxuzeng@microsoft.com","DateCreated":"2024-07-01T06:10:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001","name":"cli_test_sb_network000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_network","date":"2024-09-29T06:56:07Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '450' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:03 GMT + - Sun, 29 Sep 2024 06:56:27 GMT expires: - '-1' pragma: @@ -303,10 +279,8 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' x-msedge-ref: - - 'Ref A: 62CEDDDEDCC0437CBB41C20FF832FB1D Ref B: TYO201100115025 Ref C: 2024-07-01T06:11:04Z' + - 'Ref A: 74EB3EE3627949E1956DBF618EC94632 Ref B: OSA221030113047 Ref C: 2024-09-29T06:56:27Z' status: code: 200 message: OK @@ -329,32 +303,25 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"sbehvnettest2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2\",\r\n - \ \"etag\": \"W/\\\"f8566297-8fa4-44d5-99a4-b4c2c528db87\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"3a36bfcb-a0d4-44e7-bc56-9a5dd8d65eda\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" + string: '{"name":"sbehvnettest2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2","etag":"W/\"c183777e-9df8-4e3f-aff1-5a8370de6dee\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"e8a27e44-9cb0-480b-9b0d-ffce7fc6709d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86270a47-6911-43b2-b329-3e46ec1b60a4?api-version=2022-01-01&t=638554110670654023&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=VrR7GD9O1uQVVCyVxtPZN3TnXuDofgR64rGkc0cm4LG8NmhuxzyNepzfNFa7VdUUtyzDzq13ljtkuwvD0TxX8VQ4QUOPQFIFjlisZCnLKJYn6xrZhtkDpSDu4PWFDkrGJdRdtqIGBIiUfdkr2xFAHPY6Jvuu0U7IstoTDrmoPgqkX1UMLbmze9vRB-deLLpwG--P3V1tNNjckGlK1KcaeJQpmsnS2LkyHwRi1G8Dmvju5hYI2_PSOK96O8ATI5VE14ylt7lyYeXFjRPyqoCm-AqpHW-xIg66XU0YhnGRlcxdRTc00g3CKvzXMjKHV5BZw3e0DYQjTQadVIuVWpHW6Q&h=wYNqv5Af-AsTWKhyZ7GUsxClmCYprnMpo1K8f9yjPBY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7927da92-8e25-40d8-964d-5ca828b19516?api-version=2022-01-01&t=638631897907156064&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=wSnD071ddRNnpDqmkqusn1_E1v4-PWgc8_Th9X8EV9cx0ihSlItH2cZrtr9ig8_Tk4iSPZOjfJkuWe979P0sQmwGxZA7B2_ZIPmK212AH_B5z6eRd5H2oCr2sObo07Y4hcU6bzv4BratHUxdcCLLvoiMlQ-HZPwo5bhuW2VhTYg6Bjd-5fsVy4sOThPx6QqZKtr8XrD1F7sujYKphMdkK75t_2Y9pbTaE3OXWqL3qzukELgzauNM_5JvhTmDTvCrZMZmy1AZ9JKU8RWUnM0N_Q77lTxzGmwjGtBeuzGXWFOKS2czKy11PE6xstJoWol3kZSQ1NcutZgZrQ5gDRCHUg&h=ItOHayjHK6emzPOk_EI18UGKl_2F7musuYtghv0ui6U cache-control: - no-cache content-length: - - '629' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:07 GMT + - Sun, 29 Sep 2024 06:56:29 GMT expires: - '-1' pragma: @@ -366,13 +333,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - da289e42-b5fe-4331-a84e-2c7a21767d0c - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 923e4e52-c8e9-4232-a2cf-8ffa1f4ec62f x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: F866582D02FC4C0ABA0FE8AAA999C724 Ref B: TYO201151005011 Ref C: 2024-07-01T06:11:05Z' + - 'Ref A: 0DA0575FA433437F94AE269691F642CC Ref B: OSA221030116019 Ref C: 2024-09-29T06:56:28Z' status: code: 201 message: Created @@ -390,21 +355,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86270a47-6911-43b2-b329-3e46ec1b60a4?api-version=2022-01-01&t=638554110670654023&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=VrR7GD9O1uQVVCyVxtPZN3TnXuDofgR64rGkc0cm4LG8NmhuxzyNepzfNFa7VdUUtyzDzq13ljtkuwvD0TxX8VQ4QUOPQFIFjlisZCnLKJYn6xrZhtkDpSDu4PWFDkrGJdRdtqIGBIiUfdkr2xFAHPY6Jvuu0U7IstoTDrmoPgqkX1UMLbmze9vRB-deLLpwG--P3V1tNNjckGlK1KcaeJQpmsnS2LkyHwRi1G8Dmvju5hYI2_PSOK96O8ATI5VE14ylt7lyYeXFjRPyqoCm-AqpHW-xIg66XU0YhnGRlcxdRTc00g3CKvzXMjKHV5BZw3e0DYQjTQadVIuVWpHW6Q&h=wYNqv5Af-AsTWKhyZ7GUsxClmCYprnMpo1K8f9yjPBY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7927da92-8e25-40d8-964d-5ca828b19516?api-version=2022-01-01&t=638631897907156064&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=wSnD071ddRNnpDqmkqusn1_E1v4-PWgc8_Th9X8EV9cx0ihSlItH2cZrtr9ig8_Tk4iSPZOjfJkuWe979P0sQmwGxZA7B2_ZIPmK212AH_B5z6eRd5H2oCr2sObo07Y4hcU6bzv4BratHUxdcCLLvoiMlQ-HZPwo5bhuW2VhTYg6Bjd-5fsVy4sOThPx6QqZKtr8XrD1F7sujYKphMdkK75t_2Y9pbTaE3OXWqL3qzukELgzauNM_5JvhTmDTvCrZMZmy1AZ9JKU8RWUnM0N_Q77lTxzGmwjGtBeuzGXWFOKS2czKy11PE6xstJoWol3kZSQ1NcutZgZrQ5gDRCHUg&h=ItOHayjHK6emzPOk_EI18UGKl_2F7musuYtghv0ui6U response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:07 GMT + - Sun, 29 Sep 2024 06:56:30 GMT expires: - '-1' pragma: @@ -416,11 +381,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 45059b21-5ade-40e8-981f-5e52a847b36d - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - f088a5d6-4226-4856-be36-8863afe8b646 x-msedge-ref: - - 'Ref A: 5AA596B506444510A3B8CA76AE26597F Ref B: TYO201151005011 Ref C: 2024-07-01T06:11:07Z' + - 'Ref A: 1D4241F38F9044E79A711B7B85FE117D Ref B: OSA221030116019 Ref C: 2024-09-29T06:56:30Z' status: code: 200 message: OK @@ -438,21 +401,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/86270a47-6911-43b2-b329-3e46ec1b60a4?api-version=2022-01-01&t=638554110670654023&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=VrR7GD9O1uQVVCyVxtPZN3TnXuDofgR64rGkc0cm4LG8NmhuxzyNepzfNFa7VdUUtyzDzq13ljtkuwvD0TxX8VQ4QUOPQFIFjlisZCnLKJYn6xrZhtkDpSDu4PWFDkrGJdRdtqIGBIiUfdkr2xFAHPY6Jvuu0U7IstoTDrmoPgqkX1UMLbmze9vRB-deLLpwG--P3V1tNNjckGlK1KcaeJQpmsnS2LkyHwRi1G8Dmvju5hYI2_PSOK96O8ATI5VE14ylt7lyYeXFjRPyqoCm-AqpHW-xIg66XU0YhnGRlcxdRTc00g3CKvzXMjKHV5BZw3e0DYQjTQadVIuVWpHW6Q&h=wYNqv5Af-AsTWKhyZ7GUsxClmCYprnMpo1K8f9yjPBY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7927da92-8e25-40d8-964d-5ca828b19516?api-version=2022-01-01&t=638631897907156064&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=wSnD071ddRNnpDqmkqusn1_E1v4-PWgc8_Th9X8EV9cx0ihSlItH2cZrtr9ig8_Tk4iSPZOjfJkuWe979P0sQmwGxZA7B2_ZIPmK212AH_B5z6eRd5H2oCr2sObo07Y4hcU6bzv4BratHUxdcCLLvoiMlQ-HZPwo5bhuW2VhTYg6Bjd-5fsVy4sOThPx6QqZKtr8XrD1F7sujYKphMdkK75t_2Y9pbTaE3OXWqL3qzukELgzauNM_5JvhTmDTvCrZMZmy1AZ9JKU8RWUnM0N_Q77lTxzGmwjGtBeuzGXWFOKS2czKy11PE6xstJoWol3kZSQ1NcutZgZrQ5gDRCHUg&h=ItOHayjHK6emzPOk_EI18UGKl_2F7musuYtghv0ui6U response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:17 GMT + - Sun, 29 Sep 2024 06:56:41 GMT expires: - '-1' pragma: @@ -464,11 +427,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a281e28f-c110-4e70-83cc-96227ba9e754 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 5eb4730b-acf1-459f-a7ca-e7a120aa413e x-msedge-ref: - - 'Ref A: 390EF98ED0B44FE8AAF08BF5E9F8754C Ref B: TYO201151005011 Ref C: 2024-07-01T06:11:18Z' + - 'Ref A: A90500172C0C4851A910F49F003AAD2A Ref B: OSA221030116019 Ref C: 2024-09-29T06:56:41Z' status: code: 200 message: OK @@ -486,30 +447,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"sbehvnettest2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2\",\r\n - \ \"etag\": \"W/\\\"8716f47c-831f-47b3-98d1-e5ae4c2374b0\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"3a36bfcb-a0d4-44e7-bc56-9a5dd8d65eda\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" + string: '{"name":"sbehvnettest2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2","etag":"W/\"f9c00aa8-cb46-4ece-b537-a1f0ac4745c6\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"e8a27e44-9cb0-480b-9b0d-ffce7fc6709d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '630' + - '519' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:18 GMT + - Sun, 29 Sep 2024 06:56:42 GMT etag: - - W/"8716f47c-831f-47b3-98d1-e5ae4c2374b0" + - W/"f9c00aa8-cb46-4ece-b537-a1f0ac4745c6" expires: - '-1' pragma: @@ -521,11 +475,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a6979d93-04ec-4e52-a170-b2f273c81c47 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - f600539f-a6a9-44fc-86e5-511b4cc6f8e8 x-msedge-ref: - - 'Ref A: 037C1BE94E914A16ABF7336BDFDEEF6E Ref B: TYO201151005011 Ref C: 2024-07-01T06:11:18Z' + - 'Ref A: AC05A09223F9460CAE6966471BDB74DB Ref B: OSA221030116019 Ref C: 2024-09-29T06:56:42Z' status: code: 200 message: OK @@ -543,21 +495,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_network000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001","name":"cli_test_sb_network000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_network","date":"2024-07-01T06:10:46Z","module":"servicebus","Creator":"v-taoxuzeng@microsoft.com","DateCreated":"2024-07-01T06:10:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001","name":"cli_test_sb_network000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_network","date":"2024-09-29T06:56:07Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '450' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:19 GMT + - Sun, 29 Sep 2024 06:56:42 GMT expires: - '-1' pragma: @@ -568,10 +520,8 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' x-msedge-ref: - - 'Ref A: 20292368F0354E7999B3C0C06BE90FC7 Ref B: TYO201100113021 Ref C: 2024-07-01T06:11:19Z' + - 'Ref A: 5C63AF608A0148529F72021DE7006422 Ref B: TYO201151005054 Ref C: 2024-09-29T06:56:43Z' status: code: 200 message: OK @@ -594,32 +544,25 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"sbehvnettest3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3\",\r\n - \ \"etag\": \"W/\\\"609aadfb-9ac8-440e-8d10-849d0f98b4aa\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"f4d6caf0-2df1-457d-ad9e-166582d2a5ea\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" + string: '{"name":"sbehvnettest3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3","etag":"W/\"4bd3c001-90e5-47e2-af87-cae5d6c4ed82\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"6cff47e0-0b5e-4422-b762-0bddf73a0ad6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1c37fb8c-00e6-4532-af70-a36a6e7d2de5?api-version=2022-01-01&t=638554110828611695&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fb1vtf_WspZDDQjmAcF2qAjtfJfSpUqeawlJ0PAdE_WFqswfbOwZm2FYxbfFAkgALfBSC99x2hh0Pdg6eJBlZQAQoxJjNIIXUEAwJ-ydFoAOarIFihjMRdaA0nuKziLMBAQjOb6FeSa9PU4bXpBEku0WwmKm5uL9AMYm7WlOiBawMuJjBOUtRgUWpvoVHohBtAl85oNYZ6rM7HoKoVmWzOVZ3MSQeHWfWx2plwJiSs-BejmyY9qlGrfdH_83dlZbv4gLpIQkvW5imoyVg7NZzav0JdxFG7ENByrcs5YT-3_utG7Cdc48PgatOByGfe_vleV0GdCoaFuoU1P94ns16Q&h=d-jCn0trsVYn0ymCAlRHC2alxVPAcRjNYNnhfcW-TT4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b684345-ddd9-45d4-acb5-ca9ea1be6ab5?api-version=2022-01-01&t=638631898062843040&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=N6UgyaQ2aJvBVVsZR5RJK1ih3B3rIERFJb5GzIS_JM1J7tQcvQXo31EhU-xF4uOtdVhPM3OYHxSG-u-XRkQjXL4i_R69ejn5n55g8hG-eiNB6Nkrb8z_p9xsOvIIx7nYgm5E5OQxj4Sd66zd_9BCscIG5Zb9zmWZBC7Ban4m4CGwDXJYkbAUNQtmam9CQsoKzAGC0uwPqU79FHvkngxrHfBNXqgOfrMo3knOVudOOcPY7tJ-rmbId7taUBUrtJ4mPTRFjysdIjh5w7Z3xTpfrZc4rtxMAB5IcGEg7w_tm86d5AGVzngIAqCHu4g6GcUlZ7X7BYy9UPWokd-OzjsHPw&h=O6gtj-ZPhc9_K0IeiirQKlNTYTwCtK0I6E1kV5G7T1w cache-control: - no-cache content-length: - - '629' + - '518' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:22 GMT + - Sun, 29 Sep 2024 06:56:45 GMT expires: - '-1' pragma: @@ -631,13 +574,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2deb25eb-d1da-4856-824b-9cada0df61f2 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 5e44e2fe-99e5-4009-824a-fe5bcfdb27d7 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: D568A08E743D43FB90E4BDE97129FBD5 Ref B: TYO201100114047 Ref C: 2024-07-01T06:11:20Z' + - 'Ref A: 080BE82C60F740FA9A904AC83C6ABA62 Ref B: TYO201151003011 Ref C: 2024-09-29T06:56:43Z' status: code: 201 message: Created @@ -655,21 +596,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1c37fb8c-00e6-4532-af70-a36a6e7d2de5?api-version=2022-01-01&t=638554110828611695&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fb1vtf_WspZDDQjmAcF2qAjtfJfSpUqeawlJ0PAdE_WFqswfbOwZm2FYxbfFAkgALfBSC99x2hh0Pdg6eJBlZQAQoxJjNIIXUEAwJ-ydFoAOarIFihjMRdaA0nuKziLMBAQjOb6FeSa9PU4bXpBEku0WwmKm5uL9AMYm7WlOiBawMuJjBOUtRgUWpvoVHohBtAl85oNYZ6rM7HoKoVmWzOVZ3MSQeHWfWx2plwJiSs-BejmyY9qlGrfdH_83dlZbv4gLpIQkvW5imoyVg7NZzav0JdxFG7ENByrcs5YT-3_utG7Cdc48PgatOByGfe_vleV0GdCoaFuoU1P94ns16Q&h=d-jCn0trsVYn0ymCAlRHC2alxVPAcRjNYNnhfcW-TT4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b684345-ddd9-45d4-acb5-ca9ea1be6ab5?api-version=2022-01-01&t=638631898062843040&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=N6UgyaQ2aJvBVVsZR5RJK1ih3B3rIERFJb5GzIS_JM1J7tQcvQXo31EhU-xF4uOtdVhPM3OYHxSG-u-XRkQjXL4i_R69ejn5n55g8hG-eiNB6Nkrb8z_p9xsOvIIx7nYgm5E5OQxj4Sd66zd_9BCscIG5Zb9zmWZBC7Ban4m4CGwDXJYkbAUNQtmam9CQsoKzAGC0uwPqU79FHvkngxrHfBNXqgOfrMo3knOVudOOcPY7tJ-rmbId7taUBUrtJ4mPTRFjysdIjh5w7Z3xTpfrZc4rtxMAB5IcGEg7w_tm86d5AGVzngIAqCHu4g6GcUlZ7X7BYy9UPWokd-OzjsHPw&h=O6gtj-ZPhc9_K0IeiirQKlNTYTwCtK0I6E1kV5G7T1w response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:22 GMT + - Sun, 29 Sep 2024 06:56:46 GMT expires: - '-1' pragma: @@ -681,11 +622,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ec60d0a2-872a-4bf6-9834-eaae1ef0e393 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 14a24173-28be-4778-a34e-1b381c4a65e1 x-msedge-ref: - - 'Ref A: 5BB967F60BF049FE89D6FF5AD995C10E Ref B: TYO201100114047 Ref C: 2024-07-01T06:11:23Z' + - 'Ref A: 332665F4C0B84CCEBC1604C0CA5AA591 Ref B: TYO201151003011 Ref C: 2024-09-29T06:56:46Z' status: code: 200 message: OK @@ -703,21 +642,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1c37fb8c-00e6-4532-af70-a36a6e7d2de5?api-version=2022-01-01&t=638554110828611695&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=fb1vtf_WspZDDQjmAcF2qAjtfJfSpUqeawlJ0PAdE_WFqswfbOwZm2FYxbfFAkgALfBSC99x2hh0Pdg6eJBlZQAQoxJjNIIXUEAwJ-ydFoAOarIFihjMRdaA0nuKziLMBAQjOb6FeSa9PU4bXpBEku0WwmKm5uL9AMYm7WlOiBawMuJjBOUtRgUWpvoVHohBtAl85oNYZ6rM7HoKoVmWzOVZ3MSQeHWfWx2plwJiSs-BejmyY9qlGrfdH_83dlZbv4gLpIQkvW5imoyVg7NZzav0JdxFG7ENByrcs5YT-3_utG7Cdc48PgatOByGfe_vleV0GdCoaFuoU1P94ns16Q&h=d-jCn0trsVYn0ymCAlRHC2alxVPAcRjNYNnhfcW-TT4 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9b684345-ddd9-45d4-acb5-ca9ea1be6ab5?api-version=2022-01-01&t=638631898062843040&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=N6UgyaQ2aJvBVVsZR5RJK1ih3B3rIERFJb5GzIS_JM1J7tQcvQXo31EhU-xF4uOtdVhPM3OYHxSG-u-XRkQjXL4i_R69ejn5n55g8hG-eiNB6Nkrb8z_p9xsOvIIx7nYgm5E5OQxj4Sd66zd_9BCscIG5Zb9zmWZBC7Ban4m4CGwDXJYkbAUNQtmam9CQsoKzAGC0uwPqU79FHvkngxrHfBNXqgOfrMo3knOVudOOcPY7tJ-rmbId7taUBUrtJ4mPTRFjysdIjh5w7Z3xTpfrZc4rtxMAB5IcGEg7w_tm86d5AGVzngIAqCHu4g6GcUlZ7X7BYy9UPWokd-OzjsHPw&h=O6gtj-ZPhc9_K0IeiirQKlNTYTwCtK0I6E1kV5G7T1w response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:32 GMT + - Sun, 29 Sep 2024 06:56:57 GMT expires: - '-1' pragma: @@ -729,11 +668,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 069e24a6-d668-454e-9bfe-582c67758008 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - eac1ce63-938b-4bcb-8be5-5407675bc3ca x-msedge-ref: - - 'Ref A: 565875356D864C80B424A43D446C94DE Ref B: TYO201100114047 Ref C: 2024-07-01T06:11:33Z' + - 'Ref A: 676EAB38865D42D8B67CEE0E4414422F Ref B: TYO201151003011 Ref C: 2024-09-29T06:56:57Z' status: code: 200 message: OK @@ -751,30 +688,23 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"sbehvnettest3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3\",\r\n - \ \"etag\": \"W/\\\"8354e02a-d29b-42ed-885d-458c928e7afa\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"f4d6caf0-2df1-457d-ad9e-166582d2a5ea\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [],\r\n - \ \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n - \ }\r\n}" + string: '{"name":"sbehvnettest3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3","etag":"W/\"65d57961-71fb-4396-8c6a-f1c593f0c89e\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"6cff47e0-0b5e-4422-b762-0bddf73a0ad6","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '630' + - '519' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:33 GMT + - Sun, 29 Sep 2024 06:56:57 GMT etag: - - W/"8354e02a-d29b-42ed-885d-458c928e7afa" + - W/"65d57961-71fb-4396-8c6a-f1c593f0c89e" expires: - '-1' pragma: @@ -786,11 +716,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d12573c5-a85c-47fb-bfc4-48436074f422 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 542b3111-4547-4a5b-b69f-7f5b44b34186 x-msedge-ref: - - 'Ref A: 5B0E3822278746418C969E67AF542C9F Ref B: TYO201100114047 Ref C: 2024-07-01T06:11:33Z' + - 'Ref A: 29373AEAC4A64FA0BE8BA9CCB216BA9E Ref B: TYO201151003011 Ref C: 2024-09-29T06:56:57Z' status: code: 200 message: OK @@ -813,30 +741,25 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\",\r\n - \ \"etag\": \"W/\\\"91796424-8ca7-4165-a177-0fab0d82691d\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default","etag":"W/\"f05a38fa-a4bc-4db7-8efd-14591f8f9edc\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae2f5adc-5a1b-4843-aea0-c5ee9e0787b4?api-version=2024-01-01&t=638554110961335974&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=irWUKkdEKpUwNpARy9vGjQT5yEDt8nrh0HYt3IdSppT1F8hBEeOTr8sZANfDtDPS21GNxdNLsPk3-sEBxagHedxw06mdV8kzgDLiBG5PkrCn_S_yimUTE9AReNaq_3hGrS9J8JGBE-mkfYq74Nd4rfd3WV1Sf8ofo0-iY1HbVMX5ve70_2piOLnUKwDYOuFoJG6AuntJA8RZl3hV_tiV0xZbjFRBCdmF_dhQ_GTyyy80aen0cV8Bv23-9u7_oe8s1ozyGpFppopMsCuiuexlrcFMvRkrlMoC0txGIZUA13KA0p7tt5N0bIk4nWRbzJtfuOzmMCtRP5SCJrcqY7hxXQ&h=OGfeCfIrSB_SmHaskvFqKRuJB9VEtEQzNXohglqX0U8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02960b7b-4009-4860-bf25-db3578592b7b?api-version=2024-01-01&t=638631898195932458&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=DHPk-5lK3aXrYitx53XVgpQXfludExyj3N4uU4tlYGv5VT1Mf2Jojzsd3ssKXo4yrYieYoRYgOK8NGvt50ePFDm2HMrylUMHjUmKsuZXHEX6Q4MfjU5xjoGFIpY0SIthI87wM80WxmU3MD1-sJqsIfSSgZ3UhNs4QIGKg3mU7rOO8W78sxML-j599G-mfN-YTrUha7Scpq1aKVvCjflMtso4PmEisth7dH0VytMTBCnVI_NifcM_QDP1qyxXI8CZujIGhNwksMYCvwNCKPBP3TwqkWRzg7fRH7b4MPcEXWVqH7fEAyBvhBjwQAqUPy5Q6A3eoKawYYmiYzpE4rNbFA&h=RfbpPhySHbbdWwJBhCv-JaECD2GRwqMh6NOJ67IjGHE cache-control: - no-cache content-length: - - '582' + - '509' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:35 GMT + - Sun, 29 Sep 2024 06:56:58 GMT expires: - '-1' pragma: @@ -848,13 +771,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f98bda0c-d89b-42df-be8f-fc011d62b398 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 19b84e13-f2f5-4357-a0b4-3bf81fa6b8d1 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: E532B45D7FCB4322AA27B6B2B2DA4F76 Ref B: TYO201151001062 Ref C: 2024-07-01T06:11:35Z' + - 'Ref A: 017E1418407B4678A7DDE46A9D9F16CD Ref B: OSA221030116029 Ref C: 2024-09-29T06:56:58Z' status: code: 201 message: Created @@ -872,21 +793,21 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/ae2f5adc-5a1b-4843-aea0-c5ee9e0787b4?api-version=2024-01-01&t=638554110961335974&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=irWUKkdEKpUwNpARy9vGjQT5yEDt8nrh0HYt3IdSppT1F8hBEeOTr8sZANfDtDPS21GNxdNLsPk3-sEBxagHedxw06mdV8kzgDLiBG5PkrCn_S_yimUTE9AReNaq_3hGrS9J8JGBE-mkfYq74Nd4rfd3WV1Sf8ofo0-iY1HbVMX5ve70_2piOLnUKwDYOuFoJG6AuntJA8RZl3hV_tiV0xZbjFRBCdmF_dhQ_GTyyy80aen0cV8Bv23-9u7_oe8s1ozyGpFppopMsCuiuexlrcFMvRkrlMoC0txGIZUA13KA0p7tt5N0bIk4nWRbzJtfuOzmMCtRP5SCJrcqY7hxXQ&h=OGfeCfIrSB_SmHaskvFqKRuJB9VEtEQzNXohglqX0U8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/02960b7b-4009-4860-bf25-db3578592b7b?api-version=2024-01-01&t=638631898195932458&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=DHPk-5lK3aXrYitx53XVgpQXfludExyj3N4uU4tlYGv5VT1Mf2Jojzsd3ssKXo4yrYieYoRYgOK8NGvt50ePFDm2HMrylUMHjUmKsuZXHEX6Q4MfjU5xjoGFIpY0SIthI87wM80WxmU3MD1-sJqsIfSSgZ3UhNs4QIGKg3mU7rOO8W78sxML-j599G-mfN-YTrUha7Scpq1aKVvCjflMtso4PmEisth7dH0VytMTBCnVI_NifcM_QDP1qyxXI8CZujIGhNwksMYCvwNCKPBP3TwqkWRzg7fRH7b4MPcEXWVqH7fEAyBvhBjwQAqUPy5Q6A3eoKawYYmiYzpE4rNbFA&h=RfbpPhySHbbdWwJBhCv-JaECD2GRwqMh6NOJ67IjGHE response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:36 GMT + - Sun, 29 Sep 2024 06:56:59 GMT expires: - '-1' pragma: @@ -898,11 +819,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b14c84e8-e7dc-4616-bdb6-0f328e88255b - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 5e6aac48-e381-4b00-aaa7-c3a95cbc491b x-msedge-ref: - - 'Ref A: A5CDDA6342DC4D7681AED4C1A89E5C7C Ref B: TYO201151001062 Ref C: 2024-07-01T06:11:36Z' + - 'Ref A: 107CD4D3C1754D4A852F9866600CC978 Ref B: OSA221030116029 Ref C: 2024-09-29T06:56:59Z' status: code: 200 message: OK @@ -920,28 +839,23 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default\",\r\n - \ \"etag\": \"W/\\\"9ee2ae50-10fc-48da-bd43-555d7cbd29ad\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"default","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest1/subnets/default","etag":"W/\"b72e1c77-955a-457a-8be9-e2b842a1c782\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '583' + - '510' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:37 GMT + - Sun, 29 Sep 2024 06:57:00 GMT etag: - - W/"9ee2ae50-10fc-48da-bd43-555d7cbd29ad" + - W/"b72e1c77-955a-457a-8be9-e2b842a1c782" expires: - '-1' pragma: @@ -953,11 +867,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a86fd33-b3ea-4f5f-bec0-432d6128a0fe - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - b974258e-d66b-4998-916a-e7dcea5f501c x-msedge-ref: - - 'Ref A: 8BCF8CC1DEE04EC9BB8FB5896082A7A9 Ref B: TYO201151001062 Ref C: 2024-07-01T06:11:37Z' + - 'Ref A: 87D4D8B50F514374BF71A8B273C08FFE Ref B: OSA221030116029 Ref C: 2024-09-29T06:57:00Z' status: code: 200 message: OK @@ -980,30 +892,25 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2/subnets/secondvnet?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"secondvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2/subnets/secondvnet\",\r\n - \ \"etag\": \"W/\\\"d6b6f77e-08d3-45db-84ba-bed011055cea\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"secondvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2/subnets/secondvnet","etag":"W/\"f75383c9-173f-47c8-8e99-f11e3379ff57\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6002390e-3673-4339-8810-a9b347d47401?api-version=2024-01-01&t=638554110996994139&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=kOEwHLlkBvv3LpDC1mZMY-YmODmXPx45cm6GaesHey5gxYqGVn3FxZN0kQKNoUzo9MzH8Zi4ApwQjOhTX7Me6LWYqsE38qqKX7ORE9WKSKo2twZ4JemSWxQ5orpzqf2TLRs1z0qDX0bjgt29ohtVQS5UtaNh8fjdpj9PNmnoHCoAYW-Jr5_nIbY9mXpq-ap-cunqX-38bdL8BzEU6kGktNtUXWn2g7NN3efiaoAZ7LGU2GS1docmwbrixIuSm8mFBsygSv2LvyMwnSY7QiRaQ8_rPy0s8AjTLDEhWV-zWb_64OXWgsxwEKNuKeIsxHXhK9HSbS_PW4IU2X1RXrvBTQ&h=-nZzD4aICxhOQPRExc7ToaXapFTy_7fPWDDIFsDQj1k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/23142def-a922-4518-8035-dc88de0576d1?api-version=2024-01-01&t=638631898228037624&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=MYC6sP25L1lWWpAOOxeIQQ-DPRd2iG2saqibvIT0Q0nVbu3YLFi2JWPNGAeGlKVfXLbTtBzDJ9KgDzUpvsos2OqLycCy_TVCEmG9pNwBCUOP_LJoI7iBGTwX1HWmzlwT-4S_6tWfzUISSELCgk1wwFOzBSbPlkxGgL9_p2XPT-3sT9zjf1k4A_zZiSQW7Ith0wZ_y5mthXZsWyHdqSLQYIDPkglJw6pbvBv-LCsuHCeJRgY2DuJJE-f602MhcYcu1jXmK2zkWhRRHLhAOb51CVomr4Qe-CaKyGhpeGlzUS2vAj0fpBIhga40VPHfQSmIlUguzGhbJWs9ZaftyYySwQ&h=Ul_ENssycWZfJj9qdcaxpe0yyBmnzwVYoDmK0knHMKc cache-control: - no-cache content-length: - - '588' + - '515' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:39 GMT + - Sun, 29 Sep 2024 06:57:02 GMT expires: - '-1' pragma: @@ -1015,13 +922,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 432ff4cd-0f34-49fe-8591-fbb22afe502c - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 877df1fa-c2e4-450a-980b-2f6a67c790f7 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: 897FB80F84CC4434BA87D39A45F73368 Ref B: TYO201100117035 Ref C: 2024-07-01T06:11:38Z' + - 'Ref A: E5EC8935A1FD41FBB7E66FF82489868D Ref B: OSA221030115019 Ref C: 2024-09-29T06:57:01Z' status: code: 201 message: Created @@ -1039,21 +944,21 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6002390e-3673-4339-8810-a9b347d47401?api-version=2024-01-01&t=638554110996994139&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=kOEwHLlkBvv3LpDC1mZMY-YmODmXPx45cm6GaesHey5gxYqGVn3FxZN0kQKNoUzo9MzH8Zi4ApwQjOhTX7Me6LWYqsE38qqKX7ORE9WKSKo2twZ4JemSWxQ5orpzqf2TLRs1z0qDX0bjgt29ohtVQS5UtaNh8fjdpj9PNmnoHCoAYW-Jr5_nIbY9mXpq-ap-cunqX-38bdL8BzEU6kGktNtUXWn2g7NN3efiaoAZ7LGU2GS1docmwbrixIuSm8mFBsygSv2LvyMwnSY7QiRaQ8_rPy0s8AjTLDEhWV-zWb_64OXWgsxwEKNuKeIsxHXhK9HSbS_PW4IU2X1RXrvBTQ&h=-nZzD4aICxhOQPRExc7ToaXapFTy_7fPWDDIFsDQj1k + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/23142def-a922-4518-8035-dc88de0576d1?api-version=2024-01-01&t=638631898228037624&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=MYC6sP25L1lWWpAOOxeIQQ-DPRd2iG2saqibvIT0Q0nVbu3YLFi2JWPNGAeGlKVfXLbTtBzDJ9KgDzUpvsos2OqLycCy_TVCEmG9pNwBCUOP_LJoI7iBGTwX1HWmzlwT-4S_6tWfzUISSELCgk1wwFOzBSbPlkxGgL9_p2XPT-3sT9zjf1k4A_zZiSQW7Ith0wZ_y5mthXZsWyHdqSLQYIDPkglJw6pbvBv-LCsuHCeJRgY2DuJJE-f602MhcYcu1jXmK2zkWhRRHLhAOb51CVomr4Qe-CaKyGhpeGlzUS2vAj0fpBIhga40VPHfQSmIlUguzGhbJWs9ZaftyYySwQ&h=Ul_ENssycWZfJj9qdcaxpe0yyBmnzwVYoDmK0knHMKc response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:40 GMT + - Sun, 29 Sep 2024 06:57:03 GMT expires: - '-1' pragma: @@ -1065,11 +970,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d6f47f1-f332-4ca6-b807-0521db062021 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 5e5d9529-9ca8-4000-8905-63ea2a438263 x-msedge-ref: - - 'Ref A: F192AD8394AF4AEDB5B0B187BE7A8C3A Ref B: TYO201100117035 Ref C: 2024-07-01T06:11:39Z' + - 'Ref A: C68044F60D0E48848E934457EB0ADC07 Ref B: OSA221030115019 Ref C: 2024-09-29T06:57:02Z' status: code: 200 message: OK @@ -1087,28 +990,23 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2/subnets/secondvnet?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"secondvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2/subnets/secondvnet\",\r\n - \ \"etag\": \"W/\\\"e9d725de-c025-43bd-98ff-9cc0cc11fc51\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"secondvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest2/subnets/secondvnet","etag":"W/\"61e8950a-669f-4b3e-b045-9ffa57852d85\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '589' + - '516' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:41 GMT + - Sun, 29 Sep 2024 06:57:03 GMT etag: - - W/"e9d725de-c025-43bd-98ff-9cc0cc11fc51" + - W/"61e8950a-669f-4b3e-b045-9ffa57852d85" expires: - '-1' pragma: @@ -1120,11 +1018,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3ef86f94-8182-413e-8928-192ac53202c8 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 6bd9f3fe-8ec3-435a-be5c-a821a4f9ed68 x-msedge-ref: - - 'Ref A: AFFC03C60EAD4B64B951EF0ABD4622A5 Ref B: TYO201100117035 Ref C: 2024-07-01T06:11:40Z' + - 'Ref A: 66EA2C511B474D4399827556AD50356C Ref B: OSA221030115019 Ref C: 2024-09-29T06:57:03Z' status: code: 200 message: OK @@ -1147,30 +1043,25 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3/subnets/thirdvnet?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"thirdvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3/subnets/thirdvnet\",\r\n - \ \"etag\": \"W/\\\"57b76102-c836-4b94-9ff7-6998ef71b7f3\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"thirdvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3/subnets/thirdvnet","etag":"W/\"8ec5814e-01a2-4e46-9af7-3378431852a0\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4c58d149-a6de-489c-94a6-ba6fd0c3e2a6?api-version=2024-01-01&t=638554111027488642&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=UUpxQ2cYwuqGPgCNCBszw0FHyJyZh2vsu7OUldga5epJr3Kw8nDr-feDvY95AAHXFZlKhpG53m6J6WWhkzypAEncsFiNC5uQZSUqg9DAdMmUoORdQfzyV2oInzDgHLauTHd36ks1a3lzBOrFhtY-LP_908KajGz_HZk4vK3EwTaYtaXDUX0xv1rtDnHoTYpa-b8HHQGGKEWObcPEx4Pld4vVwtGCc7zuqwN-HqfIKK5cfTbEK8Ajwj-mjk-gFTf3TolGOMzfAv7x_MaRP9HnEJ6_WCnd2r9JJxpXHJxRG1lrXdNz-VAzJdh6ye5SKlQ90912rSj9eV9s14R3JoYYTg&h=zc9FFa0uJqSkXqtyCXdNST4IsI4IVgQ43ct-9M6dg6Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eb81d5d5-a77a-4f6f-8adf-3a3438217c4f?api-version=2024-01-01&t=638631898256794592&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=WMGqnLUSEB9Bemg7p9njWIOQtK5h0Iu6uMFcJv19sUE93vdENR_IbAQ--YtJQR0y9Ov3AxzDx5O6RKYg6Z0yLJTj5gHXXHINZ-7sUehFR6i-efHv21Ps1l6c_W0nodRoWWiYyAZhT3lmAVfy_kjeS4OAUakEDv5TfMik3duUNh832dOvIECc9ILnHRD_bmkE_hatz5SW4E2vPMQDWnc5Vs6S7iJPrVLE8XyOMHIHciUwJJhVPL3ufPSgn4wrd1NBE0p9KUHG-X6SP5MMP89jDQ-I0lRgVS0-sD2qzuwotMnywylRNXWJE0_nOpEYx6a5BTZrK9N7d3CFAgPN3YKE7Q&h=Y30-NJSfJc2VPje2g7Rad1qWZwpMrPqNe4ExI7CDuKA cache-control: - no-cache content-length: - - '586' + - '513' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:42 GMT + - Sun, 29 Sep 2024 06:57:05 GMT expires: - '-1' pragma: @@ -1182,13 +1073,11 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - db43330a-e640-43bf-bc38-701ad2518662 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - 6631e699-f003-41b6-ad40-1958d2629eb9 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: A100D5AEA4274099BAEEC8F30F7592FD Ref B: TYO201100113011 Ref C: 2024-07-01T06:11:42Z' + - 'Ref A: 1E9B00F98D91465A9B552D027E3CA123 Ref B: TYO201151003052 Ref C: 2024-09-29T06:57:04Z' status: code: 201 message: Created @@ -1206,21 +1095,21 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4c58d149-a6de-489c-94a6-ba6fd0c3e2a6?api-version=2024-01-01&t=638554111027488642&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=UUpxQ2cYwuqGPgCNCBszw0FHyJyZh2vsu7OUldga5epJr3Kw8nDr-feDvY95AAHXFZlKhpG53m6J6WWhkzypAEncsFiNC5uQZSUqg9DAdMmUoORdQfzyV2oInzDgHLauTHd36ks1a3lzBOrFhtY-LP_908KajGz_HZk4vK3EwTaYtaXDUX0xv1rtDnHoTYpa-b8HHQGGKEWObcPEx4Pld4vVwtGCc7zuqwN-HqfIKK5cfTbEK8Ajwj-mjk-gFTf3TolGOMzfAv7x_MaRP9HnEJ6_WCnd2r9JJxpXHJxRG1lrXdNz-VAzJdh6ye5SKlQ90912rSj9eV9s14R3JoYYTg&h=zc9FFa0uJqSkXqtyCXdNST4IsI4IVgQ43ct-9M6dg6Y + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/eb81d5d5-a77a-4f6f-8adf-3a3438217c4f?api-version=2024-01-01&t=638631898256794592&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=WMGqnLUSEB9Bemg7p9njWIOQtK5h0Iu6uMFcJv19sUE93vdENR_IbAQ--YtJQR0y9Ov3AxzDx5O6RKYg6Z0yLJTj5gHXXHINZ-7sUehFR6i-efHv21Ps1l6c_W0nodRoWWiYyAZhT3lmAVfy_kjeS4OAUakEDv5TfMik3duUNh832dOvIECc9ILnHRD_bmkE_hatz5SW4E2vPMQDWnc5Vs6S7iJPrVLE8XyOMHIHciUwJJhVPL3ufPSgn4wrd1NBE0p9KUHG-X6SP5MMP89jDQ-I0lRgVS0-sD2qzuwotMnywylRNXWJE0_nOpEYx6a5BTZrK9N7d3CFAgPN3YKE7Q&h=Y30-NJSfJc2VPje2g7Rad1qWZwpMrPqNe4ExI7CDuKA response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:42 GMT + - Sun, 29 Sep 2024 06:57:05 GMT expires: - '-1' pragma: @@ -1232,11 +1121,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - aa0e22ab-5a2d-466a-92b9-fe9782b9aa35 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3748' + - 0d540cc2-88c7-4e13-9f45-34657ace0d78 x-msedge-ref: - - 'Ref A: 5DC96FFA53744172913C5AF9F02E6340 Ref B: TYO201100113011 Ref C: 2024-07-01T06:11:42Z' + - 'Ref A: 8840EB798AF04B95ACC2A444A37EF389 Ref B: TYO201151003052 Ref C: 2024-09-29T06:57:05Z' status: code: 200 message: OK @@ -1254,28 +1141,23 @@ interactions: ParameterSetName: - --resource-group --name --vnet-name --address-prefixes User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3/subnets/thirdvnet?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"thirdvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3/subnets/thirdvnet\",\r\n - \ \"etag\": \"W/\\\"e40d536e-9d9c-478b-87fc-c30164f49d7b\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"ipamPoolPrefixAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": - \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n - \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"thirdvnet","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.Network/virtualNetworks/sbehvnettest3/subnets/thirdvnet","etag":"W/\"aa23eac3-5a79-4f05-b3e9-fafb65c7fe75\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '587' + - '514' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:43 GMT + - Sun, 29 Sep 2024 06:57:06 GMT etag: - - W/"e40d536e-9d9c-478b-87fc-c30164f49d7b" + - W/"aa23eac3-5a79-4f05-b3e9-fafb65c7fe75" expires: - '-1' pragma: @@ -1287,11 +1169,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b096ec63-c534-45fe-a370-4bc0d94c825e - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - 8ddafb61-c311-4171-8a52-5facf822df04 x-msedge-ref: - - 'Ref A: 6033EA30D2A441E1840AFE2446BA3F67 Ref B: TYO201100113011 Ref C: 2024-07-01T06:11:43Z' + - 'Ref A: 537D18812A1143579E9E2012E23E0692 Ref B: TYO201151003052 Ref C: 2024-09-29T06:57:06Z' status: code: 200 message: OK @@ -1313,39 +1193,37 @@ interactions: ParameterSetName: - --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/CheckNameAvailability?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/CheckNameAvailability?api-version=2023-01-01-preview response: body: - string: '{"nameAvailable":true,"reason":"None","message":null}' + string: '{"nameAvailable":true,"reason":"None","message":"Namespace name available"}' headers: cache-control: - no-cache content-length: - - '53' + - '75' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:45 GMT + - Sun, 29 Sep 2024 06:57:07 GMT expires: - '-1' pragma: - no-cache - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains x-cache: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' - x-ms-ratelimit-remaining-subscription-writes: - - '199' + x-ms-messaging-activity-id: + - 43da915c-4e21-4b0e-a244-421dd98afea0 + x-ms-messaging-routing-id: + - JAPANEAST|JAPANEAST|G1|2024-09-29T06:57:08 x-msedge-ref: - - 'Ref A: 2B52703BDC6746DFA6D077F99C719A6F Ref B: TYO201100114027 Ref C: 2024-07-01T06:11:45Z' + - 'Ref A: 88404DFB550D4CF8A13A153D2AA04D09 Ref B: OSA221030116047 Ref C: 2024-09-29T06:57:07Z' status: code: 200 message: OK @@ -1363,21 +1241,21 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_network000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001","name":"cli_test_sb_network000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_network","date":"2024-07-01T06:10:46Z","module":"servicebus","Creator":"v-taoxuzeng@microsoft.com","DateCreated":"2024-07-01T06:10:51Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001","name":"cli_test_sb_network000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_network","date":"2024-09-29T06:56:07Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '450' + - '375' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:46 GMT + - Sun, 29 Sep 2024 06:57:08 GMT expires: - '-1' pragma: @@ -1388,16 +1266,14 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' x-msedge-ref: - - 'Ref A: F8217661E20F45F1A86A25064C83353A Ref B: TYO201151005025 Ref C: 2024-07-01T06:11:47Z' + - 'Ref A: BF53288EF8EB4054882A418B6CF7BDF5 Ref B: TYO201151006054 Ref C: 2024-09-29T06:57:08Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "westus", "sku": {"name": "Premium", - "tier": "Premium"}, "tags": {"{tag1": "value1}"}}' + body: '{"location": "westus", "sku": {"name": "Premium", "tier": "Premium"}, "tags": + {"{tag1": "value1}"}}' headers: Accept: - application/json @@ -1408,27 +1284,27 @@ interactions: Connection: - keep-alive Content-Length: - - '129' + - '99' Content-Type: - application/json ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-07-01T06:11:51.5458738Z","updatedAt":"2024-07-01T06:11:51.5458738Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:57:12.3566502Z","updatedAt":"2024-09-29T06:57:12.3566502Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '776' + - '924' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:51 GMT + - Sun, 29 Sep 2024 06:57:12 GMT expires: - '-1' pragma: @@ -1440,15 +1316,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 491f0dd6-a760-411f-93ca-8ac3947897f8 + - fed88dbb-f9d1-4669-ab80-11cea2370f43 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G2|2024-07-01T06:11:51 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - WESTUS|WESTUS|G1|2024-09-29T06:57:12 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1199' x-msedge-ref: - - 'Ref A: FB8E6EF611E44C44A7F07EE20C519CAD Ref B: TYO201100116035 Ref C: 2024-07-01T06:11:48Z' + - 'Ref A: C78AB8AFB6FF404DBBC77C301027E3C8 Ref B: TYO201151003054 Ref C: 2024-09-29T06:57:08Z' status: code: 201 message: Created @@ -1466,21 +1340,21 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-07-01T06:11:51.5458738Z","updatedAt":"2024-07-01T06:11:51.5458738Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:57:12.3566502Z","updatedAt":"2024-09-29T06:57:12.3566502Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '776' + - '924' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:11:52 GMT + - Sun, 29 Sep 2024 06:57:13 GMT expires: - '-1' pragma: @@ -1492,13 +1366,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - b9d6c87d-6f11-4b54-87f2-680f4a0b7285 + - 987866f3-aec9-4627-89b3-aac80234c84c x-ms-messaging-routing-id: - - WESTUS|WESTUS|G1|2024-07-01T06:11:53 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G4|2024-09-29T06:57:13 x-msedge-ref: - - 'Ref A: 24AFD49B65C44535966FE2E17F6B4D65 Ref B: TYO201100116035 Ref C: 2024-07-01T06:11:52Z' + - 'Ref A: 9CC5A2AD13604E6BB3547FAF3E40708D Ref B: TYO201151003054 Ref C: 2024-09-29T06:57:13Z' status: code: 200 message: OK @@ -1516,21 +1388,21 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-07-01T06:11:51.5458738Z","updatedAt":"2024-07-01T06:11:51.5458738Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:57:12.3566502Z","updatedAt":"2024-09-29T06:57:12.3566502Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '776' + - '924' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:12:23 GMT + - Sun, 29 Sep 2024 06:57:44 GMT expires: - '-1' pragma: @@ -1542,13 +1414,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - d8acc09e-fe73-447f-8e39-0039de7a65c9 + - b27b4214-ffea-4376-a537-38d2f16726fa x-ms-messaging-routing-id: - - WESTUS|WESTUS|G2|2024-07-01T06:12:24 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G2|2024-09-29T06:57:44 x-msedge-ref: - - 'Ref A: 75598CBD0AA3408F8659128507D863CB Ref B: TYO201100116035 Ref C: 2024-07-01T06:12:23Z' + - 'Ref A: EE65E44A36BA423E99971E9C3241C1F8 Ref B: TYO201151003054 Ref C: 2024-09-29T06:57:43Z' status: code: 200 message: OK @@ -1566,21 +1436,21 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-01T06:11:51.5458738Z","updatedAt":"2024-07-01T06:12:48.1250368Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:57:12.3566502Z","updatedAt":"2024-09-29T06:58:09.176095Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '775' + - '920' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:12:54 GMT + - Sun, 29 Sep 2024 06:58:15 GMT expires: - '-1' pragma: @@ -1592,13 +1462,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - aa94e2a4-9fb8-4434-a7c9-48ee6ba13f80 + - 1c377a73-6b4b-4bb4-a49c-d29614c97e76 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G0|2024-07-01T06:12:54 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G0|2024-09-29T06:58:15 x-msedge-ref: - - 'Ref A: BA327C51D36542AA8F70E416F9EE9325 Ref B: TYO201100116035 Ref C: 2024-07-01T06:12:54Z' + - 'Ref A: 5B7D6DBFF1C7495E95EC28D4C2442D71 Ref B: TYO201151003054 Ref C: 2024-09-29T06:58:14Z' status: code: 200 message: OK @@ -1616,21 +1484,21 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-01T06:11:51.5458738Z","updatedAt":"2024-07-01T06:12:48.1250368Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002","name":"servicebus-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-cli000002","serviceBusEndpoint":"https://servicebus-cli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:57:12.3566502Z","updatedAt":"2024-09-29T06:58:09.176095Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '775' + - '920' content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:12:55 GMT + - Sun, 29 Sep 2024 06:58:15 GMT expires: - '-1' pragma: @@ -1642,13 +1510,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - b7f7f60d-52cf-4c9c-89e0-894517a35743 + - 4bfd44ca-15ed-46b0-bab7-070ba26b7186 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G4|2024-07-01T06:12:56 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G2|2024-09-29T06:58:16 x-msedge-ref: - - 'Ref A: C478E90D203D409CACC965C741774B1D Ref B: TYO201151001031 Ref C: 2024-07-01T06:12:55Z' + - 'Ref A: 0D39A2AE35F8443497F39487C7D597CA Ref B: OSA221030113029 Ref C: 2024-09-29T06:58:15Z' status: code: 200 message: OK @@ -1666,7 +1532,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets?api-version=2022-10-01-preview response: @@ -1680,7 +1546,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:12:57 GMT + - Sun, 29 Sep 2024 06:58:16 GMT expires: - '-1' pragma: @@ -1692,13 +1558,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 219d4cba-b471-49aa-8a06-0d7e0ccb69c2 + - 9502f9c8-fae5-4b18-9f86-53e8ee12ddd2 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:12:58 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G3|2024-09-29T06:58:17 x-msedge-ref: - - 'Ref A: 8984C236A1594DFA9A86D9FAAF16F6D5 Ref B: TYO201151004034 Ref C: 2024-07-01T06:12:57Z' + - 'Ref A: F121380A0CF24D5481861CD4210C0297 Ref B: TYO201100114049 Ref C: 2024-09-29T06:58:16Z' status: code: 200 message: OK @@ -1716,7 +1580,7 @@ interactions: ParameterSetName: - --resource-group --name --ip-rule --ip-rule User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -1730,7 +1594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:12:59 GMT + - Sun, 29 Sep 2024 06:58:18 GMT expires: - '-1' pragma: @@ -1742,13 +1606,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - d5fc9628-9bad-4b5c-8c65-a8886e509db7 + - 078e4c5c-55a5-4871-9491-dc7ddbecc6a6 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:13:00 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G3|2024-09-29T06:58:18 x-msedge-ref: - - 'Ref A: A063A3840AB24452903CCE9B84C3AE36 Ref B: TYO201151003025 Ref C: 2024-07-01T06:12:59Z' + - 'Ref A: 14E8BEE5D4FC477E80BF5A0E537FC793 Ref B: OSA221030115035 Ref C: 2024-09-29T06:58:17Z' status: code: 200 message: OK @@ -1766,7 +1628,7 @@ interactions: ParameterSetName: - --resource-group --name --ip-rule --ip-rule User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -1780,7 +1642,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:13:01 GMT + - Sun, 29 Sep 2024 06:58:19 GMT expires: - '-1' pragma: @@ -1792,13 +1654,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 9a91621a-9a81-43a9-9d37-bc452f666be6 + - fd1d4eef-f42e-4650-b990-cc7fb009d535 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:13:01 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G3|2024-09-29T06:58:19 x-msedge-ref: - - 'Ref A: 91973C1D61E046C4AB569C129DDBC25C Ref B: TYO201151006009 Ref C: 2024-07-01T06:13:00Z' + - 'Ref A: 6A119C71470947DBB298108E9D5BB6CB Ref B: TYO201151002011 Ref C: 2024-09-29T06:58:18Z' status: code: 200 message: OK @@ -1822,7 +1682,7 @@ interactions: ParameterSetName: - --resource-group --name --ip-rule --ip-rule User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -1836,7 +1696,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:13:18 GMT + - Sun, 29 Sep 2024 06:58:37 GMT expires: - '-1' pragma: @@ -1848,15 +1708,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 40a22973-09fc-4cb7-91e3-0a794f872898 + - 98a4ae21-68ba-4d03-9ff4-405b29091229 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G2|2024-07-01T06:13:18 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G0|2024-09-29T06:58:36 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: 2DEBA354B89C44E8BD72B1D32D90EFF4 Ref B: TYO201151006009 Ref C: 2024-07-01T06:13:02Z' + - 'Ref A: 291C0D4B66ED49F581E1F2A60FC5119B Ref B: TYO201151002011 Ref C: 2024-09-29T06:58:19Z' status: code: 200 message: OK @@ -1874,7 +1732,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -1888,7 +1746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:13:20 GMT + - Sun, 29 Sep 2024 06:58:38 GMT expires: - '-1' pragma: @@ -1900,13 +1758,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 3c48c911-bf47-48f5-847a-32c658eb44b0 + - fb5d4e91-c5d6-4ea7-be46-15f854cd588f x-ms-messaging-routing-id: - - WESTUS|WESTUS|G1|2024-07-01T06:13:20 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G4|2024-09-29T06:58:38 x-msedge-ref: - - 'Ref A: 9053B211FCE04D3EA3FABB505A8FD290 Ref B: TYO201151006034 Ref C: 2024-07-01T06:13:19Z' + - 'Ref A: FEF164EB38A24FF0A0330011FBFFB764 Ref B: OSA221030115021 Ref C: 2024-09-29T06:58:37Z' status: code: 200 message: OK @@ -1924,7 +1780,7 @@ interactions: ParameterSetName: - --resource-group --name --ip-rule User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -1938,7 +1794,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:13:22 GMT + - Sun, 29 Sep 2024 06:58:39 GMT expires: - '-1' pragma: @@ -1950,13 +1806,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - dd2d35e6-f136-4fa9-97da-191283ef7fd9 + - 293d011b-ab55-4917-b0e4-0c030ccf2e21 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G0|2024-07-01T06:13:22 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G0|2024-09-29T06:58:39 x-msedge-ref: - - 'Ref A: 4AAD51C721C044AAA4E80023F40E7215 Ref B: TYO201151005042 Ref C: 2024-07-01T06:13:21Z' + - 'Ref A: 6EDB407F11EA4AEB9BEC2355B74934C2 Ref B: OSA221030116021 Ref C: 2024-09-29T06:58:38Z' status: code: 200 message: OK @@ -1974,7 +1828,7 @@ interactions: ParameterSetName: - --resource-group --name --ip-rule User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -1988,7 +1842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:13:23 GMT + - Sun, 29 Sep 2024 06:58:40 GMT expires: - '-1' pragma: @@ -2000,13 +1854,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - f6d4d4e8-6892-4bae-a0c0-283f8a1b2741 + - 64989446-8dde-44ec-a923-f2541f77c95d x-ms-messaging-routing-id: - - WESTUS|WESTUS|G4|2024-07-01T06:13:24 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G0|2024-09-29T06:58:40 x-msedge-ref: - - 'Ref A: 22534712D21C40F69161F357DED7E6D6 Ref B: TYO201100114011 Ref C: 2024-07-01T06:13:23Z' + - 'Ref A: E94184B282B640EDAE2511E0EEF7B1D2 Ref B: OSA221030114047 Ref C: 2024-09-29T06:58:40Z' status: code: 200 message: OK @@ -2030,7 +1882,7 @@ interactions: ParameterSetName: - --resource-group --name --ip-rule User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2044,7 +1896,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:13:40 GMT + - Sun, 29 Sep 2024 06:58:57 GMT expires: - '-1' pragma: @@ -2056,15 +1908,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - ac711b2b-0369-4041-88a6-cd7d4ef1b5b1 + - 00fc1218-1869-4ab6-8c8f-13cc51c0b31c x-ms-messaging-routing-id: - - WESTUS|WESTUS|G4|2024-07-01T06:13:41 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G0|2024-09-29T06:58:57 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: 496EBDBE8F074D739D0D235765AB04DB Ref B: TYO201100114011 Ref C: 2024-07-01T06:13:24Z' + - 'Ref A: F100BA16D0E842428952FB4B08799550 Ref B: OSA221030114047 Ref C: 2024-09-29T06:58:41Z' status: code: 200 message: OK @@ -2082,7 +1932,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2096,7 +1946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:13:42 GMT + - Sun, 29 Sep 2024 06:58:58 GMT expires: - '-1' pragma: @@ -2108,13 +1958,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - fa750165-de0f-4535-b99f-0185c36a94bc + - fbcda5d9-73da-4a0b-98f8-cc8dedcd30e5 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G2|2024-07-01T06:13:43 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G1|2024-09-29T06:58:58 x-msedge-ref: - - 'Ref A: 74C191DA8DC24683A2D017B9B9A4789C Ref B: TYO201100115045 Ref C: 2024-07-01T06:13:41Z' + - 'Ref A: 6ABC80113677430B89B0CA87D6FAA32D Ref B: TYO201151005054 Ref C: 2024-09-29T06:58:57Z' status: code: 200 message: OK @@ -2132,7 +1980,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2146,7 +1994,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:13:44 GMT + - Sun, 29 Sep 2024 06:58:59 GMT expires: - '-1' pragma: @@ -2158,13 +2006,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 5f1e37a8-3489-4d08-9f5b-72f67c87fe92 + - 3a64a827-9bff-4daf-a8e4-34add766f168 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G1|2024-07-01T06:13:44 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G4|2024-09-29T06:59:00 x-msedge-ref: - - 'Ref A: 6F35034363AE4E8098B3650F74318163 Ref B: TYO201100116031 Ref C: 2024-07-01T06:13:43Z' + - 'Ref A: 69A7D6D4D609453594E60EA4AFB665DD Ref B: OSA221030116031 Ref C: 2024-09-29T06:58:59Z' status: code: 200 message: OK @@ -2190,7 +2036,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2204,7 +2050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:14:14 GMT + - Sun, 29 Sep 2024 06:59:29 GMT expires: - '-1' pragma: @@ -2216,15 +2062,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 70d15ac1-635d-4bfb-afd5-a5430ba695e2 + - 3950b2ec-cc6e-4459-b428-0a1e1da6f491 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G2|2024-07-01T06:14:15 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G4|2024-09-29T06:59:30 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: 06DBDF24320343BC85F8205CA316C371 Ref B: TYO201100116031 Ref C: 2024-07-01T06:13:45Z' + - 'Ref A: 9493C98A2FB74D1FB3C6D190AE35EE8C Ref B: OSA221030116031 Ref C: 2024-09-29T06:59:00Z' status: code: 200 message: OK @@ -2242,7 +2086,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2256,7 +2100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:14:16 GMT + - Sun, 29 Sep 2024 06:59:31 GMT expires: - '-1' pragma: @@ -2268,13 +2112,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 9af7dc21-b6f5-4615-9acd-ad5fafa9e99a + - e21c87f0-00df-41ed-aeea-c978eb3dbd2c x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:14:17 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G3|2024-09-29T06:59:31 x-msedge-ref: - - 'Ref A: 8B7FCC68F1CD44CDABC7594C85F8C2AC Ref B: TYO201151005052 Ref C: 2024-07-01T06:14:15Z' + - 'Ref A: C7E9F4DA0CE641E8A831163F5462BCCD Ref B: TYO201100116047 Ref C: 2024-09-29T06:59:31Z' status: code: 200 message: OK @@ -2292,7 +2134,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2306,7 +2148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:14:18 GMT + - Sun, 29 Sep 2024 06:59:33 GMT expires: - '-1' pragma: @@ -2318,13 +2160,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - ce11a086-541b-44f7-b270-6e86b16ef928 + - 8fe1314b-933e-4946-9d6f-c66a6eb106fe x-ms-messaging-routing-id: - - WESTUS|WESTUS|G4|2024-07-01T06:14:18 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G4|2024-09-29T06:59:33 x-msedge-ref: - - 'Ref A: 5D074C1CBC42478CA6D1C45AF49265DA Ref B: TYO201100115047 Ref C: 2024-07-01T06:14:17Z' + - 'Ref A: 691641BE9A3A41459101B8321EAB1638 Ref B: TYO201151004025 Ref C: 2024-09-29T06:59:32Z' status: code: 200 message: OK @@ -2351,7 +2191,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2365,7 +2205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:14:48 GMT + - Sun, 29 Sep 2024 07:00:03 GMT expires: - '-1' pragma: @@ -2377,15 +2217,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 009b8a78-69da-4f49-abe0-8bcfaab3f878 + - d6c416b2-cfff-413f-9b53-40f00516dd4d x-ms-messaging-routing-id: - - WESTUS|WESTUS|G1|2024-07-01T06:14:48 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G0|2024-09-29T07:00:03 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: E2E6C025D612455BB4592ECAEC339789 Ref B: TYO201100115047 Ref C: 2024-07-01T06:14:19Z' + - 'Ref A: 4331AA2F64D0475C8ECD492DD0D4B9DF Ref B: TYO201151004025 Ref C: 2024-09-29T06:59:33Z' status: code: 200 message: OK @@ -2403,7 +2241,7 @@ interactions: ParameterSetName: - --resource-group --name --public-network-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2417,7 +2255,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:14:49 GMT + - Sun, 29 Sep 2024 07:00:04 GMT expires: - '-1' pragma: @@ -2429,13 +2267,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - c7112ad8-1aac-4548-98e8-d728f20673d9 + - 30913b79-f760-440c-9f8a-e8bd83ef3bd3 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G1|2024-07-01T06:14:50 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G3|2024-09-29T07:00:05 x-msedge-ref: - - 'Ref A: 73FEF88DB0BE4635A9F57789F1C2C0F9 Ref B: TYO201100114011 Ref C: 2024-07-01T06:14:49Z' + - 'Ref A: 061E45FCA158444DB72219B19A2522B1 Ref B: OSA221030113023 Ref C: 2024-09-29T07:00:04Z' status: code: 200 message: OK @@ -2462,7 +2298,7 @@ interactions: ParameterSetName: - --resource-group --name --public-network-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2476,7 +2312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:15:13 GMT + - Sun, 29 Sep 2024 07:00:21 GMT expires: - '-1' pragma: @@ -2488,15 +2324,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 9b8003bb-c8fe-438b-af4c-3ce6bd5b2d28 + - eb3c868b-be56-42ef-9995-6ee1fdc340d5 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:15:14 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G1|2024-09-29T07:00:22 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1198' x-msedge-ref: - - 'Ref A: C22CFDC22C80419A9A457AAE952E5B19 Ref B: TYO201100114011 Ref C: 2024-07-01T06:14:50Z' + - 'Ref A: 47B946A4FE1E467EB4AEA3F1F1EB0715 Ref B: OSA221030113023 Ref C: 2024-09-29T07:00:05Z' status: code: 200 message: OK @@ -2514,7 +2348,7 @@ interactions: ParameterSetName: - --resource-group --name --public-network-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2528,7 +2362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:15:20 GMT + - Sun, 29 Sep 2024 07:00:23 GMT expires: - '-1' pragma: @@ -2540,13 +2374,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 6e9731ac-b7b9-4312-8252-f754c2eb7b06 + - fa6cbe4d-3ad5-4e9d-806d-ae2f776162a0 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:15:20 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G1|2024-09-29T07:00:23 x-msedge-ref: - - 'Ref A: 67CC211D8FFB440EA7CD129E92C876A3 Ref B: TYO201151005040 Ref C: 2024-07-01T06:15:19Z' + - 'Ref A: 8B0A7B68047C4DE0BE7573723E09DE80 Ref B: TYO201100115033 Ref C: 2024-09-29T07:00:22Z' status: code: 200 message: OK @@ -2573,7 +2405,7 @@ interactions: ParameterSetName: - --resource-group --name --public-network-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2587,7 +2419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:15:45 GMT + - Sun, 29 Sep 2024 07:00:40 GMT expires: - '-1' pragma: @@ -2599,15 +2431,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 5919b37b-338c-4494-a957-f9d4e28a19b7 + - ceae05f8-2d4d-40d2-8b9c-02f87f5c6e49 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:15:45 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G1|2024-09-29T07:00:40 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: 2F73B744F7B249A3B5C9110727D81108 Ref B: TYO201151005040 Ref C: 2024-07-01T06:15:21Z' + - 'Ref A: 5A73E5D6464E48B98B8C9B8E92A99756 Ref B: TYO201100115033 Ref C: 2024-09-29T07:00:23Z' status: code: 200 message: OK @@ -2625,7 +2455,7 @@ interactions: ParameterSetName: - --resource-group --name --public-network-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2639,7 +2469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:15:46 GMT + - Sun, 29 Sep 2024 07:00:41 GMT expires: - '-1' pragma: @@ -2651,13 +2481,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 7cc860b9-969c-4302-8c76-91e30d9d8a4a + - 3dac02e4-6fb6-489d-b013-192b692ecde3 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:15:46 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G0|2024-09-29T07:00:41 x-msedge-ref: - - 'Ref A: 07B3A8378C5F40F1A329FA3EF400D8A2 Ref B: TYO201151004042 Ref C: 2024-07-01T06:15:45Z' + - 'Ref A: 284315F4CED7454591AA2F1FDCA3E6D8 Ref B: OSA221030115047 Ref C: 2024-09-29T07:00:40Z' status: code: 200 message: OK @@ -2684,7 +2512,7 @@ interactions: ParameterSetName: - --resource-group --name --public-network-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2698,7 +2526,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:15:48 GMT + - Sun, 29 Sep 2024 07:00:42 GMT expires: - '-1' pragma: @@ -2710,15 +2538,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 14a9b700-79f2-4c3f-80a1-d832fcca896b + - 5cf23b9b-1ed7-416f-8958-2508e5305508 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:15:48 - x-ms-ratelimit-remaining-subscription-global-writes: - - '2999' + - WESTUS|WESTUS|G1|2024-09-29T07:00:42 x-ms-ratelimit-remaining-subscription-writes: - - '199' + - '1198' x-msedge-ref: - - 'Ref A: 6B6AF51413804D69A369333C419FEC6A Ref B: TYO201151004042 Ref C: 2024-07-01T06:15:47Z' + - 'Ref A: E5AA92B2796745A5B66BD68E4A898B73 Ref B: OSA221030115047 Ref C: 2024-09-29T07:00:41Z' status: code: 200 message: OK @@ -2736,7 +2562,7 @@ interactions: ParameterSetName: - --resource-group --name --default-action User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2750,7 +2576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:15:50 GMT + - Sun, 29 Sep 2024 07:00:43 GMT expires: - '-1' pragma: @@ -2762,13 +2588,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - d59f0985-9ac8-4b34-8c24-08b970b88bfb + - a042fd40-5572-4cf9-ae57-986155a54ddf x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:15:50 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G0|2024-09-29T07:00:44 x-msedge-ref: - - 'Ref A: 1E6DC3F4DAEC45979A178C2E5D68D583 Ref B: TYO201100113049 Ref C: 2024-07-01T06:15:49Z' + - 'Ref A: 718097B70AF94E718858C301EE3253A4 Ref B: TYO201151004040 Ref C: 2024-09-29T07:00:43Z' status: code: 200 message: OK @@ -2795,7 +2619,7 @@ interactions: ParameterSetName: - --resource-group --name --default-action User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2809,7 +2633,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:16:13 GMT + - Sun, 29 Sep 2024 07:01:00 GMT expires: - '-1' pragma: @@ -2821,15 +2645,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 148e2504-42f0-4524-b0c5-85c4d966dc90 + - d12f00a1-8bc9-4e22-9f33-9e4b4ddae769 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G0|2024-07-01T06:16:13 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G0|2024-09-29T07:01:01 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: 5039ABA8DAFB4ACE90DBA21638EA252F Ref B: TYO201100113049 Ref C: 2024-07-01T06:15:50Z' + - 'Ref A: 01E70734BE8E4025AD5D79CB8E77D0C0 Ref B: TYO201151004040 Ref C: 2024-09-29T07:00:44Z' status: code: 200 message: OK @@ -2847,7 +2669,7 @@ interactions: ParameterSetName: - --resource-group --name --default-action User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2861,7 +2683,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:16:15 GMT + - Sun, 29 Sep 2024 07:01:01 GMT expires: - '-1' pragma: @@ -2873,13 +2695,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 3823859e-050d-4c6e-9b9a-13b1fd09cf95 + - 7c3ee563-10eb-443b-8c2e-c864b8f2abfa x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:16:16 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G1|2024-09-29T07:01:02 x-msedge-ref: - - 'Ref A: 23988DC96FAA4CEE98F01BCBC1F49C1F Ref B: TYO201151005060 Ref C: 2024-07-01T06:16:14Z' + - 'Ref A: 543313ACE0B54CEE8375B9AD336DF184 Ref B: OSA221030114027 Ref C: 2024-09-29T07:01:01Z' status: code: 200 message: OK @@ -2906,7 +2726,7 @@ interactions: ParameterSetName: - --resource-group --name --default-action User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2920,7 +2740,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:16:40 GMT + - Sun, 29 Sep 2024 07:01:18 GMT expires: - '-1' pragma: @@ -2932,15 +2752,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00616678-3a70-4dba-bdf2-ecfb1e9ca5c6 + - 06629bb0-58aa-47d4-b772-731f397445a5 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G4|2024-07-01T06:16:40 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G2|2024-09-29T07:01:19 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: 81660BC02D464376921F9E7836174FF5 Ref B: TYO201151005060 Ref C: 2024-07-01T06:16:16Z' + - 'Ref A: A680948C170840C4BC27913B80797851 Ref B: OSA221030114027 Ref C: 2024-09-29T07:01:02Z' status: code: 200 message: OK @@ -2958,7 +2776,7 @@ interactions: ParameterSetName: - --resource-group --name --enable-trusted-service-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -2972,7 +2790,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:16:42 GMT + - Sun, 29 Sep 2024 07:01:21 GMT expires: - '-1' pragma: @@ -2984,13 +2802,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - c6dcfb3f-cabe-4cef-b682-07fa3266b71a + - 440bb5e4-96b0-4615-9a1b-bea909fa9950 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:16:42 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G4|2024-09-29T07:01:21 x-msedge-ref: - - 'Ref A: 283E5E4E826F4C16A13B0D0EE4E6F907 Ref B: TYO201151002009 Ref C: 2024-07-01T06:16:41Z' + - 'Ref A: 7B74E7AA2E0A4E12A22CB65FC4F3DD15 Ref B: OSA221030113031 Ref C: 2024-09-29T07:01:20Z' status: code: 200 message: OK @@ -3017,7 +2833,7 @@ interactions: ParameterSetName: - --resource-group --name --enable-trusted-service-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -3031,7 +2847,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:17:06 GMT + - Sun, 29 Sep 2024 07:01:37 GMT expires: - '-1' pragma: @@ -3043,15 +2859,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 94d29777-7f10-4d29-9db1-6d348e90be96 + - b7b9c56c-c618-4e2f-b720-c9707fd00cc7 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G2|2024-07-01T06:17:06 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G4|2024-09-29T07:01:37 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: 942C5E260A4045B9A462BAD49C0C95C1 Ref B: TYO201151002009 Ref C: 2024-07-01T06:16:42Z' + - 'Ref A: F755EB63CBA94569B81A2DE1E34DCD92 Ref B: OSA221030113031 Ref C: 2024-09-29T07:01:21Z' status: code: 200 message: OK @@ -3069,7 +2883,7 @@ interactions: ParameterSetName: - --resource-group --name --enable-trusted-service-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -3083,7 +2897,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:17:08 GMT + - Sun, 29 Sep 2024 07:01:38 GMT expires: - '-1' pragma: @@ -3095,13 +2909,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - e90e9c21-adb4-4f03-b9be-46871287fd81 + - 0cf213ba-a0cd-4f47-bd7a-db45ed7cf65b x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:17:09 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G0|2024-09-29T07:01:39 x-msedge-ref: - - 'Ref A: 69BCF80A8BD7498799C42800677B5EF5 Ref B: TYO201100115017 Ref C: 2024-07-01T06:17:08Z' + - 'Ref A: 044B6528F6834E1993E0ECC8D434D1F1 Ref B: OSA221030116039 Ref C: 2024-09-29T07:01:38Z' status: code: 200 message: OK @@ -3128,7 +2940,7 @@ interactions: ParameterSetName: - --resource-group --name --enable-trusted-service-access User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -3142,7 +2954,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:17:31 GMT + - Sun, 29 Sep 2024 07:01:55 GMT expires: - '-1' pragma: @@ -3154,15 +2966,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 04ea952a-62cd-4d9c-b7b1-ec5c4673417a + - 2a6ab912-cfcc-4792-9757-6f5763d54e3f x-ms-messaging-routing-id: - - WESTUS|WESTUS|G1|2024-07-01T06:17:32 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G0|2024-09-29T07:01:55 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: 2DD0C916E6D042429712F91FBB40D20F Ref B: TYO201100115017 Ref C: 2024-07-01T06:17:09Z' + - 'Ref A: 7C61A9EEE05644F68BD4A19C77599941 Ref B: OSA221030116039 Ref C: 2024-09-29T07:01:39Z' status: code: 200 message: OK @@ -3180,7 +2990,7 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets?api-version=2022-10-01-preview response: @@ -3194,7 +3004,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:17:34 GMT + - Sun, 29 Sep 2024 07:01:56 GMT expires: - '-1' pragma: @@ -3206,13 +3016,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - a14396c3-267d-4e2f-8abf-959d477ce521 + - 0aa165d4-b601-46b7-bf17-7dccc42742dc x-ms-messaging-routing-id: - - WESTUS|WESTUS|G4|2024-07-01T06:17:34 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G2|2024-09-29T07:01:57 x-msedge-ref: - - 'Ref A: 3BD094C591B4492FAE1EEB684BE72951 Ref B: TYO201100116025 Ref C: 2024-07-01T06:17:33Z' + - 'Ref A: 99BE9F8C55BB4E39B90ACA2E36DE5274 Ref B: OSA221030116021 Ref C: 2024-09-29T07:01:56Z' status: code: 200 message: OK @@ -3230,7 +3038,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -3244,7 +3052,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:17:35 GMT + - Sun, 29 Sep 2024 07:01:57 GMT expires: - '-1' pragma: @@ -3256,13 +3064,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 9470fb8c-f394-465d-883a-a7fc7924c2a7 + - 07368277-82ea-4561-9c72-e0211f865c26 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G2|2024-07-01T06:17:36 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G0|2024-09-29T07:01:58 x-msedge-ref: - - 'Ref A: 3AF97D3BFA9E496296EB3D4CADA74B02 Ref B: TYO201100116033 Ref C: 2024-07-01T06:17:35Z' + - 'Ref A: 0C653B2145BC4DB1B60017AA82583699 Ref B: OSA221030115035 Ref C: 2024-09-29T07:01:57Z' status: code: 200 message: OK @@ -3280,7 +3086,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -3294,7 +3100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:17:38 GMT + - Sun, 29 Sep 2024 07:01:59 GMT expires: - '-1' pragma: @@ -3306,13 +3112,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - b73f0a02-ece8-4610-98ef-943781165482 + - 01da371f-67d4-4c7d-b1f0-c6ee6a46d1c4 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G1|2024-07-01T06:17:38 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G1|2024-09-29T07:01:59 x-msedge-ref: - - 'Ref A: 8C06C577570644E8828125F42E8E1EC3 Ref B: TYO201151005042 Ref C: 2024-07-01T06:17:37Z' + - 'Ref A: AD6DAB27577943CEAF17BFA4BADF8490 Ref B: TYO201151005054 Ref C: 2024-09-29T07:01:58Z' status: code: 200 message: OK @@ -3338,7 +3142,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -3352,7 +3156,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:18:02 GMT + - Sun, 29 Sep 2024 07:02:17 GMT expires: - '-1' pragma: @@ -3364,15 +3168,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 3318d94e-540f-46b6-9b1c-2bdf3f86b4bd + - 38337b8c-09a3-4e87-97e6-e9a6b9d0b566 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G2|2024-07-01T06:18:02 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G2|2024-09-29T07:02:17 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: C1573D98F293484885B7DD47A3E5A3DB Ref B: TYO201151005042 Ref C: 2024-07-01T06:17:38Z' + - 'Ref A: BD3FE337A60D4B868E94B71FBE158F22 Ref B: TYO201151005054 Ref C: 2024-09-29T07:01:59Z' status: code: 200 message: OK @@ -3390,7 +3192,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -3404,7 +3206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:18:03 GMT + - Sun, 29 Sep 2024 07:02:17 GMT expires: - '-1' pragma: @@ -3416,13 +3218,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 318ea154-e482-43d2-b71d-2650e1865d08 + - a3098305-f6bb-46f9-92de-424da94f3fb3 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:18:04 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G1|2024-09-29T07:02:18 x-msedge-ref: - - 'Ref A: CD871A27BAF341CC8973369FBCD23F42 Ref B: TYO201151001040 Ref C: 2024-07-01T06:18:03Z' + - 'Ref A: 24448E359C7D4792B7FDC577DE3C9D42 Ref B: TYO201151004040 Ref C: 2024-09-29T07:02:17Z' status: code: 200 message: OK @@ -3440,7 +3240,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -3454,7 +3254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:18:05 GMT + - Sun, 29 Sep 2024 07:02:19 GMT expires: - '-1' pragma: @@ -3466,13 +3266,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 96f44a90-af95-4181-bcd3-3dcca3fe2ba8 + - 66d8a2d0-2273-4950-baa9-00cd027a35a5 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:18:05 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G1|2024-09-29T07:02:20 x-msedge-ref: - - 'Ref A: B06EE9DEBA0F4BA1BFD49F4CFB604414 Ref B: TYO201151001034 Ref C: 2024-07-01T06:18:04Z' + - 'Ref A: D6BA58F97693485981E708F97680AA9B Ref B: TYO201151001036 Ref C: 2024-09-29T07:02:18Z' status: code: 200 message: OK @@ -3497,7 +3295,7 @@ interactions: ParameterSetName: - --resource-group --name --subnet User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002/networkRuleSets/default?api-version=2022-10-01-preview response: @@ -3511,7 +3309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 01 Jul 2024 06:18:28 GMT + - Sun, 29 Sep 2024 07:02:37 GMT expires: - '-1' pragma: @@ -3523,15 +3321,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - e90ac4c2-2c81-4e7c-bcf6-08babfd80edd + - 5fe88bad-c380-4be0-bd21-03dab44f64ad x-ms-messaging-routing-id: - - WESTUS|WESTUS|G3|2024-07-01T06:18:28 - x-ms-ratelimit-remaining-subscription-global-writes: - - '3000' + - WESTUS|WESTUS|G1|2024-09-29T07:02:37 x-ms-ratelimit-remaining-subscription-writes: - - '200' + - '1199' x-msedge-ref: - - 'Ref A: 6036236A46734B3AA43FC0010ACEF16D Ref B: TYO201151001034 Ref C: 2024-07-01T06:18:06Z' + - 'Ref A: D587773697DA462EBCF1E3B5DC78917A Ref B: TYO201151001036 Ref C: 2024-09-29T07:02:20Z' status: code: 200 message: OK @@ -3551,9 +3347,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_network000001/providers/Microsoft.ServiceBus/namespaces/servicebus-cli000002?api-version=2023-01-01-preview response: body: string: '' @@ -3563,11 +3359,11 @@ interactions: content-length: - '0' date: - - Mon, 01 Jul 2024 06:18:30 GMT + - Sun, 29 Sep 2024 07:02:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/d1ca20ee-a7f7-4cbc-a9d4-5dcfdb9fedb4?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2022-10-01-preview&operationType=Deleted&t=638554115116490266&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=gTTlfunZDBO1cpiz7NWX4sJ068cHFNaCVl-BrEbxMF7tVesZy6kPFXvBzcQbJ3g2Zu7IXaiStLhnfwughF4qqSH5YaQ-n8FrdSTFJt1jK8JfM2sNRo44YmnoChFWkHhW5YRD5ENL4ojs62YGpyzZPoLx-0PE29Vgbg2F8_Plqc8EPZ6HRuYj1r3f4T2OipaOickPa9xPQV151z8wRerLQIdYxLS1lNRpyGBS7Pmm0kWTi1LhHU_yFfH1Q3be47-4UUUP3VTZxP9NelhRaDLO8DHNr76A8nbXd7-7HgaQ_shwrM7snwxcGINRlogHFT-I_q1yaP6D9IzGwuLdB3RZ1g&h=-pJLocRwHKxewEZzDZ5RSzc7Qz7PedOTQ553-5DYy7g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/0b7ab5fb-112a-409d-ad93-8218b1979c64?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631901602517491&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=PpAdHdS3N841vJvtIwKwQIwVg6BwQ-fR4Zz0KRMmGj4EjAXTLoDV4NWZY81b2Xn0Z-G2pxLKR6cYoHV5Q-82Qc-jRb52aweysU0ILODJCAWSkli7zmWnXJLcMBWRr_D7RlhuXFUGQg_1w_Po2JYThzLAGY_89RYFRtpUVtwd24TnMXQ-wmH9A6H3nuO7MF9Ef57_gw8h4suazVN8m_gDBep7I8dJVUT91VVXwOZeCttZyagMpHV-u2eP_avFQrrynfFnvSetX9Fu6MUFEWSDp2EfNGMyzUHx9j6wihQFu7yGLpCKFeCSI8WQXUCF8_H7D9LlzahSHp_eLFYhquAMdQ&h=Pn1IzPH_maTksxlSCcqy4fjXPuz90jnCWe1lJ24caOM pragma: - no-cache strict-transport-security: @@ -3577,15 +3373,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000010808 + - 00000001-0000-0000-0002-000000001300 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G1|2024-07-01T06:18:31 + - WESTUS|WESTUS|G3|2024-09-29T07:02:40 x-ms-ratelimit-remaining-subscription-deletes: - - '199' - x-ms-ratelimit-remaining-subscription-global-deletes: - - '2999' + - '14999' x-msedge-ref: - - 'Ref A: 427BA85838114E6CB7AB7A80524CCA6F Ref B: TYO201100117027 Ref C: 2024-07-01T06:18:29Z' + - 'Ref A: A6F8E1C6D40B4404A2B7CA577C68C6C9 Ref B: OSA221030116039 Ref C: 2024-09-29T07:02:38Z' status: code: 202 message: Accepted @@ -3603,9 +3397,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/d1ca20ee-a7f7-4cbc-a9d4-5dcfdb9fedb4?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2022-10-01-preview&operationType=Deleted&t=638554115116490266&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=gTTlfunZDBO1cpiz7NWX4sJ068cHFNaCVl-BrEbxMF7tVesZy6kPFXvBzcQbJ3g2Zu7IXaiStLhnfwughF4qqSH5YaQ-n8FrdSTFJt1jK8JfM2sNRo44YmnoChFWkHhW5YRD5ENL4ojs62YGpyzZPoLx-0PE29Vgbg2F8_Plqc8EPZ6HRuYj1r3f4T2OipaOickPa9xPQV151z8wRerLQIdYxLS1lNRpyGBS7Pmm0kWTi1LhHU_yFfH1Q3be47-4UUUP3VTZxP9NelhRaDLO8DHNr76A8nbXd7-7HgaQ_shwrM7snwxcGINRlogHFT-I_q1yaP6D9IzGwuLdB3RZ1g&h=-pJLocRwHKxewEZzDZ5RSzc7Qz7PedOTQ553-5DYy7g + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/0b7ab5fb-112a-409d-ad93-8218b1979c64?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631901602517491&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=PpAdHdS3N841vJvtIwKwQIwVg6BwQ-fR4Zz0KRMmGj4EjAXTLoDV4NWZY81b2Xn0Z-G2pxLKR6cYoHV5Q-82Qc-jRb52aweysU0ILODJCAWSkli7zmWnXJLcMBWRr_D7RlhuXFUGQg_1w_Po2JYThzLAGY_89RYFRtpUVtwd24TnMXQ-wmH9A6H3nuO7MF9Ef57_gw8h4suazVN8m_gDBep7I8dJVUT91VVXwOZeCttZyagMpHV-u2eP_avFQrrynfFnvSetX9Fu6MUFEWSDp2EfNGMyzUHx9j6wihQFu7yGLpCKFeCSI8WQXUCF8_H7D9LlzahSHp_eLFYhquAMdQ&h=Pn1IzPH_maTksxlSCcqy4fjXPuz90jnCWe1lJ24caOM response: body: string: '' @@ -3615,11 +3409,11 @@ interactions: content-length: - '0' date: - - Mon, 01 Jul 2024 06:18:31 GMT + - Sun, 29 Sep 2024 07:02:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/d1ca20ee-a7f7-4cbc-a9d4-5dcfdb9fedb4?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2022-10-01-preview&operationType=Deleted&t=638554115125245564&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=cMaR-crWTGV5cx8BCxI14eBBTC-z3PjH3LOC7xLgXyXBmWcQFLIN2RUwAwB_9-AsRMDYUwM6d7p6uqJlDPrC9xqE-wPS_cin-Oa48rgttyO1lK-LiQICARahKwrZnmkrzfd9iVeoO1mS0u_7D8Osps07B9fsQ0Tnp2-lxkk7q8Q3fzmj-uKYsK7DKM0ZS6lOndshyJLgPAr5ybM-H15VM0Bfeaa1FbGHq8b9t3pjHHaxhCsn6ttIpRnd75_dX5x9KdQVbH60IDu4rRMg4tNOIeOW0AkEMT9c4z6Nmp-azeSDzTWxxQpadLbRvrkW_6a06CkxriCtq5Hb2_nOA9fBmg&h=tJsrOceBAuoxYTPCzsPquxqoUH_V4asOmJ7MyN1C0gs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/0b7ab5fb-112a-409d-ad93-8218b1979c64?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631901609202432&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=XrUUcvvXuiZONVAisj0sxqswFz0dPiHFkD457EYTzmu2X-9MII5ohdpQEsLPDysCpn1MLyNhalOt3l5yzLCoaGBdoUW0z1MkT9ti4cozv8b9NgiaE_oOgTGrvX9eN56Ed_FufH8jLPLWdusJQGFix5QvBOq6U9EHVTSQrF9zhGTt3aTDCnyqZW7blzB8E2K5yWe2e1Pdo0ubvGWNhQdf4Wqp-m52HIBnaxExwSD3T0DNC5xZ9gZdcnN6FnTiie90beqte0v4omXakyjMiozsj2D4RORO1hqfHfwhTLLburXkRG9jE4Y8u7h7T34G72NYur96bktx4Tfguuza11zMrw&h=KNHvXCu8Cle393TqX4ACSMT_RD52FsFeCWsJZ6PKMPo pragma: - no-cache strict-transport-security: @@ -3629,13 +3423,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000006068 + - 00000001-0000-0000-0002-000000001300 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G0|2024-07-01T06:18:32 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G3|2024-09-29T07:02:40 x-msedge-ref: - - 'Ref A: 0A8FAE4BC1EC454AB42E715017BE101F Ref B: TYO201100117027 Ref C: 2024-07-01T06:18:31Z' + - 'Ref A: E00BAE748D6441E784CE5B3A9A162AEB Ref B: OSA221030116039 Ref C: 2024-09-29T07:02:40Z' status: code: 202 message: Accepted @@ -3653,9 +3445,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/d1ca20ee-a7f7-4cbc-a9d4-5dcfdb9fedb4?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2022-10-01-preview&operationType=Deleted&t=638554115125245564&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=cMaR-crWTGV5cx8BCxI14eBBTC-z3PjH3LOC7xLgXyXBmWcQFLIN2RUwAwB_9-AsRMDYUwM6d7p6uqJlDPrC9xqE-wPS_cin-Oa48rgttyO1lK-LiQICARahKwrZnmkrzfd9iVeoO1mS0u_7D8Osps07B9fsQ0Tnp2-lxkk7q8Q3fzmj-uKYsK7DKM0ZS6lOndshyJLgPAr5ybM-H15VM0Bfeaa1FbGHq8b9t3pjHHaxhCsn6ttIpRnd75_dX5x9KdQVbH60IDu4rRMg4tNOIeOW0AkEMT9c4z6Nmp-azeSDzTWxxQpadLbRvrkW_6a06CkxriCtq5Hb2_nOA9fBmg&h=tJsrOceBAuoxYTPCzsPquxqoUH_V4asOmJ7MyN1C0gs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/0b7ab5fb-112a-409d-ad93-8218b1979c64?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631901609202432&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=XrUUcvvXuiZONVAisj0sxqswFz0dPiHFkD457EYTzmu2X-9MII5ohdpQEsLPDysCpn1MLyNhalOt3l5yzLCoaGBdoUW0z1MkT9ti4cozv8b9NgiaE_oOgTGrvX9eN56Ed_FufH8jLPLWdusJQGFix5QvBOq6U9EHVTSQrF9zhGTt3aTDCnyqZW7blzB8E2K5yWe2e1Pdo0ubvGWNhQdf4Wqp-m52HIBnaxExwSD3T0DNC5xZ9gZdcnN6FnTiie90beqte0v4omXakyjMiozsj2D4RORO1hqfHfwhTLLburXkRG9jE4Y8u7h7T34G72NYur96bktx4Tfguuza11zMrw&h=KNHvXCu8Cle393TqX4ACSMT_RD52FsFeCWsJZ6PKMPo response: body: string: '' @@ -3665,11 +3457,11 @@ interactions: content-length: - '0' date: - - Mon, 01 Jul 2024 06:19:02 GMT + - Sun, 29 Sep 2024 07:03:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/d1ca20ee-a7f7-4cbc-a9d4-5dcfdb9fedb4?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2022-10-01-preview&operationType=Deleted&t=638554115433902320&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=OobJU_9w_e-dLDkZF3j8h88oe8NegcH3pPP6IQtiD2vQdDAnsh2Elb-BbCgolnskW5srRIgHxdG9K3HovzBC95sdkuQRwfyN_WQXHHNHz51R3cexYjNSEdLBMCQlmhNH2uajRyS9uxJIxGgXd882EPFHc9VlcCSXILuZyC40cg6DAIHy4c_c1A8xPD7WJgPJJtJDkXD0CNVScwq89joH9qkBnNBHNzHMgMMj7BwRM_TOVUuJrGR-vtL-Sjja6n_mBdsj_G-aanRGcb0SsZGyEETB-1fgD9ze5MoZ_Bz9f-QA6s900gOsqynJHIj6NzUgsE5lsNUCGmSeHbLzmD9jHA&h=-_U2fwUugkcU5szMuiCclZfmKfeBcIP0iRR5gbS43M8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/0b7ab5fb-112a-409d-ad93-8218b1979c64?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631901916799087&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=nHO1e3JksgL-3ENjlfywd39oFAR2vIpQZ6D01PEPtbc1B1lskgcnSIYCI-TQjaQB-SkFrDCEdVQW_C1xZQhXahLETtFIleNdrOTWTdwgdzASrCiTtzNyvBWb6N4ZmsenoETeorAVl_ohtz_PNyMCTjj-f1576WR2drduoEuf0Dktu_2QE4r87VUPftlrqsCidPMKXQGmLNj1OSA6D7mz-SjxGZv3Quh6Zq2nTBB6vIaTcrN--f7pc6-POSnj2N8M8RheHYPVrwY9WR4j-kNORGo-xoRSTy6GpQUY17z7fB8td6b3dVnYVvlSFtzHA73Rhx9OVNiDp9EzUisVU8ebcg&h=qPRQMx9nIYtJxyVLHBlfbFGg7wsjQnCKrj3-qjuRLFo pragma: - no-cache strict-transport-security: @@ -3679,13 +3471,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000010808 + - 00000001-0000-0000-0002-000000001300 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G1|2024-07-01T06:19:03 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G3|2024-09-29T07:03:11 x-msedge-ref: - - 'Ref A: 669D23D0687E470BA2B83B578FE4BA14 Ref B: TYO201100117027 Ref C: 2024-07-01T06:19:02Z' + - 'Ref A: C873EBAFC44E4960B59C6A94D70A21B3 Ref B: OSA221030116039 Ref C: 2024-09-29T07:03:11Z' status: code: 202 message: Accepted @@ -3703,9 +3493,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/d1ca20ee-a7f7-4cbc-a9d4-5dcfdb9fedb4?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2022-10-01-preview&operationType=Deleted&t=638554115433902320&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=OobJU_9w_e-dLDkZF3j8h88oe8NegcH3pPP6IQtiD2vQdDAnsh2Elb-BbCgolnskW5srRIgHxdG9K3HovzBC95sdkuQRwfyN_WQXHHNHz51R3cexYjNSEdLBMCQlmhNH2uajRyS9uxJIxGgXd882EPFHc9VlcCSXILuZyC40cg6DAIHy4c_c1A8xPD7WJgPJJtJDkXD0CNVScwq89joH9qkBnNBHNzHMgMMj7BwRM_TOVUuJrGR-vtL-Sjja6n_mBdsj_G-aanRGcb0SsZGyEETB-1fgD9ze5MoZ_Bz9f-QA6s900gOsqynJHIj6NzUgsE5lsNUCGmSeHbLzmD9jHA&h=-_U2fwUugkcU5szMuiCclZfmKfeBcIP0iRR5gbS43M8 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/0b7ab5fb-112a-409d-ad93-8218b1979c64?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631901916799087&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=nHO1e3JksgL-3ENjlfywd39oFAR2vIpQZ6D01PEPtbc1B1lskgcnSIYCI-TQjaQB-SkFrDCEdVQW_C1xZQhXahLETtFIleNdrOTWTdwgdzASrCiTtzNyvBWb6N4ZmsenoETeorAVl_ohtz_PNyMCTjj-f1576WR2drduoEuf0Dktu_2QE4r87VUPftlrqsCidPMKXQGmLNj1OSA6D7mz-SjxGZv3Quh6Zq2nTBB6vIaTcrN--f7pc6-POSnj2N8M8RheHYPVrwY9WR4j-kNORGo-xoRSTy6GpQUY17z7fB8td6b3dVnYVvlSFtzHA73Rhx9OVNiDp9EzUisVU8ebcg&h=qPRQMx9nIYtJxyVLHBlfbFGg7wsjQnCKrj3-qjuRLFo response: body: string: '' @@ -3715,11 +3505,11 @@ interactions: content-length: - '0' date: - - Mon, 01 Jul 2024 06:19:33 GMT + - Sun, 29 Sep 2024 07:03:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/d1ca20ee-a7f7-4cbc-a9d4-5dcfdb9fedb4?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2022-10-01-preview&operationType=Deleted&t=638554115742403690&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=ncP3QfWTieafOKikQrwORqODPhjvuvFPCuAfQ-2rjpXvCSY6jnTxQK1R2L5ENVVbMFgjpuKXO9twVZQbfHpNfS4gNCLtkPifdopgAE8gNVw-rX-iOIVYwEYnn_eOaHeaFk-8Mk4L8kQGqP3lkUjTS6t0B3MArEEVbxx1MZ2iI6AaanCIMbjhaxmbgLJo7eo_wuXSH5p7hnRFfArFyjFIVQDRpeK6l56jY6pE0QYJfF_8wqEBAih9tbUJBe_pn19uiwWkSl_EzBUdmc7Us-cR1lG4ITIf_p2ukhlpt5f8xtkM8cZcn00dSvAaAy39btFs8SfCqxNaOqDmndTTJk42zw&h=jyTjs1vplUZ5GSOkBp7TO40lHS1mrCKhV1y_t0sO2M0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/0b7ab5fb-112a-409d-ad93-8218b1979c64?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631902223772685&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=jA_qO4q7MJCNW-dVg_tVez7lw3YQayVFnT1MfZVdwG9vg1-1Y2cLf4575e6T3pIadOwjSmOJWl1qlXMWuqsesR89DIEcL7cvVSUXpWlqyTuMMS75nsuL-ojytGzyWVblEjMhXYGQJKWbuBKMQcsKIYCjSNss0sHMMbaFWp_-_ukocSW2Yd9k28hAwW83dM-BBfY12P9JSwI2bUQTm4jU4FMli6D0iJDbEz82HuuwVGvCtrJAN22FIFlGpNqp8lPhmM6-a_PAB3v3Y0SUU3-qCQJKAA7cJtcvgSib12uxbfJ5KsQPvop5Mk083lKLXLm9wv7JpfmFN3NMvwYMrjh-Aw&h=20GDqUUhc878n8MHxX8fqG5tY395eSjTQlmyPweecFI pragma: - no-cache strict-transport-security: @@ -3729,13 +3519,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000006068 + - 00000001-0000-0000-0002-000000008960 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G0|2024-07-01T06:19:34 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G2|2024-09-29T07:03:42 x-msedge-ref: - - 'Ref A: B91FE94C757647CE9992372861D06445 Ref B: TYO201100117027 Ref C: 2024-07-01T06:19:33Z' + - 'Ref A: 9317279E6B3F4E33BD7B79C126B109BD Ref B: OSA221030116039 Ref C: 2024-09-29T07:03:41Z' status: code: 202 message: Accepted @@ -3753,9 +3541,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.61.0 azsdk-python-core/1.28.0 Python/3.9.5 (Windows-10-10.0.22631-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/d1ca20ee-a7f7-4cbc-a9d4-5dcfdb9fedb4?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2022-10-01-preview&operationType=Deleted&t=638554115742403690&c=MIIHhzCCBm-gAwIBAgITHgTOmixCtVmKPtd-FAAABM6aLDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI2MDEyNDE5WhcNMjUwNjIxMDEyNDE5WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVctf8MlNEn4oGkioxUOiU68sR5PWUphl0qWxaPZuHAxvyaEBVvy0B97gJiyeWKgVMmygvLK85qy9GPe6GOGrNKmZ_tSHNE8wCUfIqy80HSg0fjmWVTckJhipZDyk4HUhRAusFhWK-KhYHxBm_RsWD9NvAusdJZKo6IzkXFuiv00vTFxJdo9PaVhWy8d6KaG1QROoeNicwnK8tqHV9SM4qm5Zo_NqJlm4w9Nm0spDXViQkU0kbMkE49TNFoIMqlCp6iyg94pgxVRDvEM3ywb5Stytl9HPXDbGcAUuoBXBL9lIxtt5hyEoyXIjZ3PCp_VyQYZ7BBYdCbUAZ5qncyuqECAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBT5WHFTSqwGGsYKklBu0dgaPj7a_zAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBACSYXSU1AC1UPt29MyU1YDldHcDHLrOLrJY7IYvyTD6bExaArTLdExfxlOQpZFQOnW1voQ7gqjLahlNwJxAFfpcHCnpjuMzL0_3uWGXRXYwRdPD_zSkvpoKkG5xfVsn-VG6lHReIOtqDVw46r0vIKyOrz4qSlsyPt5EDYq4vqABh6nJfx7_0na4TwJJkQy_E2IKVcv4hVX8ZbqjdqZOdhNXkZUViuNoLTa7RHbLHTmERT5AL--EW_idp66sLu6pTmcvZh_2d5R-5k763KRzzv4K7QKy3M5kIL-bM4D0vbgUm9FRfJQOLwV39pAO6j0LQo2c7WQlAPrU95Wk41NbactM&s=ncP3QfWTieafOKikQrwORqODPhjvuvFPCuAfQ-2rjpXvCSY6jnTxQK1R2L5ENVVbMFgjpuKXO9twVZQbfHpNfS4gNCLtkPifdopgAE8gNVw-rX-iOIVYwEYnn_eOaHeaFk-8Mk4L8kQGqP3lkUjTS6t0B3MArEEVbxx1MZ2iI6AaanCIMbjhaxmbgLJo7eo_wuXSH5p7hnRFfArFyjFIVQDRpeK6l56jY6pE0QYJfF_8wqEBAih9tbUJBe_pn19uiwWkSl_EzBUdmc7Us-cR1lG4ITIf_p2ukhlpt5f8xtkM8cZcn00dSvAaAy39btFs8SfCqxNaOqDmndTTJk42zw&h=jyTjs1vplUZ5GSOkBp7TO40lHS1mrCKhV1y_t0sO2M0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/0b7ab5fb-112a-409d-ad93-8218b1979c64?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631902223772685&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=jA_qO4q7MJCNW-dVg_tVez7lw3YQayVFnT1MfZVdwG9vg1-1Y2cLf4575e6T3pIadOwjSmOJWl1qlXMWuqsesR89DIEcL7cvVSUXpWlqyTuMMS75nsuL-ojytGzyWVblEjMhXYGQJKWbuBKMQcsKIYCjSNss0sHMMbaFWp_-_ukocSW2Yd9k28hAwW83dM-BBfY12P9JSwI2bUQTm4jU4FMli6D0iJDbEz82HuuwVGvCtrJAN22FIFlGpNqp8lPhmM6-a_PAB3v3Y0SUU3-qCQJKAA7cJtcvgSib12uxbfJ5KsQPvop5Mk083lKLXLm9wv7JpfmFN3NMvwYMrjh-Aw&h=20GDqUUhc878n8MHxX8fqG5tY395eSjTQlmyPweecFI response: body: string: '' @@ -3763,11 +3551,11 @@ interactions: cache-control: - no-cache date: - - Mon, 01 Jul 2024 06:20:04 GMT + - Sun, 29 Sep 2024 07:04:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/d1ca20ee-a7f7-4cbc-a9d4-5dcfdb9fedb4?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2022-10-01-preview&operationType=Deleted&t=638554116051478617&c=MIIHhzCCBm-gAwIBAgITHgTLf2Bo2ctQx42TXQAABMt_YDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI0MTExMDUyWhcNMjUwNjE5MTExMDUyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJlnrj2pdevN1SIOk4Ymmo6b0y9Je4RZXWejQSMTCH35NFEHss9bBD2CGcY3xU4F2W7onMR_2J9BMUNk3BAub3AoLlqVrcx5dzI0ay_5toyOhu-L1pN7aSQdp7J-LzA-UW_CLp2D_65mjx1ZER-HWOV5QedBCvUwhqtSal8AbzrK5Qth8tntkg5tzjChuGo9vkh1pnXKQyYHQMdulCipi-EK8sPOQpZyiVIRujiHxTJMjdxz4gCG4rAFAK8_jK4UC73mwHm7BAlfbfkkZtxW5sVSGLrYwFPkNIDtNGoINbTjOqTmJR02AYrzu-AeRS1DP-HxtHci9UFjOurKjaUYhTUCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTxZpd7aM59MC90B8etCBMRpcVJhTAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHAEnYrjKwIEeZD6k6Jnduw9QE83ye3e6yI36Y6jc5gavwpltarWjUevLWA6bzqnIMEbxZot_oo7GgSjb9hcbtTWjf_cW7PWDbQSC5WExVS4rTM5XJOQlXIeguIDWoXNGCzJBnYfUfUEfW8ZdjPKbJ7_7OQo_y-DgeRynB9KRCkpH4wZ1X5EQR-13kZvzXCVNpw1yiAELFyVScpLMqfm5iM9nMEMU7Og9hgeUL4q7EwPPbvn6qRq4ehK7ctlmEItOmMlgtNqT3IRhFnMIIsqnZu7BTfLyXR_8geMDnVJlhUXkb73ZpHNIBaoXmHwLpUQLBwoqG0ME1rP1_9UfVhYmNs&s=B87Kj3il0osu3ALIvUo8JqEgkDi91VRhr3bdPzPQzo5Lj5IdFzJbatwq0ZPniFtUAPIaBTsD3f4ueoaJj0nV4UpgFiS4gVjR4WeLcrYzE7-rCDv69gBmpECZCLB4I8kPNcMzFH6aNi79UCVXX5uGjP8Cz-0oWDLuswYfzTJndAt_-w8cA8K7mjUC6uDeIFzmFH3Sb5-5i2HMpCmiRBCcdDpb2lREyw7hxfxjEhzBVhSwp-lZ3XIpqd3FrxA9mtLRWXEKCUe47xOsO9qwzmP2m47p8NK4Dxe7bwCNiY8UuUj_sYkPQjGDQSnWxIVBSUTd6yuPbPz7n_wWxLomG3OyPg&h=LsSnrYlZ0iYgtxCZ4Jdk8lZmF4YZCqwTGaftdnW4ZS4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/0b7ab5fb-112a-409d-ad93-8218b1979c64?isAsyncHeader=false&resourceName=servicebus-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631902530459237&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=GYsjeSCgr-vRabFBVkLZqU9K9pmJt0ZKr80oo_ejWaaKpYuOYRgIor767khmyHKP_Y9OfrtmxABHBvRtDBKrrFC4uS5ShsUXkgXW7vID6qh5xGEg-ZcLF-c4N0RCnHpwd1s2B22qQXrYfJZ4d_zpSTH-iSAfQsKXnyeO7E_bZ6uMbNJv2vR8OjpRDqHkLCu0dQLzkTpSsv02hG7JTDOGjKjaNR2qFqxao6uts7_oHmoyUV6DBmTOerJc8hIM5c9SOOObCs7bkr8yZmt1NLhqeqJfAOz4i_wo0lTWkmae0hRvuBICBYZ1DTWX6dU7L3Zfk-V2ay7bjalURRRjPLneDA&h=w4xwuZbrbn7keW6rhBtKT3_LCzOASBBNklo31HyUx9c pragma: - no-cache strict-transport-security: @@ -3777,13 +3565,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000010652 + - 00000001-0000-0000-0002-000000001300 x-ms-messaging-routing-id: - - WESTUS|WESTUS|G4|2024-07-01T06:20:05 - x-ms-ratelimit-remaining-subscription-global-reads: - - '3749' + - WESTUS|WESTUS|G3|2024-09-29T07:04:12 x-msedge-ref: - - 'Ref A: 359D81D875C04D6E869D02F87192579B Ref B: TYO201100117027 Ref C: 2024-07-01T06:20:04Z' + - 'Ref A: 889C1FEFF4BC45C5ACA7AD6F89FDB987 Ref B: OSA221030116039 Ref C: 2024-09-29T07:04:12Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_privateendpoint.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_privateendpoint.yaml index 6617ebfcb03..2e16c128dd5 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_privateendpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_privateendpoint.yaml @@ -19,53 +19,41 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n - \ \"etag\": \"W/\\\"5cac84a0-e747-4f29-a3a2-f0a15d628823\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"fc30ddd7-8717-40ec-a91b-399a1b1f1ee5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"5cac84a0-e747-4f29-a3a2-f0a15d628823\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: '{"name":"cli-vnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003","etag":"W/\"b3daeb46-830f-4222-a352-73f7e71f0232\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Updating","resourceGuid":"cc40f210-5dcb-4533-b99b-c21237b873e0","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"cli-subnet-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004","etag":"W/\"b3daeb46-830f-4222-a352-73f7e71f0232\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f73a8eef-ae18-4bc4-ac61-900e2276e7a0?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/952d047b-4110-4db5-9d7a-563b9e64a71f?api-version=2022-01-01&t=638631796725809531&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=mXGOtlnhWOIdFVWgYWAN58d_mcSN5vGy8fy_LTu6mNf5TSYD7B4OcCJ-w8mWfn1pk83JNxUUU1dUuClkg_pwXQ_s4o9bTIQLtjggcmlr37emx0I07oph0hBRCiPCNG7mkeRTAJDTDgxvIOz-uvARYA30YM-ZHpTVRwbCbDU0c1btb88ScdLy9SD0N7KAEHP3q2YtcyUtdDMQOfjZAt40WCe_kYiYb4gC2qJmbn5y63gy8nCEuPueg5lrVK-W7jjMxDL2Tdv9IuUP_04M8_4OVi9rSbWqAMHDvzxFKulDhddPe28NFf7QHd0VZdnk-9BARwAyQW233iiUMgp3OaJWWw&h=rs37DEApVpFs5HBaYU32ikl5B72edYNc9nvybCCe9Rw cache-control: - no-cache content-length: - - '1263' + - '1000' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:14:45 GMT + - Sun, 29 Sep 2024 04:07:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 11ecfb4c-9229-420c-8b8d-1307764471a2 + - 24655e3c-6c16-445f-a0de-a8c885409ea6 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 3E5C6DB851B9471CB22F95EDE9D94B22 Ref B: TYO201151006042 Ref C: 2024-09-29T04:07:48Z' status: code: 201 message: Created @@ -83,38 +71,35 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/f73a8eef-ae18-4bc4-ac61-900e2276e7a0?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/952d047b-4110-4db5-9d7a-563b9e64a71f?api-version=2022-01-01&t=638631796725809531&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=mXGOtlnhWOIdFVWgYWAN58d_mcSN5vGy8fy_LTu6mNf5TSYD7B4OcCJ-w8mWfn1pk83JNxUUU1dUuClkg_pwXQ_s4o9bTIQLtjggcmlr37emx0I07oph0hBRCiPCNG7mkeRTAJDTDgxvIOz-uvARYA30YM-ZHpTVRwbCbDU0c1btb88ScdLy9SD0N7KAEHP3q2YtcyUtdDMQOfjZAt40WCe_kYiYb4gC2qJmbn5y63gy8nCEuPueg5lrVK-W7jjMxDL2Tdv9IuUP_04M8_4OVi9rSbWqAMHDvzxFKulDhddPe28NFf7QHd0VZdnk-9BARwAyQW233iiUMgp3OaJWWw&h=rs37DEApVpFs5HBaYU32ikl5B72edYNc9nvybCCe9Rw response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '29' + - '23' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:14:49 GMT + - Sun, 29 Sep 2024 04:07:53 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2cf896f-63be-4f68-9c17-e21278f6d528 + - f2308301-8886-45da-b76e-cd8192a06e15 + x-msedge-ref: + - 'Ref A: 8D1AB3275898477289E3F04DB2B1F1F8 Ref B: TYO201151006042 Ref C: 2024-09-29T04:07:52Z' status: code: 200 message: OK @@ -132,53 +117,83 @@ interactions: ParameterSetName: - -n -g -l --subnet-name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/952d047b-4110-4db5-9d7a-563b9e64a71f?api-version=2022-01-01&t=638631796725809531&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=mXGOtlnhWOIdFVWgYWAN58d_mcSN5vGy8fy_LTu6mNf5TSYD7B4OcCJ-w8mWfn1pk83JNxUUU1dUuClkg_pwXQ_s4o9bTIQLtjggcmlr37emx0I07oph0hBRCiPCNG7mkeRTAJDTDgxvIOz-uvARYA30YM-ZHpTVRwbCbDU0c1btb88ScdLy9SD0N7KAEHP3q2YtcyUtdDMQOfjZAt40WCe_kYiYb4gC2qJmbn5y63gy8nCEuPueg5lrVK-W7jjMxDL2Tdv9IuUP_04M8_4OVi9rSbWqAMHDvzxFKulDhddPe28NFf7QHd0VZdnk-9BARwAyQW233iiUMgp3OaJWWw&h=rs37DEApVpFs5HBaYU32ikl5B72edYNc9nvybCCe9Rw + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 04:08:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 98afeee6-03d6-4452-8fa8-3f2793ab3154 + x-msedge-ref: + - 'Ref A: 1367D672D1474D739FD48CB3F4D3FC37 Ref B: TYO201151006042 Ref C: 2024-09-29T04:08:03Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --subnet-name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cli-vnet-000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003\",\r\n - \ \"etag\": \"W/\\\"91d3e8d1-7fb3-43a4-a8e7-84d6ddf92f4d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"fc30ddd7-8717-40ec-a91b-399a1b1f1ee5\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": - [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n - \ {\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"91d3e8d1-7fb3-43a4-a8e7-84d6ddf92f4d\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false\r\n }\r\n}" + string: '{"name":"cli-vnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003","etag":"W/\"5a1db775-05a5-47b0-8aaf-02986d7c5316\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"cc40f210-5dcb-4533-b99b-c21237b873e0","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"cli-subnet-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004","etag":"W/\"5a1db775-05a5-47b0-8aaf-02986d7c5316\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache content-length: - - '1265' + - '1002' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:14:49 GMT + - Sun, 29 Sep 2024 04:08:04 GMT etag: - - W/"91d3e8d1-7fb3-43a4-a8e7-84d6ddf92f4d" + - W/"5a1db775-05a5-47b0-8aaf-02986d7c5316" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - afce7d6e-547f-4c8c-b5ea-646a56c99ba2 + - c52af7ec-d2e9-4018-96bb-d29af0ceeb56 + x-msedge-ref: + - 'Ref A: E4ABC04BB9114421A02228F9AC4AD304 Ref B: TYO201151006042 Ref C: 2024-09-29T04:08:04Z' status: code: 200 message: OK @@ -196,45 +211,37 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"91d3e8d1-7fb3-43a4-a8e7-84d6ddf92f4d\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"cli-subnet-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004","etag":"W/\"5a1db775-05a5-47b0-8aaf-02986d7c5316\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '556' + - '521' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:14:52 GMT + - Sun, 29 Sep 2024 04:08:06 GMT etag: - - W/"91d3e8d1-7fb3-43a4-a8e7-84d6ddf92f4d" + - W/"5a1db775-05a5-47b0-8aaf-02986d7c5316" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 10acfd4e-bbf2-4764-a8cd-ba8bf4888108 + - ac510ecc-5544-4df1-a6ff-d4e74ab812d6 + x-msedge-ref: + - 'Ref A: D23A4D627ED24909916A9BFD5C334C29 Ref B: TYO201151005054 Ref C: 2024-09-29T04:08:05Z' status: code: 200 message: OK @@ -259,49 +266,41 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"5fac8a9e-7022-4f07-87a0-d486bb964397\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"cli-subnet-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004","etag":"W/\"7a2636c1-c630-4828-b1d2-4da685eb38c8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d8f32ca7-0eb7-4820-a914-1bd06520e4ce?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ec1f2757-6b7c-4d48-bc61-c2bacb130989?api-version=2024-01-01&t=638631796878577506&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=Y90Ud_7p3AzzK0HZxLTFM8WPXwPDbAoMAVjiDr6V1Vna-jICV4c8V2xF_XfvmIkoE84Vt3QWOn_Tph6NA3h0FyLCM5EiCyoM1Ol6eLgtEJ2j_htkEwWrS_PuhNuvxLRl5YaAocekyC6DAplYL1lvvfWsxsOJPECr318Zhtuk2P8895PO7hjXtMgYt7tzI92LHaqnZMjmnHsezQx9UB_prbi6YkKd_q2EHOFSrZx2uM9qXE80AGdGueXE5YvBzcAJ0O-Tz3HsMzqkdTr7OGLleFrp_cMUr97XAH5e9m38Sy2qG-P82ozUaZ11zBw75D0sYIP5V1qVES7VE8l1fzrjsg&h=MmXO7VSaBqw4Z7cJqeGt_LZ_uiBbu6yOXuC1YrConjU cache-control: - no-cache content-length: - - '556' + - '521' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:14:53 GMT + - Sun, 29 Sep 2024 04:08:07 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 532aed24-d6ee-46c2-9ea5-aa2e97f3e04a + - a3f8d9f9-ae21-443b-9355-033062ee5034 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 363D7A23374643FE8A8C2BF63CE2F8A2 Ref B: TYO201151005054 Ref C: 2024-09-29T04:08:06Z' status: code: 200 message: OK @@ -319,38 +318,35 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d8f32ca7-0eb7-4820-a914-1bd06520e4ce?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ec1f2757-6b7c-4d48-bc61-c2bacb130989?api-version=2024-01-01&t=638631796878577506&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=Y90Ud_7p3AzzK0HZxLTFM8WPXwPDbAoMAVjiDr6V1Vna-jICV4c8V2xF_XfvmIkoE84Vt3QWOn_Tph6NA3h0FyLCM5EiCyoM1Ol6eLgtEJ2j_htkEwWrS_PuhNuvxLRl5YaAocekyC6DAplYL1lvvfWsxsOJPECr318Zhtuk2P8895PO7hjXtMgYt7tzI92LHaqnZMjmnHsezQx9UB_prbi6YkKd_q2EHOFSrZx2uM9qXE80AGdGueXE5YvBzcAJ0O-Tz3HsMzqkdTr7OGLleFrp_cMUr97XAH5e9m38Sy2qG-P82ozUaZ11zBw75D0sYIP5V1qVES7VE8l1fzrjsg&h=MmXO7VSaBqw4Z7cJqeGt_LZ_uiBbu6yOXuC1YrConjU response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:15:24 GMT + - Sun, 29 Sep 2024 04:08:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd98dccc-be71-4c13-ab41-9a6cb89b09dc + - d951b5aa-a443-46d7-aaa3-55d514b1250e + x-msedge-ref: + - 'Ref A: C9CFF6D178DC4A80A5300EE5BE50A2BE Ref B: TYO201151005054 Ref C: 2024-09-29T04:08:07Z' status: code: 200 message: OK @@ -368,51 +364,43 @@ interactions: ParameterSetName: - -n --vnet-name -g --disable-private-endpoint-network-policies User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004?api-version=2024-01-01 response: body: - string: "{\r\n \"name\": \"cli-subnet-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\",\r\n - \ \"etag\": \"W/\\\"5fac8a9e-7022-4f07-87a0-d486bb964397\\\"\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n - \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n - \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": - \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + string: '{"name":"cli-subnet-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004","etag":"W/\"7a2636c1-c630-4828-b1d2-4da685eb38c8\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache content-length: - - '556' + - '521' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:15:24 GMT + - Sun, 29 Sep 2024 04:08:08 GMT etag: - - W/"5fac8a9e-7022-4f07-87a0-d486bb964397" + - W/"7a2636c1-c630-4828-b1d2-4da685eb38c8" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 22b12c67-f82d-42cb-9bb0-4810666574b6 + - c8c8dfb6-9ab6-45e4-8ccb-e3138dbd4eb8 + x-msedge-ref: + - 'Ref A: 8A60E7C5184042ACAA2A9DE57B2F56AC Ref B: TYO201151005054 Ref C: 2024-09-29T04:08:08Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "eastus", "sku": {"name": "Premium", - "tier": "Premium"}, "tags": {"{tag1": "value1}"}}' + body: '{"location": "eastus", "sku": {"name": "Premium", "tier": "Premium"}, "tags": + {"{tag1": "value1}"}}' headers: Accept: - application/json @@ -423,50 +411,48 @@ interactions: Connection: - keep-alive Content-Length: - - '129' + - '99' Content-Type: - application/json ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","createdAt":"2023-03-29T05:15:29.49Z","updatedAt":"2023-03-29T05:15:29.49Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:08:13.3286527Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '765' + - '921' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:15:31 GMT + - Sun, 29 Sep 2024 04:08:13 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4debfd7d-b28e-4c7e-b5db-3fdb415ae3ec + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G9|2024-09-29T04:08:13 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: B5BF93C22C824E1292A3867D240C517A Ref B: TYO201100117047 Ref C: 2024-09-29T04:08:09Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -481,39 +467,37 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","createdAt":"2023-03-29T05:15:29.49Z","updatedAt":"2023-03-29T05:15:29.49Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:08:13.3286527Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '765' + - '921' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:16:01 GMT + - Sun, 29 Sep 2024 04:08:14 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 90a4645a-a4bd-452f-abfd-e633d1062fe9 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T04:08:15 + x-msedge-ref: + - 'Ref A: FDD74287730C42CCA335F04B04059D43 Ref B: TYO201100117047 Ref C: 2024-09-29T04:08:14Z' status: code: 200 message: OK @@ -531,39 +515,37 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","createdAt":"2023-03-29T05:15:29.49Z","updatedAt":"2023-03-29T05:15:29.49Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:08:13.3286527Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '765' + - '921' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:16:32 GMT + - Sun, 29 Sep 2024 04:08:45 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 1105b58d-faee-43e0-bea1-6d399c607bb1 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T04:08:46 + x-msedge-ref: + - 'Ref A: 8E81953856704DA88D94D0B1BC2BEFE1 Ref B: TYO201100117047 Ref C: 2024-09-29T04:08:45Z' status: code: 200 message: OK @@ -581,39 +563,37 @@ interactions: ParameterSetName: - --resource-group --name --location --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","createdAt":"2023-03-29T05:15:29.49Z","updatedAt":"2023-03-29T05:16:38.673Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:09:12.5686577Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '764' + - '918' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:17:02 GMT + - Sun, 29 Sep 2024 04:09:16 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 46a72c15-170f-4602-9608-5febe4599b63 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G10|2024-09-29T04:09:17 + x-msedge-ref: + - 'Ref A: 4A80A9E42BA24CD5844900DCE0C07C73 Ref B: TYO201100117047 Ref C: 2024-09-29T04:09:16Z' status: code: 200 message: OK @@ -631,39 +611,37 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","createdAt":"2023-03-29T05:15:29.49Z","updatedAt":"2023-03-29T05:16:38.673Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:09:12.5686577Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '764' + - '918' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:17:04 GMT + - Sun, 29 Sep 2024 04:09:18 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 31697ec8-a9aa-4943-b279-3680aae4e32a + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G5|2024-09-29T04:09:19 + x-msedge-ref: + - 'Ref A: 54B4FBC6F93D4EE7B281083C108242C0 Ref B: TYO201100116035 Ref C: 2024-09-29T04:09:18Z' status: code: 200 message: OK @@ -681,7 +659,7 @@ interactions: ParameterSetName: - --namespace-name -g User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateLinkResources?api-version=2022-10-01-preview response: @@ -695,24 +673,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:17:06 GMT + - Sun, 29 Sep 2024 04:09:20 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 6fb1b693-4a3c-42d8-909e-16b19a09dde7 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G6|2024-09-29T04:09:20 + x-msedge-ref: + - 'Ref A: 11614CE628964881A0949C125FF41ADE Ref B: TYO201151004054 Ref C: 2024-09-29T04:09:19Z' status: code: 200 message: OK @@ -730,39 +707,37 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","createdAt":"2023-03-29T05:15:29.49Z","updatedAt":"2023-03-29T05:16:38.673Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:09:12.5686577Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '764' + - '918' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:17:08 GMT + - Sun, 29 Sep 2024 04:09:21 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - fb5008ba-ba54-4c09-8dcb-eae7527cc82f + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G3|2024-09-29T04:09:21 + x-msedge-ref: + - 'Ref A: EE3FF1A24C6B4C0B852F120B443EC060 Ref B: OSA221030114027 Ref C: 2024-09-29T04:09:20Z' status: code: 200 message: OK @@ -788,58 +763,42 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n - \ \"etag\": \"W/\\\"9d4664b8-3df8-486e-ab1a-5c0a91af49b3\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"53abb8b5-368c-4632-876a-beba3cdf7e56\",\r\n \"privateLinkServiceConnections\": - [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n - \ \"etag\": \"W/\\\"9d4664b8-3df8-486e-ab1a-5c0a91af49b3\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002\",\r\n - \ \"groupIds\": [\r\n \"namespace\"\r\n ],\r\n - \ \"privateLinkServiceConnectionState\": {\r\n \"status\": - \"Approved\",\r\n \"description\": \"Auto Approved\",\r\n \"actionsRequired\": - \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n - \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n - \ \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n - \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.e293f5b4-7622-429b-8813-063a0b5d9c4a\"\r\n - \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" + string: '{"name":"cli-pe-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005","etag":"W/\"eaf055d5-5745-4a22-8e1a-518e4dd7c3a1\"","type":"Microsoft.Network/privateEndpoints","location":"eastus","properties":{"provisioningState":"Updating","resourceGuid":"8dcdf467-7f93-438e-a031-78f1eb5ee655","privateLinkServiceConnections":[{"name":"cli-pec-000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006","etag":"W/\"eaf055d5-5745-4a22-8e1a-518e4dd7c3a1\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","groupIds":["namespace"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto + Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.96f1bcb8-3c42-46c9-b2d5-d34fe4f607f2"}],"customDnsConfigs":[]}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ccfc74b5-dc97-4d6a-9170-f17e06d3f18b?api-version=2022-01-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4e7267ee-165f-489f-a359-d845a8f93f5e?api-version=2022-01-01&t=638631797651576565&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=NKpzG-RJNJcgWTGrq9h5IhltP9NrJmzlJfGkTDRA3UYJ18YFi9QKE1__X5iUXrEUHd8CbqBIhD74fPwVBrjiJyG9hCHIzjzY-qRC6R3j9hYSAnWObr6zjIQ4GcGaKP0PoYLq2G5UhbLXcMlftZebcy5sgaKz3A79efkpBUg0L4tLtz8M-i234XcwIYY1tv6NSudgYPNs7s3xzTYo7F9-RKNamUqscZ9ng_6SYPpOiRVDxrK2bkvSPEgHm2HG5eVFFA7pX5r-ZpNocIU3o8FDQpTqjFmPkk2PwtSzdOeSlNCZos38mv0lvhXExrcS0uTyCTpjeOibyPuAwr9OI6V7Ng&h=Hj1yiTNaLwy2qrdQNlTZUznPNrm0AjWxuGOvm9uKpg4 cache-control: - no-cache content-length: - - '2010' + - '1641' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:17:14 GMT + - Sun, 29 Sep 2024 04:09:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4b2643c5-e973-4710-af89-cb0306235597 + - 5371a47d-831f-4d13-9067-9691bcce153c x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: A51A08ED6909456ABA2B521100C4430D Ref B: TYO201151006040 Ref C: 2024-09-29T04:09:22Z' status: code: 201 message: Created @@ -858,38 +817,35 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ccfc74b5-dc97-4d6a-9170-f17e06d3f18b?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4e7267ee-165f-489f-a359-d845a8f93f5e?api-version=2022-01-01&t=638631797651576565&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=NKpzG-RJNJcgWTGrq9h5IhltP9NrJmzlJfGkTDRA3UYJ18YFi9QKE1__X5iUXrEUHd8CbqBIhD74fPwVBrjiJyG9hCHIzjzY-qRC6R3j9hYSAnWObr6zjIQ4GcGaKP0PoYLq2G5UhbLXcMlftZebcy5sgaKz3A79efkpBUg0L4tLtz8M-i234XcwIYY1tv6NSudgYPNs7s3xzTYo7F9-RKNamUqscZ9ng_6SYPpOiRVDxrK2bkvSPEgHm2HG5eVFFA7pX5r-ZpNocIU3o8FDQpTqjFmPkk2PwtSzdOeSlNCZos38mv0lvhXExrcS0uTyCTpjeOibyPuAwr9OI6V7Ng&h=Hj1yiTNaLwy2qrdQNlTZUznPNrm0AjWxuGOvm9uKpg4 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:17:25 GMT + - Sun, 29 Sep 2024 04:09:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76aff33a-823c-4405-b781-6058970072f9 + - 7090d6b1-9a5a-4fc1-b79e-5759f443361b + x-msedge-ref: + - 'Ref A: 683AE895FB25403E9B96D7480FCC5E08 Ref B: TYO201151006040 Ref C: 2024-09-29T04:09:25Z' status: code: 200 message: OK @@ -908,38 +864,35 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ccfc74b5-dc97-4d6a-9170-f17e06d3f18b?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4e7267ee-165f-489f-a359-d845a8f93f5e?api-version=2022-01-01&t=638631797651576565&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=NKpzG-RJNJcgWTGrq9h5IhltP9NrJmzlJfGkTDRA3UYJ18YFi9QKE1__X5iUXrEUHd8CbqBIhD74fPwVBrjiJyG9hCHIzjzY-qRC6R3j9hYSAnWObr6zjIQ4GcGaKP0PoYLq2G5UhbLXcMlftZebcy5sgaKz3A79efkpBUg0L4tLtz8M-i234XcwIYY1tv6NSudgYPNs7s3xzTYo7F9-RKNamUqscZ9ng_6SYPpOiRVDxrK2bkvSPEgHm2HG5eVFFA7pX5r-ZpNocIU3o8FDQpTqjFmPkk2PwtSzdOeSlNCZos38mv0lvhXExrcS0uTyCTpjeOibyPuAwr9OI6V7Ng&h=Hj1yiTNaLwy2qrdQNlTZUznPNrm0AjWxuGOvm9uKpg4 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:17:35 GMT + - Sun, 29 Sep 2024 04:09:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d827accf-5172-4b4f-adc6-1a20ebea358f + - 52f2192c-92d1-42c4-9676-504071d7b7d2 + x-msedge-ref: + - 'Ref A: 75C46F4B86EB4F74A8154D04BD956C17 Ref B: TYO201151006040 Ref C: 2024-09-29T04:09:35Z' status: code: 200 message: OK @@ -958,38 +911,35 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ccfc74b5-dc97-4d6a-9170-f17e06d3f18b?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4e7267ee-165f-489f-a359-d845a8f93f5e?api-version=2022-01-01&t=638631797651576565&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=NKpzG-RJNJcgWTGrq9h5IhltP9NrJmzlJfGkTDRA3UYJ18YFi9QKE1__X5iUXrEUHd8CbqBIhD74fPwVBrjiJyG9hCHIzjzY-qRC6R3j9hYSAnWObr6zjIQ4GcGaKP0PoYLq2G5UhbLXcMlftZebcy5sgaKz3A79efkpBUg0L4tLtz8M-i234XcwIYY1tv6NSudgYPNs7s3xzTYo7F9-RKNamUqscZ9ng_6SYPpOiRVDxrK2bkvSPEgHm2HG5eVFFA7pX5r-ZpNocIU3o8FDQpTqjFmPkk2PwtSzdOeSlNCZos38mv0lvhXExrcS0uTyCTpjeOibyPuAwr9OI6V7Ng&h=Hj1yiTNaLwy2qrdQNlTZUznPNrm0AjWxuGOvm9uKpg4 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"status":"InProgress"}' headers: cache-control: - no-cache content-length: - - '30' + - '23' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:17:55 GMT + - Sun, 29 Sep 2024 04:09:56 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 86f269b2-57f9-458b-94e3-6cb96b6d0c42 + - 66fb1f35-e0ba-48d6-acb0-dab5ebea4038 + x-msedge-ref: + - 'Ref A: 6D9897C36C1F4737BB37FCB665E2F2AC Ref B: TYO201151006040 Ref C: 2024-09-29T04:09:56Z' status: code: 200 message: OK @@ -1008,41 +958,38 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ccfc74b5-dc97-4d6a-9170-f17e06d3f18b?api-version=2022-01-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4e7267ee-165f-489f-a359-d845a8f93f5e?api-version=2022-01-01&t=638631797651576565&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=NKpzG-RJNJcgWTGrq9h5IhltP9NrJmzlJfGkTDRA3UYJ18YFi9QKE1__X5iUXrEUHd8CbqBIhD74fPwVBrjiJyG9hCHIzjzY-qRC6R3j9hYSAnWObr6zjIQ4GcGaKP0PoYLq2G5UhbLXcMlftZebcy5sgaKz3A79efkpBUg0L4tLtz8M-i234XcwIYY1tv6NSudgYPNs7s3xzTYo7F9-RKNamUqscZ9ng_6SYPpOiRVDxrK2bkvSPEgHm2HG5eVFFA7pX5r-ZpNocIU3o8FDQpTqjFmPkk2PwtSzdOeSlNCZos38mv0lvhXExrcS0uTyCTpjeOibyPuAwr9OI6V7Ng&h=Hj1yiTNaLwy2qrdQNlTZUznPNrm0AjWxuGOvm9uKpg4 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '29' + - '22' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:18:16 GMT + - Sun, 29 Sep 2024 04:10:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7c553bbc-f629-4810-b655-9df26a8342d4 + - fa653da7-c0d8-4799-b3e9-9b8cb58312b5 + x-msedge-ref: + - 'Ref A: B4F8C639295F48E19821CE81E5A27B05 Ref B: TYO201151006040 Ref C: 2024-09-29T04:10:37Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1058,63 +1005,40 @@ interactions: - -g -n --vnet-name --subnet -l --connection-name --private-connection-resource-id --group-ids User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005?api-version=2022-01-01 response: body: - string: "{\r\n \"name\": \"cli-pe-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005\",\r\n - \ \"etag\": \"W/\\\"7c7a3afc-1ebc-4f33-9a18-58a3547589f0\\\"\",\r\n \"type\": - \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"eastus\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"53abb8b5-368c-4632-876a-beba3cdf7e56\",\r\n \"privateLinkServiceConnections\": - [\r\n {\r\n \"name\": \"cli-pec-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006\",\r\n - \ \"etag\": \"W/\\\"7c7a3afc-1ebc-4f33-9a18-58a3547589f0\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002\",\r\n - \ \"groupIds\": [\r\n \"namespace\"\r\n ],\r\n - \ \"privateLinkServiceConnectionState\": {\r\n \"status\": - \"Approved\",\r\n \"description\": \"Auto-Approved\",\r\n \"actionsRequired\": - \"None\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/privateEndpoints/privateLinkServiceConnections\"\r\n - \ }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\n - \ \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004\"\r\n - \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.e293f5b4-7622-429b-8813-063a0b5d9c4a\"\r\n - \ }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \"fqdn\": - \"servicebus-nscli000002.servicebus.windows.net\",\r\n \"ipAddresses\": - [\r\n \"10.0.0.4\"\r\n ]\r\n }\r\n ]\r\n }\r\n}" + string: '{"name":"cli-pe-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005","etag":"W/\"00e04895-4686-4777-986f-8e7e320d8448\"","type":"Microsoft.Network/privateEndpoints","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"8dcdf467-7f93-438e-a031-78f1eb5ee655","privateLinkServiceConnections":[{"name":"cli-pec-000006","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005/privateLinkServiceConnections/cli-pec-000006","etag":"W/\"00e04895-4686-4777-986f-8e7e320d8448\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","groupIds":["namespace"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/virtualNetworks/cli-vnet-000003/subnets/cli-subnet-000004"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/networkInterfaces/cli-pe-000005.nic.96f1bcb8-3c42-46c9-b2d5-d34fe4f607f2"}],"customDnsConfigs":[{"fqdn":"servicebus-nscli000002.servicebus.windows.net","ipAddresses":["10.0.0.4"]}]}}' headers: cache-control: - no-cache content-length: - - '2160' + - '1725' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:18:16 GMT + - Sun, 29 Sep 2024 04:10:37 GMT etag: - - W/"7c7a3afc-1ebc-4f33-9a18-58a3547589f0" + - W/"00e04895-4686-4777-986f-8e7e320d8448" expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 667b4e06-e2ec-4722-a88e-dfaf7d0ba5ff + - 42621cfa-76af-4433-849b-e54484282f8e + x-msedge-ref: + - 'Ref A: 7FBE7951787841AE8E9102796C905FB4 Ref B: TYO201151006040 Ref C: 2024-09-29T04:10:37Z' status: code: 200 - message: '' + message: OK - request: body: null headers: @@ -1129,40 +1053,37 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{"{tag1":"value1}"},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429","name":"c57aea9e-e064-4a44-b7f6-ca38cabce429","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}],"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","createdAt":"2023-03-29T05:15:29.49Z","updatedAt":"2023-03-29T05:16:38.673Z","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002","name":"servicebus-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}],"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscli000002","serviceBusEndpoint":"https://servicebus-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:09:12.5686577Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1478' + - '1631' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:18:18 GMT + - Sun, 29 Sep 2024 04:10:39 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 650da2c2-bf96-4a1a-a391-1c327f9ba600 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G2|2024-09-29T04:10:39 + x-msedge-ref: + - 'Ref A: 028DFD453975473FAEF2DF28409D47B6 Ref B: TYO201100113035 Ref C: 2024-09-29T04:10:39Z' status: code: 200 message: OK @@ -1180,39 +1101,37 @@ interactions: ParameterSetName: - --namespace-name -g --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429","name":"c57aea9e-e064-4a44-b7f6-ca38cabce429","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' headers: cache-control: - no-cache content-length: - - '682' + - '681' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:18:20 GMT + - Sun, 29 Sep 2024 04:10:40 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - fd7a261c-ddb3-4c44-9321-e61658c1d185 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G14|2024-09-29T04:10:41 + x-msedge-ref: + - 'Ref A: 857658051CFA461BAA88B1E1963BD1A0 Ref B: OSA221030115035 Ref C: 2024-09-29T04:10:40Z' status: code: 200 message: OK @@ -1230,39 +1149,37 @@ interactions: ParameterSetName: - --namespace-name -g --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429","name":"c57aea9e-e064-4a44-b7f6-ca38cabce429","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' headers: cache-control: - no-cache content-length: - - '682' + - '681' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:18:22 GMT + - Sun, 29 Sep 2024 04:10:42 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 1f0aa285-4d6f-4dfd-a52e-d66f0d541cd9 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G2|2024-09-29T04:10:42 + x-msedge-ref: + - 'Ref A: 7C1309B475B94ACFB61F28CD53E0CCF7 Ref B: TYO201151005011 Ref C: 2024-09-29T04:10:41Z' status: code: 200 message: OK @@ -1280,39 +1197,37 @@ interactions: ParameterSetName: - --namespace-name -g --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429","name":"c57aea9e-e064-4a44-b7f6-ca38cabce429","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' headers: cache-control: - no-cache content-length: - - '682' + - '681' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:18:23 GMT + - Sun, 29 Sep 2024 04:10:43 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b830df8b-987f-4278-9d0e-2c4d6ccb9719 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G3|2024-09-29T04:10:43 + x-msedge-ref: + - 'Ref A: 91E9976209B54E2DA5BFE2C85D54A88A Ref B: TYO201100114023 Ref C: 2024-09-29T04:10:42Z' status: code: 200 message: OK @@ -1330,39 +1245,37 @@ interactions: ParameterSetName: - --namespace-name -g --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429","name":"c57aea9e-e064-4a44-b7f6-ca38cabce429","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' headers: cache-control: - no-cache content-length: - - '682' + - '681' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:18:24 GMT + - Sun, 29 Sep 2024 04:10:43 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9c146518-4def-432a-8c8a-a23604c98253 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G14|2024-09-29T04:10:44 + x-msedge-ref: + - 'Ref A: 312CC7C28C1B472C9AB2401005C1004D Ref B: TYO201151006023 Ref C: 2024-09-29T04:10:43Z' status: code: 200 message: OK @@ -1386,39 +1299,41 @@ interactions: ParameterSetName: - --namespace-name -g --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429","name":"c57aea9e-e064-4a44-b7f6-ca38cabce429","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":""},"groupIds":["namespace"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected"},"groupIds":["namespace"]}}' headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429/operationStatus/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview&operationType=Update + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be/operationStatus/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview&operationType=Update&t=638631798452671421&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=XBzMeWE4DHNyD9b70eM--hI8C1rI-GSFtlipGE5LIL-10YTQib1c8LJ-oqGexBTRlkA2_lmrks_DzvoGASTOK4KwQhGDiLm02oGF3lC21Oq6q5P5-yQbz8nNjibOjYKndBMcOzwvYkfqU5NZCNGvJ6AhoLsS7U1FIQC87l-KKiDN5uz_TmIWEMOfoDNKnABH7FRL_dtWc9wu6owZWS-jda7lA0fLOPY-bKKfdiMmdm4OGkEPNjzEPJA250GosioIYSK7yG_Qac56S-0uCrvTbFL7Q3POisHbCh4OFVWC0mOcT95oSdGtwTCpdnbuB3nYM19d8JvU6lRhVjFxfu7_ng&h=sw3XdJKn4sbOPi03sYJ-Js0-6lWAYPDwuNgK6aNSP2w cache-control: - no-cache content-length: - - '668' + - '650' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:18:25 GMT + - Sun, 29 Sep 2024 04:10:44 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9df5f388-8ab1-407e-acd8-a93907adb565 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G2|2024-09-29T04:10:45 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 5FA523F5F4464FB380DAFA98648EDDD3 Ref B: TYO201151006023 Ref C: 2024-09-29T04:10:44Z' status: code: 202 message: Accepted @@ -1436,39 +1351,37 @@ interactions: ParameterSetName: - --namespace-name -g --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429","name":"c57aea9e-e064-4a44-b7f6-ca38cabce429","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":""},"groupIds":["namespace"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Updating","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected"},"groupIds":["namespace"]}}' headers: cache-control: - no-cache content-length: - - '668' + - '650' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:18:28 GMT + - Sun, 29 Sep 2024 04:10:46 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - aff0aed8-5f31-421b-a4ea-da19e4d2df41 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G9|2024-09-29T04:10:46 + x-msedge-ref: + - 'Ref A: 49046140D6174F1DAD286AB59A3EDECD Ref B: OSA221030113019 Ref C: 2024-09-29T04:10:45Z' status: code: 200 message: OK @@ -1486,39 +1399,37 @@ interactions: ParameterSetName: - --namespace-name -g --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429","name":"c57aea9e-e064-4a44-b7f6-ca38cabce429","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"East - US","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected","description":""},"groupIds":["namespace"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.Network/privateEndpoints/cli-pe-000005"},"privateLinkServiceConnectionState":{"status":"Rejected"},"groupIds":["namespace"]}}' headers: cache-control: - no-cache content-length: - - '669' + - '651' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:19:30 GMT + - Sun, 29 Sep 2024 04:11:48 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d5b7b6db-6d20-4c7a-8ada-142d6f590707 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G5|2024-09-29T04:11:48 + x-msedge-ref: + - 'Ref A: 0EBD1FD1E1B549CA918363EC326F7026 Ref B: TYO201100115027 Ref C: 2024-09-29T04:11:47Z' status: code: 200 message: OK @@ -1538,36 +1449,39 @@ interactions: ParameterSetName: - --id -y User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429/operationStatus/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview&operationType=Delete + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be/operationStatus/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview&operationType=Delete&t=638631799095960056&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=HAHe4i_Fp1C0b25HRZ2cE2v1oUx7bhhSfluZK3GrL69zY63GYmNl8W16HA_eah0nVhPcmCinRz_wMF79bsZm75rU3TZRzUFzGSv3cMrYdJ16LD8j81F57eHYWa4_e6SPqC7MVewhWlFDERwSMrbxdU8sQMdWlYCjINizLVYQHnrQlxfOVO74AX0LRR8691g_THBJidBH0ZFl1lO2M5Jp-zWMo-3KP7hm8ztut2G3k-0lAhK8y6Iv4ODblV21-UtuvWKOzpxq-LzJZOu7UGSigMP1f7lBtt9r4dSzAZTB67aziG4YmCIizkB3jcrWGlm8jLVlRzlQBQ9peftMKTRE6w&h=Zxz9Jx37d1acU0lU05XHn0u7TQuSAPNdLnQ7uaFRrYM cache-control: - no-cache content-length: - '0' date: - - Wed, 29 Mar 2023 05:19:32 GMT + - Sun, 29 Sep 2024 04:11:49 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001056 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G3|2024-09-29T04:11:49 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 82F990A619474014ACAB67413396ADBF Ref B: TYO201100116011 Ref C: 2024-09-29T04:11:48Z' status: code: 202 message: Accepted @@ -1585,38 +1499,87 @@ interactions: ParameterSetName: - --id -y User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.10 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be/operationStatus/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview&operationType=Delete&t=638631799095960056&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=HAHe4i_Fp1C0b25HRZ2cE2v1oUx7bhhSfluZK3GrL69zY63GYmNl8W16HA_eah0nVhPcmCinRz_wMF79bsZm75rU3TZRzUFzGSv3cMrYdJ16LD8j81F57eHYWa4_e6SPqC7MVewhWlFDERwSMrbxdU8sQMdWlYCjINizLVYQHnrQlxfOVO74AX0LRR8691g_THBJidBH0ZFl1lO2M5Jp-zWMo-3KP7hm8ztut2G3k-0lAhK8y6Iv4ODblV21-UtuvWKOzpxq-LzJZOu7UGSigMP1f7lBtt9r4dSzAZTB67aziG4YmCIizkB3jcrWGlm8jLVlRzlQBQ9peftMKTRE6w&h=Zxz9Jx37d1acU0lU05XHn0u7TQuSAPNdLnQ7uaFRrYM + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be/operationStatus/b6f51cf9-9c9a-4fe3-aad8-642971dd98be/operationStatus/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","status":"Deleting"}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be/operationStatus/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview&operationType=Delete&t=638631799105934329&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=LUNibz2DvbY--azuHTszK11EdoxAwCQ3HoQFJ8HDnCaGZVbQULnxoeeUEaXf927eb6zKAyYDJEHCoyMWzFwOoF5jkdRY_xwAT1Xi2Y6NOWM_L3esS-tbwovuZRge5iDCPbDGFJ4G2sy25HX5awZxiIkw5UIeVXp5jYWROZT_MXc4KuAejvrQ1l_LeHu6vEzgzwr3w0cc-BB1KlMkYjJmUrBcmsDe5oQaLppG2B6I_RY2uW6gTnzqMcBT9U22Q5HkmeC1Oj-s9zLxlT8YAz3KDfC0Q3iiM9AJWOr14J8ktYUxIphPcBApYgu_V3vnGRy7QKciO6JZ6mR-m0MwGwq4QA&h=Xu_DNFqEr7rmcGa6aC2l1Z0AXxpfRlGreGsOk9q7qtE + cache-control: + - no-cache + content-length: + - '391' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 04:11:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - e9f093c7-5f85-460d-94fa-df60aa216ebc + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T04:11:50 + x-msedge-ref: + - 'Ref A: 1BD206FB6BB14F7899F7E02CB7824D6B Ref B: TYO201100116011 Ref C: 2024-09-29T04:11:49Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace private-endpoint-connection delete + Connection: + - keep-alive + ParameterSetName: + - --id -y + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429/operationStatus/c57aea9e-e064-4a44-b7f6-ca38cabce429?api-version=2022-10-01-preview&operationType=Delete + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be/operationStatus/b6f51cf9-9c9a-4fe3-aad8-642971dd98be?api-version=2022-10-01-preview&operationType=Delete&t=638631799095960056&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=HAHe4i_Fp1C0b25HRZ2cE2v1oUx7bhhSfluZK3GrL69zY63GYmNl8W16HA_eah0nVhPcmCinRz_wMF79bsZm75rU3TZRzUFzGSv3cMrYdJ16LD8j81F57eHYWa4_e6SPqC7MVewhWlFDERwSMrbxdU8sQMdWlYCjINizLVYQHnrQlxfOVO74AX0LRR8691g_THBJidBH0ZFl1lO2M5Jp-zWMo-3KP7hm8ztut2G3k-0lAhK8y6Iv4ODblV21-UtuvWKOzpxq-LzJZOu7UGSigMP1f7lBtt9r4dSzAZTB67aziG4YmCIizkB3jcrWGlm8jLVlRzlQBQ9peftMKTRE6w&h=Zxz9Jx37d1acU0lU05XHn0u7TQuSAPNdLnQ7uaFRrYM response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/c57aea9e-e064-4a44-b7f6-ca38cabce429/operationStatus/c57aea9e-e064-4a44-b7f6-ca38cabce429/operationStatus/c57aea9e-e064-4a44-b7f6-ca38cabce429","name":"c57aea9e-e064-4a44-b7f6-ca38cabce429","status":"Succeeded","startTime":"0001-01-01T00:00:00Z","endTime":"0001-01-01T00:00:00Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscli000002/privateEndpointConnections/b6f51cf9-9c9a-4fe3-aad8-642971dd98be/operationStatus/b6f51cf9-9c9a-4fe3-aad8-642971dd98be/operationStatus/b6f51cf9-9c9a-4fe3-aad8-642971dd98be","name":"b6f51cf9-9c9a-4fe3-aad8-642971dd98be","status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '460' + - '392' content-type: - application/json; charset=utf-8 date: - - Wed, 29 Mar 2023 05:20:03 GMT + - Sun, 29 Sep 2024 04:12:21 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - cd270c7f-bbc1-408c-9893-7ae1c2058a0b + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G5|2024-09-29T04:12:21 + x-msedge-ref: + - 'Ref A: 8700176BD4B542A4843B5BD0759C818A Ref B: TYO201100116011 Ref C: 2024-09-29T04:12:20Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_queue.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_queue.yaml index 94533156438..4b82b990ddb 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_queue.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_queue.yaml @@ -13,38 +13,39 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_queue000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001","name":"cli_test_sb_queue000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T13:46:55Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001","name":"cli_test_sb_queue000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_queue","date":"2024-09-29T07:10:46Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '324' + - '369' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:46:55 GMT + - Sun, 29 Sep 2024 07:10:49 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: EA243B04C5154E529E590BD58544B4A5 Ref B: TYO201100117053 Ref C: 2024-09-29T07:10:49Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "westus", "sku": {"name": "Standard", - "tier": "Standard"}, "tags": {"{tag2": "value2,", "tag1": "value1}"}}' + body: '{"location": "westus", "sku": {"name": "Standard", "tier": "Standard"}, + "tags": {"{tag2": "value2,", "tag1": "value1}"}}' headers: Accept: - application/json @@ -55,51 +56,48 @@ interactions: Connection: - keep-alive Content-Length: - - '150' + - '120' Content-Type: - application/json ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag2":"value2,","tag1":"value1}"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:46:58.927Z","updatedAt":"2023-03-13T13:46:58.927Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag2":"value2,","tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T07:10:52.8699688Z","updatedAt":"2024-09-29T07:10:52.8699688Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '750' + - '904' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:46:59 GMT + - Sun, 29 Sep 2024 07:10:53 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7c91ebf7-3f59-4bdc-b322-13392d73ee50 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:10:52 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: 1E2BA48846B74FDFA55250C643C523D6 Ref B: OSA221030116039 Ref C: 2024-09-29T07:10:49Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -114,40 +112,37 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag2":"value2,","tag1":"value1}"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:46:58.927Z","updatedAt":"2023-03-13T13:46:58.927Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag2":"value2,","tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T07:10:52.8699688Z","updatedAt":"2024-09-29T07:10:52.8699688Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '750' + - '904' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:47:29 GMT + - Sun, 29 Sep 2024 07:10:54 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 1350e210-a8c7-4d8c-90ce-b18388fd431c + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:10:54 + x-msedge-ref: + - 'Ref A: 39B142941F414FEC85A58293FD0337E2 Ref B: OSA221030116039 Ref C: 2024-09-29T07:10:53Z' status: code: 200 message: OK @@ -165,40 +160,37 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag2":"value2,","tag1":"value1}"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:46:58.927Z","updatedAt":"2023-03-13T13:47:43.227Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag2":"value2,","tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T07:10:52.8699688Z","updatedAt":"2024-09-29T07:10:56.7450373Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '748' + - '901' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:47:59 GMT + - Sun, 29 Sep 2024 07:11:25 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4beabc26-e175-4ac3-83d8-2ae70a5f3d75 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:11:25 + x-msedge-ref: + - 'Ref A: C528631BA5D14EC4B5206A06A59C997F Ref B: OSA221030116039 Ref C: 2024-09-29T07:11:24Z' status: code: 200 message: OK @@ -216,40 +208,37 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag2":"value2,","tag1":"value1}"},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:46:58.927Z","updatedAt":"2023-03-13T13:47:43.227Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag2":"value2,","tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T07:10:52.8699688Z","updatedAt":"2024-09-29T07:10:56.7450373Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '748' + - '901' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:00 GMT + - Sun, 29 Sep 2024 07:11:25 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9a7122d8-5540-4028-b4da-1f0155db06e0 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:11:26 + x-msedge-ref: + - 'Ref A: 3A1CE87A34D3491AAD19F1F40F13D164 Ref B: OSA221030113025 Ref C: 2024-09-29T07:11:25Z' status: code: 200 message: OK @@ -271,38 +260,39 @@ interactions: ParameterSetName: - --name --namespace-name --resource-group User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli3000008?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli3000008","name":"sb-queuecli3000008","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:02.56Z","updatedAt":"2023-03-13T13:48:02.597Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli3000008","name":"sb-queuecli3000008","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:29.2Z","updatedAt":"2024-09-29T07:11:29.233Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1041' + - '1040' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:02 GMT + - Sun, 29 Sep 2024 07:11:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 76bf7d79-60d9-470e-97d8-b8c2d9c11634 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:11:29 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: 9F36BDC2916B42BE8B3C44C3700D9E3A Ref B: OSA221030116025 Ref C: 2024-09-29T07:11:26Z' status: code: 200 message: OK @@ -324,38 +314,39 @@ interactions: ParameterSetName: - --name --namespace-name --resource-group User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli4000009?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli4000009","name":"sb-queuecli4000009","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:04.857Z","updatedAt":"2023-03-13T13:48:04.88Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli4000009","name":"sb-queuecli4000009","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:33.177Z","updatedAt":"2024-09-29T07:11:33.207Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1041' + - '1042' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:04 GMT + - Sun, 29 Sep 2024 07:11:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 85d61744-9a49-4e08-8910-e376c80686db + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:11:33 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' + x-msedge-ref: + - 'Ref A: 4B3732BF92C14488A6009823EC7C4B7E Ref B: TYO201100114051 Ref C: 2024-09-29T07:11:30Z' status: code: 200 message: OK @@ -384,13 +375,12 @@ interactions: --max-delivery-count --status --default-message-time-to-live --enable-batched-operations --forward-to --forward-dead-lettered-messages-to User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT3M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:06.963Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT3M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:36.49Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache @@ -399,23 +389,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:06 GMT + - Sun, 29 Sep 2024 07:11:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - bb3af3f5-57aa-4bc1-8d70-caf91bf63f94 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:11:36 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 757E7320B4C8409C8A0D0B7FEC4DB53B Ref B: TYO201100114039 Ref C: 2024-09-29T07:11:34Z' status: code: 200 message: OK @@ -433,13 +425,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --lock-duration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT3M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:06.963Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT3M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:36.49Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache @@ -448,21 +439,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:07 GMT + - Sun, 29 Sep 2024 07:11:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - e1416f1f-ccc4-421b-b5bb-b9884d12dcb6 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:11:38 + x-msedge-ref: + - 'Ref A: A9E75665F3C549C5B72FB5A4695E9854 Ref B: TYO201100117049 Ref C: 2024-09-29T07:11:37Z' status: code: 200 message: OK @@ -491,38 +484,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --lock-duration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:39Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1103' + - '1104' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:07 GMT + - Sun, 29 Sep 2024 07:11:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f4d63f3b-fecd-4d69-a79f-f4f130248b0e + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:11:39 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 46D12488044B419DACC709374011498F Ref B: TYO201100117049 Ref C: 2024-09-29T07:11:38Z' status: code: 200 message: OK @@ -540,13 +534,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:08.18Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:39.1Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache @@ -555,21 +548,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:08 GMT + - Sun, 29 Sep 2024 07:11:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2c0de8a1-44ef-4b0c-ba67-7535f2bfb9a6 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:11:40 + x-msedge-ref: + - 'Ref A: DF80A3D489744EC8BE1750ED790B2452 Ref B: TYO201151005054 Ref C: 2024-09-29T07:11:39Z' status: code: 200 message: OK @@ -598,38 +593,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:40Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:08 GMT + - Sun, 29 Sep 2024 07:11:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 6b8fbf6b-e1d3-438e-a286-0100ffbd33ab + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:11:40 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 12AC5921F5E84254843B59F62A461C34 Ref B: TYO201151005054 Ref C: 2024-09-29T07:11:40Z' status: code: 200 message: OK @@ -647,36 +643,37 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --max-size User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:08.93Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":4096,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:40.63Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1107' + - '1108' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:09 GMT + - Sun, 29 Sep 2024 07:11:40 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d9eefb54-c68f-4b78-80b6-a2cec551d12e + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:11:41 + x-msedge-ref: + - 'Ref A: 5F433DBA45034E52A4C238CDF6D0A926 Ref B: TYO201100114037 Ref C: 2024-09-29T07:11:41Z' status: code: 200 message: OK @@ -705,38 +702,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --max-size User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:42Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:09 GMT + - Sun, 29 Sep 2024 07:11:41 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ab4363b6-c7d4-48f9-845a-beb3897ce12a + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:11:42 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F66CBA6D62884BF3AE6F84EB7AAD0B77 Ref B: TYO201100114037 Ref C: 2024-09-29T07:11:41Z' status: code: 200 message: OK @@ -754,36 +752,37 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:09.923Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:42.443Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1108' + - '1109' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:09 GMT + - Sun, 29 Sep 2024 07:11:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 09c6f75b-4817-408d-a889-15642c8c27dc + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:11:43 + x-msedge-ref: + - 'Ref A: 636E19548030438E84763A694CA8EAE5 Ref B: TYO201100115019 Ref C: 2024-09-29T07:11:42Z' status: code: 200 message: OK @@ -812,38 +811,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:45Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1097' + - '1098' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:10 GMT + - Sun, 29 Sep 2024 07:11:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 8f9011d8-0012-4b09-9214-19cdaeca1fa9 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:11:45 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 7A314853789445D8AC4E7C16C2E6E4AB Ref B: TYO201100115019 Ref C: 2024-09-29T07:11:43Z' status: code: 200 message: OK @@ -861,36 +861,37 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:10.47Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:45.173Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1106' + - '1108' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:10 GMT + - Sun, 29 Sep 2024 07:11:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 248caf35-3df8-45c0-b13b-bed129acaf46 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:11:46 + x-msedge-ref: + - 'Ref A: 0805847D7AF9405F87C074619B3F995F Ref B: TYO201100117031 Ref C: 2024-09-29T07:11:45Z' status: code: 200 message: OK @@ -919,38 +920,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:46Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:10 GMT + - Sun, 29 Sep 2024 07:11:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 6c996cf2-e12f-440e-88fe-00a6619fb807 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:11:46 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 8FC389BE091441BE9A558F7023F683CC Ref B: TYO201100117031 Ref C: 2024-09-29T07:11:46Z' status: code: 200 message: OK @@ -968,36 +970,37 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --duplicate-detection-history-time-window User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:11.42Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:46.667Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1107' + - '1109' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:11 GMT + - Sun, 29 Sep 2024 07:11:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 1a067cf4-6183-4203-934b-ee153ce2ad3e + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:11:47 + x-msedge-ref: + - 'Ref A: 343B2E9DCCE7423B86E420A8D56DECE3 Ref B: TYO201100115019 Ref C: 2024-09-29T07:11:47Z' status: code: 200 message: OK @@ -1026,38 +1029,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --duplicate-detection-history-time-window User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:49Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1097' + - '1098' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:11 GMT + - Sun, 29 Sep 2024 07:11:49 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9e0b9118-43f9-4da2-9d62-1eb1a0c029d4 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:11:49 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 815A0C8A00374709A73ED98D85C0650C Ref B: TYO201100115019 Ref C: 2024-09-29T07:11:47Z' status: code: 200 message: OK @@ -1075,36 +1079,37 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-dead-lettering-on-message-expiration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:12.567Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:49.447Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1107' + - '1108' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:12 GMT + - Sun, 29 Sep 2024 07:11:49 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 37f2e2b5-fab9-4dff-91cf-d1a8d5a71ed5 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:11:50 + x-msedge-ref: + - 'Ref A: 9D707C2878204ECD8FEBAB5BF88D9147 Ref B: TYO201151006029 Ref C: 2024-09-29T07:11:49Z' status: code: 200 message: OK @@ -1133,38 +1138,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-dead-lettering-on-message-expiration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:51Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:13 GMT + - Sun, 29 Sep 2024 07:11:50 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00d14908-be8d-4c15-b095-eaf56bb2f284 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:11:51 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 2CD67C6083FE4E608F33F84D54157FFC Ref B: TYO201151006029 Ref C: 2024-09-29T07:11:50Z' status: code: 200 message: OK @@ -1182,13 +1188,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-dead-lettering-on-message-expiration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:13.043Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:51.29Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache @@ -1197,17 +1202,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:13 GMT + - Sun, 29 Sep 2024 07:11:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 3065bc87-f973-49e0-b5e4-35fd5084f95f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:11:52 + x-msedge-ref: + - 'Ref A: A79FF2EB0FA64E2C9E2BE9EDA4BAC1EF Ref B: TYO201100117045 Ref C: 2024-09-29T07:11:51Z' status: code: 200 message: OK @@ -1236,34 +1247,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-dead-lettering-on-message-expiration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:52Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1097' + - '1098' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:14 GMT + - Sun, 29 Sep 2024 07:11:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 641df20e-7b0a-4ff1-80f1-3e5bb60de679 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:11:52 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: 19240E3DF0B74D20BFDB2FA5A65E2A3B Ref B: TYO201100117045 Ref C: 2024-09-29T07:11:52Z' status: code: 200 message: OK @@ -1281,13 +1297,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --max-delivery-count User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:14.593Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":8,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:52.78Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache @@ -1296,21 +1311,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:14 GMT + - Sun, 29 Sep 2024 07:11:53 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7a2e79ff-2d8d-4c1f-9239-20b5be578d1e + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:11:53 + x-msedge-ref: + - 'Ref A: 183689EF1C1E466CBA601E0C28183686 Ref B: TYO201100113045 Ref C: 2024-09-29T07:11:53Z' status: code: 200 message: OK @@ -1339,38 +1356,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --max-delivery-count User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:54Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:14 GMT + - Sun, 29 Sep 2024 07:11:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ad7e9415-2830-4500-9a4f-d6e06bbf4fb5 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:11:54 x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: A6D50AA57C8C41DD84AAF15FFA064975 Ref B: TYO201100113045 Ref C: 2024-09-29T07:11:53Z' status: code: 200 message: OK @@ -1388,13 +1406,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --forward-to User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.94Z","updatedAt":"2023-03-13T13:48:15.157Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.413Z","updatedAt":"2024-09-29T07:11:54.98Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli3000008","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache @@ -1403,21 +1420,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:14 GMT + - Sun, 29 Sep 2024 07:11:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 25e01b1f-b6b8-47cb-8729-d47cd1644394 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:11:56 + x-msedge-ref: + - 'Ref A: 22787713ABBE46D7A9B517551234DD1E Ref B: TYO201151005040 Ref C: 2024-09-29T07:11:55Z' status: code: 200 message: OK @@ -1446,38 +1465,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --forward-to User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:57Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:15 GMT + - Sun, 29 Sep 2024 07:11:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 95e6c54f-6ec9-47bb-972a-f8b849256d4e + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:11:57 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 7B3BC962E23B40F894AF7F08549ABAF2 Ref B: TYO201151005040 Ref C: 2024-09-29T07:11:56Z' status: code: 200 message: OK @@ -1495,13 +1515,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --forward-dead-lettered-messages-to User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.9540265Z","updatedAt":"2023-03-13T13:48:15.8299918Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.4486356Z","updatedAt":"2024-09-29T07:11:57.2313019Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli3000008"}}' headers: cache-control: - no-cache @@ -1510,21 +1529,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:15 GMT + - Sun, 29 Sep 2024 07:11:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - e79dda9b-8f4a-464f-a592-6b65f4b86f1b + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:11:57 + x-msedge-ref: + - 'Ref A: A629E58E7E774657B31F647336E25512 Ref B: TYO201151006009 Ref C: 2024-09-29T07:11:57Z' status: code: 200 message: OK @@ -1553,38 +1574,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --forward-dead-lettered-messages-to User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:11:58Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' headers: cache-control: - no-cache content-length: - - '1098' + - '1099' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:15 GMT + - Sun, 29 Sep 2024 07:11:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 32fc8013-9c5d-4841-9224-75326732db40 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:11:59 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 8D2C04F480B04C1A85650944A58661BD Ref B: TYO201151006009 Ref C: 2024-09-29T07:11:58Z' status: code: 200 message: OK @@ -1602,13 +1624,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --status User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.9540265Z","updatedAt":"2023-03-13T13:48:16.3300137Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.4486356Z","updatedAt":"2024-09-29T07:11:59.0281888Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' headers: cache-control: - no-cache @@ -1617,21 +1638,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:15 GMT + - Sun, 29 Sep 2024 07:11:59 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f4971e74-e77b-404f-87b6-7054e915702f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:12:00 + x-msedge-ref: + - 'Ref A: 28B77698DC2540558586A2006E323F17 Ref B: TYO201100115017 Ref C: 2024-09-29T07:11:59Z' status: code: 200 message: OK @@ -1660,38 +1683,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --status User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"SendDisabled","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"SendDisabled","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:12:00Z","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' headers: cache-control: - no-cache content-length: - - '1104' + - '1105' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:16 GMT + - Sun, 29 Sep 2024 07:12:00 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - efa8b895-d5cf-4afe-a5e7-12235adf946f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:12:00 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: FF2265816FF6427E84DD16C29B1D903B Ref B: TYO201100115017 Ref C: 2024-09-29T07:12:00Z' status: code: 200 message: OK @@ -1709,13 +1733,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --max-size User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"SendDisabled","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.9540265Z","updatedAt":"2023-03-13T13:48:16.9237178Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"SendDisabled","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.4486356Z","updatedAt":"2024-09-29T07:12:00.8406745Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' headers: cache-control: - no-cache @@ -1724,21 +1747,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:16 GMT + - Sun, 29 Sep 2024 07:12:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 648f0e03-588c-4da4-b1ff-a06a821f4199 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:12:01 + x-msedge-ref: + - 'Ref A: A00F930E8B854610AA8415FB2E2DD5C8 Ref B: TYO201151002054 Ref C: 2024-09-29T07:12:01Z' status: code: 200 message: OK @@ -1767,38 +1792,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --max-size User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"status":"SendDisabled","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"SendDisabled","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.4486356Z","updatedAt":"2024-09-29T07:12:00.8406745Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}}' headers: cache-control: - no-cache content-length: - - '1051' + - '1123' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:17 GMT + - Sun, 29 Sep 2024 07:12:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 6288916f-d0cf-4778-8359-9b0571b40dda + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:12:03 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 77A148C37B404CCFA609743756D4AEA8 Ref B: TYO201151002054 Ref C: 2024-09-29T07:12:01Z' status: code: 200 message: OK @@ -1822,13 +1848,12 @@ interactions: - --resource-group --name --namespace-name --auto-delete-on-idle --enable-session --enable-express --enable-partitioning User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P7D","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:18.967Z","updatedAt":"2023-03-13T13:48:19.033Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P7D","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:05.483Z","updatedAt":"2024-09-29T07:12:05.567Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache @@ -1837,23 +1862,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:18 GMT + - Sun, 29 Sep 2024 07:12:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c4e3b26f-7263-4aa4-aaf4-aa40459f615c + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:12:06 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + x-msedge-ref: + - 'Ref A: BD26EEFBFEBC4AAEBEDE4B860199523B Ref B: TYO201100114045 Ref C: 2024-09-29T07:12:04Z' status: code: 200 message: OK @@ -1871,13 +1898,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --auto-delete-on-idle User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P7D","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:18.967Z","updatedAt":"2023-03-13T13:48:19.033Z","accessedAt":"0001-01-01T00:00:00Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P7D","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:05.483Z","updatedAt":"2024-09-29T07:12:05.567Z","accessedAt":"0001-01-01T00:00:00Z"}}' headers: cache-control: - no-cache @@ -1886,21 +1912,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:18 GMT + - Sun, 29 Sep 2024 07:12:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d279d6d7-66af-44bb-8721-166cae397f14 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:12:07 + x-msedge-ref: + - 'Ref A: 6FF2C041197A4D9DAACB8466FF09C74F Ref B: TYO201151006031 Ref C: 2024-09-29T07:12:06Z' status: code: 200 message: OK @@ -1927,38 +1955,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --auto-delete-on-idle User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:12:07Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1012' + - '1013' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:19 GMT + - Sun, 29 Sep 2024 07:12:07 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9f8ff938-11c6-4ce2-84cb-e2ad4470e6d8 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:12:07 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: E32DD732A834407B88FE41C210C8352E Ref B: TYO201151006031 Ref C: 2024-09-29T07:12:07Z' status: code: 200 message: OK @@ -1976,36 +2005,37 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-express User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:18.967Z","updatedAt":"2023-03-13T13:48:20.0559428Z","accessedAt":"0001-01-01T00:00:00Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:05.483Z","updatedAt":"2024-09-29T07:12:07.887Z","accessedAt":"0001-01-01T00:00:00Z"}}' headers: cache-control: - no-cache content-length: - - '1027' + - '1023' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:19 GMT + - Sun, 29 Sep 2024 07:12:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - bad7bd15-f325-4322-8358-d775ff2d1710 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:12:08 + x-msedge-ref: + - 'Ref A: 6FB02788313940539F7A7F097D6DFDC0 Ref B: OSA221030113023 Ref C: 2024-09-29T07:12:08Z' status: code: 200 message: OK @@ -2032,38 +2062,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-express User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:12:09Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1013' + - '1014' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:20 GMT + - Sun, 29 Sep 2024 07:12:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 3312c7a5-9020-4212-aaf4-f35bcca55699 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:12:09 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' + x-msedge-ref: + - 'Ref A: D0B26E510AD4432A8E57D73D7D8528FB Ref B: OSA221030113023 Ref C: 2024-09-29T07:12:08Z' status: code: 200 message: OK @@ -2081,36 +2112,37 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-express User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:18.967Z","updatedAt":"2023-03-13T13:48:20.6496475Z","accessedAt":"0001-01-01T00:00:00Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:05.483Z","updatedAt":"2024-09-29T07:12:09.03Z","accessedAt":"0001-01-01T00:00:00Z"}}' headers: cache-control: - no-cache content-length: - - '1028' + - '1023' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:20 GMT + - Sun, 29 Sep 2024 07:12:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 969dab27-4434-4c33-b28c-d93390448532 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:12:10 + x-msedge-ref: + - 'Ref A: 79EB5F080EAE4FE7963F5477DE3482FE Ref B: OSA221030113049 Ref C: 2024-09-29T07:12:09Z' status: code: 200 message: OK @@ -2137,38 +2169,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --enable-express User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:12:11Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1012' + - '1013' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:20 GMT + - Sun, 29 Sep 2024 07:12:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 70f4997e-84aa-45ee-b23c-4946a9492c46 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:12:11 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 3980453E5DE149E7A9133EB415DB310C Ref B: OSA221030113049 Ref C: 2024-09-29T07:12:10Z' status: code: 200 message: OK @@ -2186,13 +2219,12 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --status User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:18.967Z","updatedAt":"2023-03-13T13:48:21.2121475Z","accessedAt":"0001-01-01T00:00:00Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:05.483Z","updatedAt":"2024-09-29T07:12:11.7119417Z","accessedAt":"0001-01-01T00:00:00Z"}}' headers: cache-control: - no-cache @@ -2201,21 +2233,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:21 GMT + - Sun, 29 Sep 2024 07:12:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 289b6ad1-fcc1-457b-928f-39d756c129ee + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:12:12 + x-msedge-ref: + - 'Ref A: A7E6B8E83E404AF09D521473D3C15804 Ref B: TYO201100116009 Ref C: 2024-09-29T07:12:12Z' status: code: 200 message: OK @@ -2242,38 +2276,39 @@ interactions: ParameterSetName: - --resource-group --name --namespace-name --status User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"ReceiveDisabled","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"ReceiveDisabled","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:12:14Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1021' + - '1022' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:22 GMT + - Sun, 29 Sep 2024 07:12:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 67f97a25-599d-4fa0-9053-14f8db6e1fa4 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:12:14 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: BB0C50A5582D40AEAAE414038DC381A1 Ref B: TYO201100116009 Ref C: 2024-09-29T07:12:12Z' status: code: 200 message: OK @@ -2295,38 +2330,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --auto-delete-on-idle --max-size User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT10M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:24.253Z","updatedAt":"2023-03-13T13:48:24.287Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT10M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:16.53Z","updatedAt":"2024-09-29T07:12:16.59Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1019' + - '1017' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:23 GMT + - Sun, 29 Sep 2024 07:12:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 79bcca0a-43a3-4244-8888-01dfe83ef23f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:12:17 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: C357664D5B844362BF5FB20DA171C5B0 Ref B: TYO201100113045 Ref C: 2024-09-29T07:12:14Z' status: code: 200 message: OK @@ -2344,36 +2380,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT10M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:24.253Z","updatedAt":"2023-03-13T13:48:24.287Z","accessedAt":"0001-01-01T00:00:00Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT10M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:16.53Z","updatedAt":"2024-09-29T07:12:16.59Z","accessedAt":"0001-01-01T00:00:00Z"}}' headers: cache-control: - no-cache content-length: - - '1020' + - '1018' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:24 GMT + - Sun, 29 Sep 2024 07:12:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7ff7107a-8e75-4e51-9d56-b1e3163a6b39 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:12:18 + x-msedge-ref: + - 'Ref A: 3C9524065B7D46F796664F16F6E79CA3 Ref B: OSA221030115033 Ref C: 2024-09-29T07:12:17Z' status: code: 200 message: OK @@ -2391,36 +2428,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --auto-delete-on-idle User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT10M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:24.253Z","updatedAt":"2023-03-13T13:48:24.287Z","accessedAt":"0001-01-01T00:00:00Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT10M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:16.53Z","updatedAt":"2024-09-29T07:12:16.59Z","accessedAt":"0001-01-01T00:00:00Z"}}' headers: cache-control: - no-cache content-length: - - '1020' + - '1018' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:25 GMT + - Sun, 29 Sep 2024 07:12:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7375322a-ed60-493b-b360-f14b28af82a1 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:12:19 + x-msedge-ref: + - 'Ref A: 400B7C9C7CFA4C50B163582A1E373FFA Ref B: OSA221030116021 Ref C: 2024-09-29T07:12:18Z' status: code: 200 message: OK @@ -2447,38 +2485,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --auto-delete-on-idle User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT11M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT11M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:12:19Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1009' + - '1010' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:25 GMT + - Sun, 29 Sep 2024 07:12:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2bafdcc5-8cc2-40e4-8429-9a7351570d41 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:12:19 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 2E2B4C95E21C4C9781B15A36C14E65AC Ref B: OSA221030116021 Ref C: 2024-09-29T07:12:19Z' status: code: 200 message: OK @@ -2496,38 +2535,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues?api-version=2022-01-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"SendDisabled","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:06.9540265Z","updatedAt":"2023-03-13T13:48:16.9237178Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"ReceiveDisabled","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:18.967Z","updatedAt":"2023-03-13T13:48:22.5390287Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli3000008","name":"sb-queuecli3000008","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:02.56Z","updatedAt":"2023-03-13T13:48:02.597Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli4000009","name":"sb-queuecli4000009","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:04.857Z","updatedAt":"2023-03-13T13:48:04.88Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT11M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-13T13:48:24.253Z","updatedAt":"2023-03-13T13:48:25.967Z","accessedAt":"0001-01-01T00:00:00Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000006","name":"sb-queuecli2000006","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":16384,"requiresDuplicateDetection":false,"requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"ReceiveDisabled","autoDeleteOnIdle":"P1DT3M4S","enablePartitioning":true,"enableExpress":true,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:05.483Z","updatedAt":"2024-09-29T07:12:14.2588339Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli2000005","name":"sb-queuecli2000005","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT2M","maxSizeInMegabytes":2048,"requiresDuplicateDetection":true,"requiresSession":false,"defaultMessageTimeToLive":"P1DT3M4S","deadLetteringOnMessageExpiration":true,"enableBatchedOperations":false,"duplicateDetectionHistoryTimeWindow":"PT8M","maxDeliveryCount":15,"sizeInBytes":0,"messageCount":0,"status":"SendDisabled","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:36.4486356Z","updatedAt":"2024-09-29T07:12:00.8406745Z","accessedAt":"0001-01-01T00:00:00Z","forwardTo":"sb-queuecli4000009","forwardDeadLetteredMessagesTo":"sb-queuecli4000009"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli000004","name":"sb-queuecli000004","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"PT11M","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:12:16.53Z","updatedAt":"2024-09-29T07:12:19.783Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli3000008","name":"sb-queuecli3000008","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:29.2177818Z","updatedAt":"2024-09-29T07:11:29.2177818Z","accessedAt":"0001-01-01T00:00:00Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/queues/sb-queuecli4000009","name":"sb-queuecli4000009","type":"Microsoft.ServiceBus/namespaces/queues","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T07:11:33.1821496Z","updatedAt":"2024-09-29T07:11:33.1821496Z","accessedAt":"0001-01-01T00:00:00Z"}}]}' headers: cache-control: - no-cache content-length: - - '5279' + - '5296' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:48:26 GMT + - Sun, 29 Sep 2024 07:12:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-inline-count: - '' + x-ms-messaging-activity-id: + - b2e9fee6-09f3-4380-ad23-aab8a7cd504b + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:12:21 + x-msedge-ref: + - 'Ref A: 5D4995484A164206873C028499A6FF40 Ref B: TYO201151006054 Ref C: 2024-09-29T07:12:20Z' status: code: 200 message: OK @@ -2547,10 +2587,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: string: '' @@ -2560,24 +2599,75 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:48:28 GMT + - Sun, 29 Sep 2024 07:12:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/1398b089-527f-4feb-bcc8-b1be052ad29b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631907431926388&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=YB37tLY_QB46gkVHzC9Aw8HsyKSNe9FlpnkLJdaUcWJItW0Z2I5HG2zBh-kgrnTuNIeb9R2fIVDkK-WO7_POnNvNdeLOTVSdARiQLswW-_qBAcrj5ewQx6zbB71dxJqR2WAysC9x97fZ9pXIKW2awIPGzQkdlMeDi0wO1mWvNFKFpCPpyq8P2fZcvUGduIn5XJiz0MAZ82nKdtlXFqSlpYFSs_iB0uw4vZpmDxWIs1DXAysOyu2lh_a4bziVeUUx6HhJ_dv3nARqQqK6t2sD6WwUyPT4Tiq9l8bljX2jGXtnLNtHeL5qBl9gfCGtBTkZqwjSshV6IjnqySvio8KBUQ&h=0W0FY1uVbqmYNg1Y-yA_OKGKdP2bsOfsf17U-h0gu6g pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000003104 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:12:23 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: A847335A13C24EEAB83E12AC1491D969 Ref B: TYO201100116033 Ref C: 2024-09-29T07:12:21Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/1398b089-527f-4feb-bcc8-b1be052ad29b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631907431926388&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=YB37tLY_QB46gkVHzC9Aw8HsyKSNe9FlpnkLJdaUcWJItW0Z2I5HG2zBh-kgrnTuNIeb9R2fIVDkK-WO7_POnNvNdeLOTVSdARiQLswW-_qBAcrj5ewQx6zbB71dxJqR2WAysC9x97fZ9pXIKW2awIPGzQkdlMeDi0wO1mWvNFKFpCPpyq8P2fZcvUGduIn5XJiz0MAZ82nKdtlXFqSlpYFSs_iB0uw4vZpmDxWIs1DXAysOyu2lh_a4bziVeUUx6HhJ_dv3nARqQqK6t2sD6WwUyPT4Tiq9l8bljX2jGXtnLNtHeL5qBl9gfCGtBTkZqwjSshV6IjnqySvio8KBUQ&h=0W0FY1uVbqmYNg1Y-yA_OKGKdP2bsOfsf17U-h0gu6g + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 29 Sep 2024 07:12:22 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/1398b089-527f-4feb-bcc8-b1be052ad29b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631907439180500&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=Vby9_Zcz8VHqQfrOgTLXy5Htg1f0bT5AgaCnWt-Mvg1RkMFBT-H36Y3BgVJQCHLTye6x1Ow5cfw7vHBTsY6wwaZMYREDZonRED_eBkbEmTCOXbmPOBi6xXgs8_zVAub0wrp5GQnPDox0AaFN1mpFG0jUkr-YWN8d5YxaTr8mOZa4tR88QVnMN24LOUS672SSfsACB4c7iBKAHyzEjdH75e_7qvuy49-W992zVhR3DbCbAZhobmDWJE-8RuQDzJ7m-wDAHOYNS9C31t-mHds98qyygAaOYppFTlydcxsCSVFa4pLDjDtViL5mupvJ1pmxHVHCMgllTcDETuVJPjNYBw&h=1_T_ukCIZz_un0TR-gQPx_QmXg1OtRccq84JynHiN7s + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008960 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:12:23 + x-msedge-ref: + - 'Ref A: 86749B35432A49F18A97F938D7862B3C Ref B: TYO201100116033 Ref C: 2024-09-29T07:12:23Z' status: code: 202 message: Accepted @@ -2595,10 +2685,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/1398b089-527f-4feb-bcc8-b1be052ad29b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631907439180500&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=Vby9_Zcz8VHqQfrOgTLXy5Htg1f0bT5AgaCnWt-Mvg1RkMFBT-H36Y3BgVJQCHLTye6x1Ow5cfw7vHBTsY6wwaZMYREDZonRED_eBkbEmTCOXbmPOBi6xXgs8_zVAub0wrp5GQnPDox0AaFN1mpFG0jUkr-YWN8d5YxaTr8mOZa4tR88QVnMN24LOUS672SSfsACB4c7iBKAHyzEjdH75e_7qvuy49-W992zVhR3DbCbAZhobmDWJE-8RuQDzJ7m-wDAHOYNS9C31t-mHds98qyygAaOYppFTlydcxsCSVFa4pLDjDtViL5mupvJ1pmxHVHCMgllTcDETuVJPjNYBw&h=1_T_ukCIZz_un0TR-gQPx_QmXg1OtRccq84JynHiN7s response: body: string: '' @@ -2606,20 +2695,25 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Mar 2023 13:48:57 GMT + - Sun, 29 Sep 2024 07:12:53 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/1398b089-527f-4feb-bcc8-b1be052ad29b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631907746088343&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=vVlEfJPTMfRIN0G6tpCByeYWh-sv1x0fahvKelUy8OuchCx0u3VIHNHwXYS6jyXUsOAAaF1BR19cilyWCDtMgHLONDs96zvlGuHp6rBomyBvoiVQc7I02g3zgZHaYmL1alqb77og5loDk-N5w3pBr9Hr6j8myHNEgBRDaikfukYZMJs-9HsnSGrmUwbxZJ65IVpYEjAmY8eNjrB5bIICXRDDOQjSrrD8fcrS7kexula136oR33TGP5ZgDxnUJ2LmrYH_-fW1_BjIarri4ICUiOaZOlOpOQweyAOaq6B4go7W9OlJgecdjVOHC8E1P8twRiIwMXvnHLqFjmwf48ZDGQ&h=UDjabyjAzHcKaBek2eSZGJB5puviyeo_27qDBMv6gSI pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008960 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:12:54 + x-msedge-ref: + - 'Ref A: 79EF8CEB9933423E8F17B2D65FFCC688 Ref B: TYO201100116033 Ref C: 2024-09-29T07:12:53Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_rules.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_rules.yaml index 80e4a5f11c3..037a24d2b70 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_rules.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_rules.yaml @@ -13,37 +13,39 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_rules000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001","name":"cli_test_sb_rules000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-23T16:34:41Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001","name":"cli_test_sb_rules000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_rules","date":"2024-09-29T07:30:26Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '324' + - '369' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:34:51 GMT + - Sun, 29 Sep 2024 07:30:30 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 7005A7A4E85A4DF4A0229DA2DAA86350 Ref B: OSA221030114045 Ref C: 2024-09-29T07:30:30Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "westus", "sku": {"name": "Standard", - "tier": "Standard"}, "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' + body: '{"location": "westus", "sku": {"name": "Standard", "tier": "Standard"}, + "tags": {"{tag2: value2,": "", "tag1: value1}": ""}}' headers: Accept: - application/json @@ -54,50 +56,49 @@ interactions: Connection: - keep-alive Content-Length: - - '154' + - '124' Content-Type: - application/json ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-03-23T16:34:53.87Z","updatedAt":"2023-03-23T16:34:53.87Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T07:30:35.4735615Z","updatedAt":"2024-09-29T07:30:35.4735615Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '752' + - '908' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:34:53 GMT + - Sun, 29 Sep 2024 07:30:35 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a81ab52d-d893-4a97-8fee-64e280453e50 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:30:35 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: C5368CE47E334D82A990B3E5DAC76513 Ref B: OSA221030114037 Ref C: 2024-09-29T07:30:30Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -112,39 +113,38 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-03-23T16:34:53.87Z","updatedAt":"2023-03-23T16:34:53.87Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T07:30:35.4735615Z","updatedAt":"2024-09-29T07:30:35.4735615Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '752' + - '908' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:35:24 GMT + - Sun, 29 Sep 2024 07:30:35 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c8385814-cd40-4ed0-8160-7aa4438bc87c + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:30:36 + x-msedge-ref: + - 'Ref A: F2BF5B7C32EE4F31BB937DFB08D70D98 Ref B: OSA221030114037 Ref C: 2024-09-29T07:30:36Z' status: code: 200 message: OK @@ -162,39 +162,38 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-03-23T16:34:53.87Z","updatedAt":"2023-03-23T16:35:38.243Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T07:30:35.4735615Z","updatedAt":"2024-09-29T07:30:38.7704108Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '751' + - '905' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:35:55 GMT + - Sun, 29 Sep 2024 07:31:06 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - bc75bc49-b336-4a22-b57d-061dea054a24 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:31:07 + x-msedge-ref: + - 'Ref A: 12DE80C4C8544DE78E5BF1AC9F51DEC1 Ref B: OSA221030114037 Ref C: 2024-09-29T07:31:06Z' status: code: 200 message: OK @@ -212,39 +211,38 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","createdAt":"2023-03-23T16:34:53.87Z","updatedAt":"2023-03-23T16:35:38.243Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T07:30:35.4735615Z","updatedAt":"2024-09-29T07:30:38.7704108Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '751' + - '905' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:35:55 GMT + - Sun, 29 Sep 2024 07:31:08 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ab862ac9-e3c7-49ba-a6d7-16f3669268c1 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:31:08 + x-msedge-ref: + - 'Ref A: FB21F69E5D6346EBBB8EEF632026A868 Ref B: OSA221030113033 Ref C: 2024-09-29T07:31:07Z' status: code: 200 message: OK @@ -266,37 +264,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-23T16:35:58.78Z","updatedAt":"2023-03-23T16:35:58.82Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:31:10.967Z","updatedAt":"2024-09-29T07:31:10.99Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '957' + - '958' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:35:59 GMT + - Sun, 29 Sep 2024 07:31:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - dd497591-b317-4adb-8a53-ae0fdea7af10 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:31:11 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 56AE7F5BBB314C33AB816A07F914BD8E Ref B: OSA221030114039 Ref C: 2024-09-29T07:31:08Z' status: code: 200 message: OK @@ -314,35 +314,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-23T16:35:58.78Z","updatedAt":"2023-03-23T16:35:58.82Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:31:10.967Z","updatedAt":"2024-09-29T07:31:10.99Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '958' + - '959' content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:35:59 GMT + - Sun, 29 Sep 2024 07:31:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5dfc3144-90b5-46b6-ac0f-8872ef5b6e47 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:31:12 + x-msedge-ref: + - 'Ref A: 00889821E63749138A7650D2915ACE46 Ref B: TYO201151002025 Ref C: 2024-09-29T07:31:11Z' status: code: 200 message: OK @@ -364,12 +366,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006","name":"sb-subscli000006","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-23T16:36:02.1265002Z","updatedAt":"2023-03-23T16:36:02.1265002Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006","name":"sb-subscli000006","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:31:15.7467577Z","updatedAt":"2024-09-29T07:31:15.7467577Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' headers: cache-control: - no-cache @@ -378,23 +380,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:36:01 GMT + - Sun, 29 Sep 2024 07:31:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 89d95b8c-90b0-4480-b79d-b3a60fbb3aad + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:31:15 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 4DFF84049AE24F1BA7308A4F9D206893 Ref B: OSA221030113039 Ref C: 2024-09-29T07:31:13Z' status: code: 200 message: OK @@ -412,12 +416,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006","name":"sb-subscli000006","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-23T16:36:02.1310646Z","updatedAt":"2023-03-23T16:36:02.1310646Z","accessedAt":"2023-03-23T16:36:02.1310646Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006","name":"sb-subscli000006","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:31:15.7501734Z","updatedAt":"2024-09-29T07:31:15.7501734Z","accessedAt":"2024-09-29T07:31:15.7501734Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' headers: cache-control: - no-cache @@ -426,21 +430,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:36:02 GMT + - Sun, 29 Sep 2024 07:31:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ef0d2c1e-69d2-4f7c-90bc-e6ac27d99f5a + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:31:17 + x-msedge-ref: + - 'Ref A: 8252779D879C4F81A45AEC0DC81C84B9 Ref B: TYO201100117039 Ref C: 2024-09-29T07:31:16Z' status: code: 200 message: OK @@ -463,7 +469,7 @@ interactions: - --resource-group --namespace-name --topic-name --subscription-name --name --filter-sql-expression User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006/rules/sb-rulecli3000009?api-version=2022-10-01-preview response: @@ -477,23 +483,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:36:05 GMT + - Sun, 29 Sep 2024 07:31:21 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b95a1e36-a806-4b28-8cec-5bfa97f31d48 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:31:21 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 20718A83CC274713893AA0F4832A10F0 Ref B: OSA221030116031 Ref C: 2024-09-29T07:31:17Z' status: code: 200 message: OK @@ -517,7 +525,7 @@ interactions: - --resource-group --namespace-name --topic-name --subscription-name --name --filter-type --filter-sql-expression --enable-sql-preprocessing User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006/rules/sb-rulecli2000008?api-version=2022-10-01-preview response: @@ -531,23 +539,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:36:07 GMT + - Sun, 29 Sep 2024 07:31:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 0e32d456-aa5b-4392-a5f7-852961213178 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:31:24 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 07715E15B1E042E49BCCDDF473DF437B Ref B: TYO201100116011 Ref C: 2024-09-29T07:31:21Z' status: code: 200 message: OK @@ -574,7 +584,7 @@ interactions: --filter-type --correlation-id --label --message-id --reply-to --session-id --reply-to-session-id --content-type --to --correlation-filter-property User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006/rules/sb-rulecli000007?api-version=2022-10-01-preview response: @@ -588,23 +598,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:36:10 GMT + - Sun, 29 Sep 2024 07:31:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5473ed5a-dad8-4ece-98da-fe70e62ba645 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:31:28 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: E81717DA300B41AFB606C20AF9421B5D Ref B: OSA221030114033 Ref C: 2024-09-29T07:31:25Z' status: code: 200 message: OK @@ -622,7 +634,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --subscription-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006/rules/sb-rulecli000007?api-version=2022-10-01-preview response: @@ -636,21 +648,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:36:11 GMT + - Sun, 29 Sep 2024 07:31:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b7d71bf0-94f5-4c31-a0cf-28e84e1d1e50 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:31:29 + x-msedge-ref: + - 'Ref A: 130D2166C0E54E08BB755AC8F728B266 Ref B: TYO201151006011 Ref C: 2024-09-29T07:31:29Z' status: code: 200 message: OK @@ -669,7 +683,7 @@ interactions: - --resource-group --namespace-name --topic-name --subscription-name --name --filter-sql-expression User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006/rules/sb-rulecli3000009?api-version=2022-10-01-preview response: @@ -683,21 +697,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:36:12 GMT + - Sun, 29 Sep 2024 07:31:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - e2ea67de-a9d6-4d1f-a0b1-6934d78fc72b + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:31:30 + x-msedge-ref: + - 'Ref A: DB048417F03541D99D7D990352FA3AEC Ref B: TYO201151004029 Ref C: 2024-09-29T07:31:30Z' status: code: 200 message: OK @@ -721,7 +737,7 @@ interactions: - --resource-group --namespace-name --topic-name --subscription-name --name --filter-sql-expression User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006/rules/sb-rulecli3000009?api-version=2022-10-01-preview response: @@ -735,23 +751,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:36:13 GMT + - Sun, 29 Sep 2024 07:31:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 3c4f6595-6924-4fb5-bfb2-4785bf91de8f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:31:32 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 0F4045E8251643759CEF50890372A34A Ref B: TYO201151004029 Ref C: 2024-09-29T07:31:30Z' status: code: 200 message: OK @@ -769,7 +787,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --subscription-name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006/rules?api-version=2022-10-01-preview response: @@ -783,23 +801,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 23 Mar 2023 16:36:13 GMT + - Sun, 29 Sep 2024 07:31:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-inline-count: - '' + x-ms-messaging-activity-id: + - df6b0198-b73c-499b-8f01-f47252601464 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:31:34 + x-msedge-ref: + - 'Ref A: 009F3AE645A04FFA9548120787E5FD6E Ref B: TYO201151001042 Ref C: 2024-09-29T07:31:33Z' status: code: 200 message: OK @@ -819,7 +839,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --subscription-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006/rules/sb-rulecli000007?api-version=2022-10-01-preview response: @@ -831,19 +851,25 @@ interactions: content-length: - '0' date: - - Thu, 23 Mar 2023 16:36:14 GMT + - Sun, 29 Sep 2024 07:31:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008960 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:31:34 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 97E6FCFEADE44B3AA2F1342D6CCA99F1 Ref B: TYO201151005042 Ref C: 2024-09-29T07:31:34Z' status: code: 200 message: OK @@ -863,7 +889,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000006?api-version=2022-01-01-preview response: @@ -875,19 +901,25 @@ interactions: content-length: - '0' date: - - Thu, 23 Mar 2023 16:36:15 GMT + - Sun, 29 Sep 2024 07:31:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008796 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:31:35 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: D95340FB7B444AF7938E8A5946CEAD33 Ref B: TYO201100113053 Ref C: 2024-09-29T07:31:35Z' status: code: 200 message: OK @@ -907,7 +939,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: @@ -919,19 +951,25 @@ interactions: content-length: - '0' date: - - Thu, 23 Mar 2023 16:36:16 GMT + - Sun, 29 Sep 2024 07:31:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000003104 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:31:37 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 6ACD9520BE8B407E9910D4709192AAD5 Ref B: OSA221030113039 Ref C: 2024-09-29T07:31:36Z' status: code: 200 message: OK @@ -951,9 +989,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: string: '' @@ -963,24 +1001,27 @@ interactions: content-length: - '0' date: - - Thu, 23 Mar 2023 16:36:18 GMT + - Sun, 29 Sep 2024 07:31:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/e1679961-f317-4460-9db9-4359d6bf32f9?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631919013887276&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=nmvlSk57l6wO1nMDgPUecnRT8Ukzn7xi2UYhe6Lzreyh2rm9ytge8C08eA1eWETBoh1HdzT6pqcLR39v9K9I7-W-dTix1PDwKYg1gCLldtQWZF1W6i4mPuGbY0CSqTdns-oZdoq6DjB2RTKtri-Xsy8IR22IhPXh1C1j5_oXM1bhwAklja0lvetT7G8bYNgZIvyx6FQbTTpE7NmuTGBTkNlqpZ3IzD_k_UKe4AjS7869Xq3UUrIUx2JYRY6KeU0Uc-johlCXoyAyfoE2o-dQxgXMuTRiuXhgVOKa8ambNGhopgzLS-Zb3b_RbHjKTY6hHudF18c9YNfwQ_foQ2Vb9Q&h=iEBkEBh_1tYlBRuK1VVE66zLDaDrVcpzc_5JEx52oKw pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001300 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:31:41 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 8D1161D4A66F40F7A965374E3DCB13F8 Ref B: OSA221030115035 Ref C: 2024-09-29T07:31:37Z' status: code: 202 message: Accepted @@ -998,30 +1039,83 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_rules000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/e1679961-f317-4460-9db9-4359d6bf32f9?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631919013887276&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=nmvlSk57l6wO1nMDgPUecnRT8Ukzn7xi2UYhe6Lzreyh2rm9ytge8C08eA1eWETBoh1HdzT6pqcLR39v9K9I7-W-dTix1PDwKYg1gCLldtQWZF1W6i4mPuGbY0CSqTdns-oZdoq6DjB2RTKtri-Xsy8IR22IhPXh1C1j5_oXM1bhwAklja0lvetT7G8bYNgZIvyx6FQbTTpE7NmuTGBTkNlqpZ3IzD_k_UKe4AjS7869Xq3UUrIUx2JYRY6KeU0Uc-johlCXoyAyfoE2o-dQxgXMuTRiuXhgVOKa8ambNGhopgzLS-Zb3b_RbHjKTY6hHudF18c9YNfwQ_foQ2Vb9Q&h=iEBkEBh_1tYlBRuK1VVE66zLDaDrVcpzc_5JEx52oKw response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Thu, 23 Mar 2023 16:36:48 GMT + - Sun, 29 Sep 2024 07:31:41 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/e1679961-f317-4460-9db9-4359d6bf32f9?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631919022393746&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=eM6XZJFWWfUtw4yLbXf4IqOEj4IaNnin2SbLTQW1VdvnwqMKPwGgHoXuqfgikVOB3RgiDKUTposOB_10reR4IQYY2AKUW17lj56Hnn5i2GRWsM3e6g9gMU2v1x4sprCO6TyYC6g6cynX94HNqNSq2NOgXSZycJp5f666yahFEjelTY1ukYR_7ahxf_du_VvQJ-c_UsTXFv_JH8NuvjfQhEgDq5eEx56ktFDw6f7CXhKqq8GCGZa8mf3iOuL69A9jLj15LcyF8dqL7ZkNpaPnIfDogbUmnlSr4oZGhHyxR5w93p_0EpSTbhXbWPFZsJ__eG1x7-y2caDAAJk9Yod26g&h=YQKXX3SHenRm8ecGW_1YQov_oFMMenN80aSTcZK_TWM + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008796 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:31:42 + x-msedge-ref: + - 'Ref A: B748B556FBDD4211AE217DCB9ABBD816 Ref B: OSA221030115035 Ref C: 2024-09-29T07:31:41Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/e1679961-f317-4460-9db9-4359d6bf32f9?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631919022393746&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=eM6XZJFWWfUtw4yLbXf4IqOEj4IaNnin2SbLTQW1VdvnwqMKPwGgHoXuqfgikVOB3RgiDKUTposOB_10reR4IQYY2AKUW17lj56Hnn5i2GRWsM3e6g9gMU2v1x4sprCO6TyYC6g6cynX94HNqNSq2NOgXSZycJp5f666yahFEjelTY1ukYR_7ahxf_du_VvQJ-c_UsTXFv_JH8NuvjfQhEgDq5eEx56ktFDw6f7CXhKqq8GCGZa8mf3iOuL69A9jLj15LcyF8dqL7ZkNpaPnIfDogbUmnlSr4oZGhHyxR5w93p_0EpSTbhXbWPFZsJ__eG1x7-y2caDAAJk9Yod26g&h=YQKXX3SHenRm8ecGW_1YQov_oFMMenN80aSTcZK_TWM + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Sun, 29 Sep 2024 07:32:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/e1679961-f317-4460-9db9-4359d6bf32f9?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631919329822230&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=C1cEJWEbwtZvAYlpiLpHA94KM2qEAqGco8ax8EvX-a-B6ofdVQRdN1sGAEDHz2upaxk4VTI_j0QE2Cacg5ZOMhfez_af5IqQwYyQyWXTFseHV6eYEHT8xsabGEP7jeszfmwxsgy4-dvUj7sKo1-DUQ6wY2o7PKXZX1j7iP7OzzYTPsDdzyAz3v8wxuTZbrrCgsc3HSLTSFc28BlegLXwFeEy8MqOaOk2RZP18Vxi0UGgF0YljTmOTZNG2cINquzSL_wPNkoroDPtrT4AS-GeXXcoxdvZ1s1EaoG8FL89U0EpvqqI5gINT08mt9IdF4RSw0_n4BblCoRvcp03tUsomQ&h=kZMOhHUW6HCT_InHE7eT_rnhc7HJsLu5vDTQw6pSEa8 pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001364 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:32:12 + x-msedge-ref: + - 'Ref A: 222CCE28585C417991BBC9350B6514C2 Ref B: OSA221030115035 Ref C: 2024-09-29T07:32:12Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_subscription.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_subscription.yaml index 4951a85b11a..b4aa9326263 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_subscription.yaml @@ -13,38 +13,39 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001","name":"cli_test_sb_subscription000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T13:54:13Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001","name":"cli_test_sb_subscription000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_subscription","date":"2024-09-29T07:33:27Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '338' + - '390' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:54:14 GMT + - Sun, 29 Sep 2024 07:33:29 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 071D734ACA4442A09CB1713B793D3081 Ref B: OSA221030116047 Ref C: 2024-09-29T07:33:30Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "westus", "sku": {"name": "Standard", - "tier": "Standard"}, "tags": {"{tag2: value2,": "", "tag1: value1}": ""}}' + body: '{"location": "westus", "sku": {"name": "Standard", "tier": "Standard"}, + "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' headers: Accept: - application/json @@ -55,51 +56,49 @@ interactions: Connection: - keep-alive Content-Length: - - '154' + - '124' Content-Type: - application/json ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:54:16.227Z","updatedAt":"2023-03-13T13:54:16.227Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T07:33:33.8739978Z","updatedAt":"2024-09-29T07:33:33.8739978Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '761' + - '915' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:54:17 GMT + - Sun, 29 Sep 2024 07:33:34 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d7fc9b6f-3df3-4ba3-8f0e-ecb4f0838925 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:33:33 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' + x-msedge-ref: + - 'Ref A: 5BCE0B86556F431CB28B7C09B19908C6 Ref B: OSA221030114009 Ref C: 2024-09-29T07:33:30Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -114,40 +113,38 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:54:16.227Z","updatedAt":"2023-03-13T13:54:16.227Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T07:33:33.8739978Z","updatedAt":"2024-09-29T07:33:33.8739978Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '761' + - '915' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:54:47 GMT + - Sun, 29 Sep 2024 07:33:34 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c5b3276c-8f8e-4a43-8467-d76bab95005f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:33:35 + x-msedge-ref: + - 'Ref A: 3753AAAAEBEE4116B422FAC24E31CC59 Ref B: OSA221030114009 Ref C: 2024-09-29T07:33:34Z' status: code: 200 message: OK @@ -165,40 +162,38 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:54:16.227Z","updatedAt":"2023-03-13T13:55:01.083Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T07:33:33.8739978Z","updatedAt":"2024-09-29T07:33:38.6875545Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '759' + - '912' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:17 GMT + - Sun, 29 Sep 2024 07:34:05 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - e87af1b6-e88b-4fc7-b604-9e9199d4e08b + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:34:05 + x-msedge-ref: + - 'Ref A: EE96E5C72D244D7789F9965DB5FAA818 Ref B: OSA221030114009 Ref C: 2024-09-29T07:34:05Z' status: code: 200 message: OK @@ -216,40 +211,38 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag2: value2,":"","tag1: value1}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:54:16.227Z","updatedAt":"2023-03-13T13:55:01.083Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T07:33:33.8739978Z","updatedAt":"2024-09-29T07:33:38.6875545Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '759' + - '912' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:17 GMT + - Sun, 29 Sep 2024 07:34:06 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 51edf6d1-1deb-4138-a5bc-bc1809859f73 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:07 + x-msedge-ref: + - 'Ref A: B4D57E2499E948EBAC8265ED8294E7F0 Ref B: TYO201100113035 Ref C: 2024-09-29T07:34:06Z' status: code: 200 message: OK @@ -271,13 +264,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000005","name":"sb-topiccli000005","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-13T13:55:20.007Z","updatedAt":"2023-03-13T13:55:20.043Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000005","name":"sb-topiccli000005","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:34:09.523Z","updatedAt":"2024-09-29T07:34:09.547Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -286,23 +278,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:19 GMT + - Sun, 29 Sep 2024 07:34:09 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c26fa1e8-d2e1-4c16-b34e-7df1bec0841a + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:10 x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: 426DC554055C41C58B957B7D069C79CC Ref B: TYO201151006011 Ref C: 2024-09-29T07:34:07Z' status: code: 200 message: OK @@ -320,13 +314,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000005","name":"sb-topiccli000005","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-13T13:55:20.007Z","updatedAt":"2023-03-13T13:55:20.043Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000005","name":"sb-topiccli000005","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:34:09.523Z","updatedAt":"2024-09-29T07:34:09.547Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -335,21 +328,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:20 GMT + - Sun, 29 Sep 2024 07:34:10 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 44f5dc5b-6160-4f15-abca-7351791eaa4b + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:11 + x-msedge-ref: + - 'Ref A: 62F09B805503445E8693552E1B0110D5 Ref B: OSA221030114049 Ref C: 2024-09-29T07:34:10Z' status: code: 200 message: OK @@ -371,38 +366,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-13T13:55:22.66Z","updatedAt":"2023-03-13T13:55:22.69Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:34:13.857Z","updatedAt":"2024-09-29T07:34:13.89Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '964' + - '965' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:22 GMT + - Sun, 29 Sep 2024 07:34:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 91c81ac1-50e4-467e-bd9c-11c82b030b3d + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:34:14 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' + x-msedge-ref: + - 'Ref A: 006133CABE19467293750CEB0FDDD0D3 Ref B: OSA221030115031 Ref C: 2024-09-29T07:34:11Z' status: code: 200 message: OK @@ -420,36 +416,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-13T13:55:22.66Z","updatedAt":"2023-03-13T13:55:22.69Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:34:13.857Z","updatedAt":"2024-09-29T07:34:13.89Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '965' + - '966' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:23 GMT + - Sun, 29 Sep 2024 07:34:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5f26cd03-a855-43f1-a317-cdfe3e67f4d9 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:15 + x-msedge-ref: + - 'Ref A: B43E0132031B4D89BD401129A15085DF Ref B: TYO201100113051 Ref C: 2024-09-29T07:34:14Z' status: code: 200 message: OK @@ -471,38 +468,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000006","name":"sb-topiccli000006","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-13T13:55:25.327Z","updatedAt":"2023-03-13T13:55:25.473Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000006","name":"sb-topiccli000006","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:34:18.147Z","updatedAt":"2024-09-29T07:34:18.17Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '966' + - '965' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:25 GMT + - Sun, 29 Sep 2024 07:34:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f7a0ff3f-fc5f-405a-a52b-26b42ec79938 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:34:18 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' + x-msedge-ref: + - 'Ref A: D42FFF53F16B469DA2D92C6990181182 Ref B: TYO201100114035 Ref C: 2024-09-29T07:34:16Z' status: code: 200 message: OK @@ -520,36 +518,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000006","name":"sb-topiccli000006","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-13T13:55:25.327Z","updatedAt":"2023-03-13T13:55:25.473Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000006","name":"sb-topiccli000006","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:34:18.147Z","updatedAt":"2024-09-29T07:34:18.17Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '967' + - '966' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:25 GMT + - Sun, 29 Sep 2024 07:34:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 8236c217-df4e-4e16-8668-9b81cb3df347 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:34:19 + x-msedge-ref: + - 'Ref A: 698A5AA1972748D1887F3A911C50D96E Ref B: TYO201100116051 Ref C: 2024-09-29T07:34:19Z' status: code: 200 message: OK @@ -576,13 +575,12 @@ interactions: --max-delivery-count --status --enable-batched-operations --forward-to --forward-dead-lettered-messages-to --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:27.8569635Z","updatedAt":"2023-03-13T13:55:27.8569635Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:22.4156786Z","updatedAt":"2024-09-29T07:34:22.4156786Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache @@ -591,23 +589,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:27 GMT + - Sun, 29 Sep 2024 07:34:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2471f906-f883-4c81-8b26-4b567702f8d0 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:22 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 9E28D7A8C70A44268A8AF5E75125A021 Ref B: TYO201151006040 Ref C: 2024-09-29T07:34:20Z' status: code: 200 message: OK @@ -625,36 +625,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:27.8560621Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:22.4183016Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache content-length: - - '1042' + - '1046' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:27 GMT + - Sun, 29 Sep 2024 07:34:23 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2a98bf0b-dd72-447c-9f08-630f784082c1 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:24 + x-msedge-ref: + - 'Ref A: BCAA852FF47F4B20A79A5241C54636E6 Ref B: OSA221030115037 Ref C: 2024-09-29T07:34:23Z' status: code: 200 message: OK @@ -681,38 +682,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:27.8560621Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:22.4183016Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache content-length: - - '1042' + - '1046' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:27 GMT + - Sun, 29 Sep 2024 07:34:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 720a2985-2cfc-4fbc-84d9-d25c9abd48a4 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:34:25 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: B5018B0C79784DC08D847CBA7F9D08CB Ref B: OSA221030115037 Ref C: 2024-09-29T07:34:24Z' status: code: 200 message: OK @@ -730,36 +732,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --enable-dead-lettering-on-message-expiration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:27.8560621Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":true,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:22.4183016Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache content-length: - - '1042' + - '1046' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:28 GMT + - Sun, 29 Sep 2024 07:34:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 926736de-dfca-4d64-b6de-cfb779c6611c + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:34:26 + x-msedge-ref: + - 'Ref A: 6F6321845A124EFAB793B56257A28A77 Ref B: TYO201151005009 Ref C: 2024-09-29T07:34:26Z' status: code: 200 message: OK @@ -786,13 +789,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --enable-dead-lettering-on-message-expiration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:29.1616441Z","updatedAt":"2023-03-13T13:55:29.1616441Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:28.4104569Z","updatedAt":"2024-09-29T07:34:28.4104569Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache @@ -801,23 +803,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:28 GMT + - Sun, 29 Sep 2024 07:34:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 8cd1be61-3946-49c0-b939-f788bf10e84c + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:34:28 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 9A9AB4D7176D458283728BBBC6A5255E Ref B: TYO201151005009 Ref C: 2024-09-29T07:34:27Z' status: code: 200 message: OK @@ -835,36 +839,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --lock-duration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:29.1685311Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT3M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:28.4183021Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache content-length: - - '1043' + - '1047' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:29 GMT + - Sun, 29 Sep 2024 07:34:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c8bfc654-be1b-479f-b32b-487d0c26e1fa + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:34:29 + x-msedge-ref: + - 'Ref A: 308743665DBC407AB6607EC9CA0259A4 Ref B: TYO201100114027 Ref C: 2024-09-29T07:34:28Z' status: code: 200 message: OK @@ -891,13 +896,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --lock-duration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:29.6761269Z","updatedAt":"2023-03-13T13:55:29.6761269Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:30.6889033Z","updatedAt":"2024-09-29T07:34:30.6889033Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache @@ -906,23 +910,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:29 GMT + - Sun, 29 Sep 2024 07:34:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 335192a6-c084-4a0e-9ca4-46f06b6855f5 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:34:30 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: B5C15F96C4054E9CB84754BA0D03DD7D Ref B: TYO201100114027 Ref C: 2024-09-29T07:34:29Z' status: code: 200 message: OK @@ -940,36 +946,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --max-delivery-count User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:29.6841555Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":12,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:30.6841089Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache content-length: - - '1043' + - '1047' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:29 GMT + - Sun, 29 Sep 2024 07:34:31 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d1aaabb0-af8f-48bb-9dac-40523052d0d5 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:34:31 + x-msedge-ref: + - 'Ref A: 9FD9E843E64A4A62A5CF2E2A0FA2B613 Ref B: TYO201151006036 Ref C: 2024-09-29T07:34:31Z' status: code: 200 message: OK @@ -996,13 +1003,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --max-delivery-count User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:30.8462275Z","updatedAt":"2023-03-13T13:55:30.8462275Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:32.5046111Z","updatedAt":"2024-09-29T07:34:32.5046111Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache @@ -1011,23 +1017,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:30 GMT + - Sun, 29 Sep 2024 07:34:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 385ea2eb-aff4-4db1-8f34-0c658b15ff44 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:34:32 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: D52C64AE2C194C599222138D0B95F95A Ref B: TYO201151006036 Ref C: 2024-09-29T07:34:31Z' status: code: 200 message: OK @@ -1045,32 +1053,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:30.8560429Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:32.5122946Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache content-length: - - '1042' + - '1046' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:30 GMT + - Sun, 29 Sep 2024 07:34:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 511547d3-95be-40ab-bd41-a4a49a9401fa + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:34:33 + x-msedge-ref: + - 'Ref A: 9A6800A3210A4A6FB3B8B73248B347DF Ref B: OSA221030115027 Ref C: 2024-09-29T07:34:33Z' status: code: 200 message: OK @@ -1097,13 +1110,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2023-03-13T13:55:31.5474417Z","updatedAt":"2023-03-13T13:55:31.5474417Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2024-09-29T07:34:34.8484133Z","updatedAt":"2024-09-29T07:34:34.8484133Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache @@ -1112,19 +1124,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:30 GMT + - Sun, 29 Sep 2024 07:34:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 22b3b255-12ef-4161-9fc8-cfb149b50d90 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:34:34 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 377CA52867E74415A80E014688302EE8 Ref B: OSA221030115027 Ref C: 2024-09-29T07:34:33Z' status: code: 200 message: OK @@ -1142,36 +1160,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --forward-to User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:31.5435397Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:34.8560259Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000005","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache content-length: - - '1043' + - '1047' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:31 GMT + - Sun, 29 Sep 2024 07:34:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 1b4080ae-3654-48ce-98bd-b9bcd6ae83b6 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:34:35 + x-msedge-ref: + - 'Ref A: 72C3E253F5E24CA4AC7580C90D9D32D9 Ref B: TYO201100115009 Ref C: 2024-09-29T07:34:35Z' status: code: 200 message: OK @@ -1198,13 +1217,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --forward-to User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2023-03-13T13:55:32.458783Z","updatedAt":"2023-03-13T13:55:32.458783Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2024-09-29T07:34:36.579562Z","updatedAt":"2024-09-29T07:34:36.579562Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache @@ -1213,23 +1231,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:31 GMT + - Sun, 29 Sep 2024 07:34:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 33581b15-789b-4065-aad7-4db191f51448 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:34:36 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' + x-msedge-ref: + - 'Ref A: B598B71DA6FE451DBD65F92114D3D1C3 Ref B: TYO201100115009 Ref C: 2024-09-29T07:34:36Z' status: code: 200 message: OK @@ -1247,36 +1267,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --forward-dead-lettered-messages-to User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:32.4654764Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:36.5754739Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000005"}}' headers: cache-control: - no-cache content-length: - - '1043' + - '1047' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:32 GMT + - Sun, 29 Sep 2024 07:34:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d4ca3f8f-cafa-49a2-b406-e61b76a753d8 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:34:38 + x-msedge-ref: + - 'Ref A: 567DD5CF32B8421E8CF3E0EFAB10306A Ref B: OSA221030114039 Ref C: 2024-09-29T07:34:37Z' status: code: 200 message: OK @@ -1303,13 +1324,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --forward-dead-lettered-messages-to User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2023-03-13T13:55:33.4431741Z","updatedAt":"2023-03-13T13:55:33.4431741Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2024-09-29T07:34:38.9326477Z","updatedAt":"2024-09-29T07:34:38.9326477Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000006"}}' headers: cache-control: - no-cache @@ -1318,23 +1338,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:33 GMT + - Sun, 29 Sep 2024 07:34:38 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 83c04295-1bfa-4b0b-a203-d5a6199bfb34 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:38 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 0DCC121DBC6145DFAA3F3FD878FBFAA8 Ref B: OSA221030114039 Ref C: 2024-09-29T07:34:38Z' status: code: 200 message: OK @@ -1352,36 +1374,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --status User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:33.4498032Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"Active","enableBatchedOperations":false,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:38.9505429Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000006"}}' headers: cache-control: - no-cache content-length: - - '1043' + - '1047' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:33 GMT + - Sun, 29 Sep 2024 07:34:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 18687a5a-8266-4e25-81d4-2b20895f5a54 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:34:40 + x-msedge-ref: + - 'Ref A: AAF5E87263F14A33981FB8AA3F9E43FC Ref B: OSA221030114023 Ref C: 2024-09-29T07:34:39Z' status: code: 200 message: OK @@ -1408,13 +1431,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --status User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"ReceiveDisabled","enableBatchedOperations":false,"createdAt":"2023-03-13T13:55:34.2944784Z","updatedAt":"2023-03-13T13:55:34.2944784Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000006"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"ReceiveDisabled","enableBatchedOperations":false,"createdAt":"2024-09-29T07:34:40.7763753Z","updatedAt":"2024-09-29T07:34:40.7763753Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000006"}}' headers: cache-control: - no-cache @@ -1423,23 +1445,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:33 GMT + - Sun, 29 Sep 2024 07:34:40 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c760957e-47ec-4701-b76a-b241d0325fef + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:40 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' + x-msedge-ref: + - 'Ref A: 8975AFD20B494E3E920F8EBF54EB6FEF Ref B: OSA221030114023 Ref C: 2024-09-29T07:34:40Z' status: code: 200 message: OK @@ -1463,38 +1487,39 @@ interactions: - --resource-group --namespace-name --name --topic-name --enable-session --auto-delete-on-idle --dead-letter-on-filter-exceptions User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:35.5833178Z","updatedAt":"2023-03-13T13:55:35.5833178Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P7D"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:42.643156Z","updatedAt":"2024-09-29T07:34:42.643156Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P7D"}}' headers: cache-control: - no-cache content-length: - - '943' + - '941' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:34 GMT + - Sun, 29 Sep 2024 07:34:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - cb74ed8b-c7f7-48ef-95bd-26c76982a4e7 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:34:42 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' + x-msedge-ref: + - 'Ref A: 2773FE968F154587A242D8273147BCC1 Ref B: OSA221030115017 Ref C: 2024-09-29T07:34:41Z' status: code: 200 message: OK @@ -1512,13 +1537,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --auto-delete-on-idle User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:35.5915052Z","updatedAt":"2023-03-13T13:55:35.5915052Z","accessedAt":"2023-03-13T13:55:35.5915052Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P7D"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:42.6383571Z","updatedAt":"2024-09-29T07:34:42.6383571Z","accessedAt":"2024-09-29T07:34:42.6383571Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P7D"}}' headers: cache-control: - no-cache @@ -1527,21 +1551,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:35 GMT + - Sun, 29 Sep 2024 07:34:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5c921a71-a713-44a4-9428-46ee384fb5d8 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:43 + x-msedge-ref: + - 'Ref A: A33049B746E24E09BA77A1A858927950 Ref B: OSA221030113021 Ref C: 2024-09-29T07:34:43Z' status: code: 200 message: OK @@ -1567,38 +1593,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --auto-delete-on-idle User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:36.552077Z","updatedAt":"2023-03-13T13:55:36.552077Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:44.2837548Z","updatedAt":"2024-09-29T07:34:44.2837548Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' headers: cache-control: - no-cache content-length: - - '951' + - '953' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:35 GMT + - Sun, 29 Sep 2024 07:34:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5f67f64f-7857-426a-8965-f0a85bf09fe8 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:34:44 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' + x-msedge-ref: + - 'Ref A: 57C27267B2BD43AD8DB3FD932078B245 Ref B: OSA221030113021 Ref C: 2024-09-29T07:34:43Z' status: code: 200 message: OK @@ -1616,36 +1643,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --dead-letter-on-filter-exceptions User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:35.5915052Z","updatedAt":"2023-03-13T13:55:36.5602426Z","accessedAt":"2023-03-13T13:55:35.5915052Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:42.6383571Z","updatedAt":"2024-09-29T07:34:44.2789425Z","accessedAt":"2024-09-29T07:34:42.64Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' headers: cache-control: - no-cache content-length: - - '962' + - '957' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:36 GMT + - Sun, 29 Sep 2024 07:34:45 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 479a650c-9bd5-421b-988a-8db784368705 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:34:45 + x-msedge-ref: + - 'Ref A: 02F6715F349B4E219D67578DAD71AE1D Ref B: OSA221030113053 Ref C: 2024-09-29T07:34:44Z' status: code: 200 message: OK @@ -1671,13 +1699,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --dead-letter-on-filter-exceptions User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":false,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:37.4427406Z","updatedAt":"2023-03-13T13:55:37.4427406Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":false,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:46.4406925Z","updatedAt":"2024-09-29T07:34:46.4406925Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' headers: cache-control: - no-cache @@ -1686,23 +1713,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:37 GMT + - Sun, 29 Sep 2024 07:34:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 65f48ed4-67a9-464b-906b-eb59a8e2f955 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:34:46 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: AD3497757E8E42D7B832B90DF04877D4 Ref B: OSA221030113053 Ref C: 2024-09-29T07:34:45Z' status: code: 200 message: OK @@ -1720,36 +1749,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --dead-letter-on-filter-exceptions User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":false,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:35.5915052Z","updatedAt":"2023-03-13T13:55:37.450854Z","accessedAt":"2023-03-13T13:55:35.5915052Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":false,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:42.6383571Z","updatedAt":"2024-09-29T07:34:46.4508277Z","accessedAt":"2024-09-29T07:34:42.64Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' headers: cache-control: - no-cache content-length: - - '962' + - '958' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:36 GMT + - Sun, 29 Sep 2024 07:34:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f9e36537-713e-4b2e-b0d4-025b2eb9caa1 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:34:47 + x-msedge-ref: + - 'Ref A: D680D0C23C1146CE9A4A3977BE965928 Ref B: TYO201151004023 Ref C: 2024-09-29T07:34:46Z' status: code: 200 message: OK @@ -1775,13 +1805,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --topic-name --dead-letter-on-filter-exceptions User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:38.2993823Z","updatedAt":"2023-03-13T13:55:38.2993823Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:49.1039599Z","updatedAt":"2024-09-29T07:34:49.1039599Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}}' headers: cache-control: - no-cache @@ -1790,23 +1819,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:37 GMT + - Sun, 29 Sep 2024 07:34:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d331eb6b-d1c7-437a-91f3-89ef50c562d0 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:34:49 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: B02A7060D1DC4E54A44B5C628A102C17 Ref B: TYO201151004023 Ref C: 2024-09-29T07:34:47Z' status: code: 200 message: OK @@ -1828,13 +1859,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:39.7708507Z","updatedAt":"2023-03-13T13:55:39.7708507Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:51.6210612Z","updatedAt":"2024-09-29T07:34:51.6210612Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' headers: cache-control: - no-cache @@ -1843,23 +1873,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:38 GMT + - Sun, 29 Sep 2024 07:34:51 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 962eb510-31ea-42a0-9a27-d9e2b4e7773d + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:51 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 07AE2C32DC9645D4BC43E9E8D1DA8B44 Ref B: OSA221030115035 Ref C: 2024-09-29T07:34:49Z' status: code: 200 message: OK @@ -1877,13 +1909,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:39.7804586Z","updatedAt":"2023-03-13T13:55:39.7804586Z","accessedAt":"2023-03-13T13:55:39.7804586Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:51.6235166Z","updatedAt":"2024-09-29T07:34:51.6235166Z","accessedAt":"2024-09-29T07:34:51.6235166Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' headers: cache-control: - no-cache @@ -1892,21 +1923,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:40 GMT + - Sun, 29 Sep 2024 07:34:52 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 420ae92d-824f-4f27-8a6e-a93380a2025c + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:52 + x-msedge-ref: + - 'Ref A: 1F2353C5EC884C2EBBF103B791EE3D26 Ref B: OSA221030115049 Ref C: 2024-09-29T07:34:52Z' status: code: 200 message: OK @@ -1924,38 +1957,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions?api-version=2022-01-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:39.7804586Z","updatedAt":"2023-03-13T13:55:39.7804586Z","accessedAt":"2023-03-13T13:55:39.7804586Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:35.5915052Z","updatedAt":"2023-03-13T13:55:38.3102604Z","accessedAt":"2023-03-13T13:55:35.5915052Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"ReceiveDisabled","enableBatchedOperations":false,"createdAt":"2023-03-13T13:55:27.8560621Z","updatedAt":"2023-03-13T13:55:34.3092204Z","accessedAt":"2023-03-13T13:55:27.857Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000006"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000011","name":"sb-subscli000011","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P428DT3H11M2S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":8,"status":"ReceiveDisabled","enableBatchedOperations":false,"createdAt":"2024-09-29T07:34:22.4183016Z","updatedAt":"2024-09-29T07:34:40.794568Z","accessedAt":"2024-09-29T07:34:22.4183016Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","forwardTo":"sb-topiccli000006","forwardDeadLetteredMessagesTo":"sb-topiccli000006"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000012","name":"sb-subscli000012","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":true,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:42.6383571Z","updatedAt":"2024-09-29T07:34:49.1227221Z","accessedAt":"2024-09-29T07:34:42.64Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P428DT3H11M2S"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:51.6235166Z","updatedAt":"2024-09-29T07:34:51.6235166Z","accessedAt":"2024-09-29T07:34:51.6235166Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}]}' headers: cache-control: - no-cache content-length: - - '3004' + - '3002' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:40 GMT + - Sun, 29 Sep 2024 07:34:53 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-inline-count: - '' + x-ms-messaging-activity-id: + - 238a16ee-d109-492f-a6f1-043dd7cd3645 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:34:53 + x-msedge-ref: + - 'Ref A: 99DFDFC53F6146B1A433BAA61DB5C207 Ref B: OSA221030113011 Ref C: 2024-09-29T07:34:53Z' status: code: 200 message: OK @@ -1975,13 +2009,12 @@ interactions: --dead-letter-on-filter-exceptions --enable-dead-lettering-on-message-expiration --auto-delete-on-idle --default-message-time-to-live --lock-duration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:39.7804586Z","updatedAt":"2023-03-13T13:55:39.7804586Z","accessedAt":"2023-03-13T13:55:39.7804586Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:51.6235166Z","updatedAt":"2024-09-29T07:34:51.6235166Z","accessedAt":"2024-09-29T07:34:51.6235166Z","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' headers: cache-control: - no-cache @@ -1990,21 +2023,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:41 GMT + - Sun, 29 Sep 2024 07:34:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - c042f150-ec48-4d3d-a661-192d4dbac5a7 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:34:54 + x-msedge-ref: + - 'Ref A: 9CF4BCE063C84BC6B4287B2EDBEF4582 Ref B: OSA221030115045 Ref C: 2024-09-29T07:34:54Z' status: code: 200 message: OK @@ -2031,13 +2066,12 @@ interactions: --dead-letter-on-filter-exceptions --enable-dead-lettering-on-message-expiration --auto-delete-on-idle --default-message-time-to-live --lock-duration User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT4M","requiresSession":false,"defaultMessageTimeToLive":"PT7M","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":false,"messageCount":0,"maxDeliveryCount":3,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:55:41.9740184Z","updatedAt":"2023-03-13T13:55:41.9740184Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P9D"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/subscriptions/sb-subscli000009","name":"sb-subscli000009","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":false,"lockDuration":"PT4M","requiresSession":false,"defaultMessageTimeToLive":"PT7M","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":false,"messageCount":0,"maxDeliveryCount":3,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T07:34:55.5098239Z","updatedAt":"2024-09-29T07:34:55.5098239Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P9D"}}' headers: cache-control: - no-cache @@ -2046,23 +2080,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:55:41 GMT + - Sun, 29 Sep 2024 07:34:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - e7bec08c-06b5-4c90-ac05-7ee35353640e + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:34:55 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: D341193A157F44A0B877EA822084FFC9 Ref B: OSA221030115045 Ref C: 2024-09-29T07:34:54Z' status: code: 200 message: OK @@ -2082,10 +2118,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: string: '' @@ -2095,24 +2130,75 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:55:43 GMT + - Sun, 29 Sep 2024 07:34:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/ae560334-fe97-491c-94dc-cc085cc35343?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631920979580098&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=CEzjz2-9NnHQtD4C-Gjn8CkrnNgbEATisY7BNG0b-wf7K3Nb6LubICrb0NHAHhnZHfMWTPKEvkR30ePbqHLmeSSOXU6r4rCr-zKwJeCsfspl-k2ImIg92MLOxjdYtle5aR1eB-DqekmyhFEFvkh29TcqCOaev8hGa-Y-5oj3MNSNjpidqUA4cOpoF4Wd-X4sB6qoIqzJ0e6S1u0-8UGCMpBVo65pwW8ANronXBYfec3sEe1r6sU5E_lx60vAepY4iHWyzATRO9cXHnbfrnOHKb5OeJPRUBAQ1Go6zmK3pYT4H2apwTHUtmp4UEIU6VkDfAjJNblaHJxRdok_AgglvQ&h=WUOAK0lUTt0LXXB3HPOf5wt3cPCpIUDGKd7ViA29rrw pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008960 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:34:57 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 1C5E28AD7A764378A648623959273C35 Ref B: OSA221030114045 Ref C: 2024-09-29T07:34:56Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/ae560334-fe97-491c-94dc-cc085cc35343?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631920979580098&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=CEzjz2-9NnHQtD4C-Gjn8CkrnNgbEATisY7BNG0b-wf7K3Nb6LubICrb0NHAHhnZHfMWTPKEvkR30ePbqHLmeSSOXU6r4rCr-zKwJeCsfspl-k2ImIg92MLOxjdYtle5aR1eB-DqekmyhFEFvkh29TcqCOaev8hGa-Y-5oj3MNSNjpidqUA4cOpoF4Wd-X4sB6qoIqzJ0e6S1u0-8UGCMpBVo65pwW8ANronXBYfec3sEe1r6sU5E_lx60vAepY4iHWyzATRO9cXHnbfrnOHKb5OeJPRUBAQ1Go6zmK3pYT4H2apwTHUtmp4UEIU6VkDfAjJNblaHJxRdok_AgglvQ&h=WUOAK0lUTt0LXXB3HPOf5wt3cPCpIUDGKd7ViA29rrw + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 29 Sep 2024 07:34:57 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/ae560334-fe97-491c-94dc-cc085cc35343?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631920986634705&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=ddTiQl3aGQzE4DeihdVLWFWiZ5smhdTfa8fMLHCHJBflhqBmIT1e8I1_Blbfd2ZRBbdNgOvsWzdGxvhELwnjDkz0FIMf58axSor4RaKnatI6gT63GH57DuWYt0-lY1Hl5eEEbRiBsK9zxfQ_5lsqG58DFyJI_CUaG3PQ2g5DKm4CodIkLIAln4HEW03PAuMNOxtbRzYFzl3YctFhxFvmsLo_LJJJrA2xuaOGlG2E-qLVeljsXHHHpiQqa0795PIssdNjg5BqvT2t67SjFWxU-vuBRaa46qtuMy3HSB7gWeFt1Lh0nmboYbF7GVixbM_JJMgwTBfiNV99BNgMbVjjqg&h=XmZpvtmKQiVoczYL5EG1kOjYtds_nsW0CcNPi8526Ss + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001300 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:34:58 + x-msedge-ref: + - 'Ref A: 6D743B8E794644C6A2F74C9B17840581 Ref B: OSA221030114045 Ref C: 2024-09-29T07:34:58Z' status: code: 202 message: Accepted @@ -2130,10 +2216,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/ae560334-fe97-491c-94dc-cc085cc35343?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631920986634705&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=ddTiQl3aGQzE4DeihdVLWFWiZ5smhdTfa8fMLHCHJBflhqBmIT1e8I1_Blbfd2ZRBbdNgOvsWzdGxvhELwnjDkz0FIMf58axSor4RaKnatI6gT63GH57DuWYt0-lY1Hl5eEEbRiBsK9zxfQ_5lsqG58DFyJI_CUaG3PQ2g5DKm4CodIkLIAln4HEW03PAuMNOxtbRzYFzl3YctFhxFvmsLo_LJJJrA2xuaOGlG2E-qLVeljsXHHHpiQqa0795PIssdNjg5BqvT2t67SjFWxU-vuBRaa46qtuMy3HSB7gWeFt1Lh0nmboYbF7GVixbM_JJMgwTBfiNV99BNgMbVjjqg&h=XmZpvtmKQiVoczYL5EG1kOjYtds_nsW0CcNPi8526Ss response: body: string: '' @@ -2141,20 +2226,25 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Mar 2023 13:56:12 GMT + - Sun, 29 Sep 2024 07:35:28 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/ae560334-fe97-491c-94dc-cc085cc35343?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631921293449364&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=Xe6ZckP75SVl_Jfiz9YM6jUhaP8Xp5YMPbR5bwUEPwL4dHFlCFk0qlUYnhRlHVNRv8aUaNFUWfkIHDupycwHpKqSA6UWmd3eEmICCfNZUBasrHa0ABCd9FkUhKkk9HQkobm2qH8Yq8zKlcy97wnzDtKTP_UUOveof0R8bC_aEnTomG1ueDjG-ruv01Ir-cOcNVzszbno_v9sh09zNxkPgkgdHrWbJA62APzWJ9wqkipIwmXiqaKlJYIrjSn81im4zmwujcRzi-AoTrt2qQRNElMGzNrc0f9JKHTqAo8aVORa-nPWg0ifCphQGjNgSJrtSPfSmyJLxP1dzJY5irVnhw&h=c9OGFL2oDskeD8PM19yUFcwm_vnwQjFkxQyDa3SUaE4 pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008960 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:35:29 + x-msedge-ref: + - 'Ref A: 4E2AC1F80402421DA9EAD2189F385DF9 Ref B: OSA221030114045 Ref C: 2024-09-29T07:35:28Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_topic.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_topic.yaml index 54940a9a91d..73cfedc0fca 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_topic.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_topic.yaml @@ -13,37 +13,39 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_topic000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001","name":"cli_test_sb_topic000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-14T08:32:35Z","StorageType":"Standard_LRS","type":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001","name":"cli_test_sb_topic000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_topic","date":"2024-09-29T07:38:10Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '367' + - '369' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:32:38 GMT + - Sun, 29 Sep 2024 07:38:13 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: BC66F479352D4BD089E1EDC87565EEBA Ref B: OSA221030114053 Ref C: 2024-09-29T07:38:13Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "westus", "sku": {"name": "Standard", - "tier": "Standard"}, "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' + body: '{"location": "westus", "sku": {"name": "Standard", "tier": "Standard"}, + "tags": {"{tag1: value1,": "", "tag2: value2}": ""}}' headers: Accept: - application/json @@ -54,50 +56,49 @@ interactions: Connection: - keep-alive Content-Length: - - '154' + - '124' Content-Type: - application/json ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-14T08:32:46.843Z","updatedAt":"2023-03-14T08:32:46.843Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T07:38:18.0370261Z","updatedAt":"2024-09-29T07:38:18.0370261Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '754' + - '908' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:32:48 GMT + - Sun, 29 Sep 2024 07:38:18 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f534c432-d5dd-4e9c-9dea-acac6fe03736 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:38:18 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' + x-msedge-ref: + - 'Ref A: 8ADAC7B3F9FB40EF9B75F727FF3A8614 Ref B: OSA221030115019 Ref C: 2024-09-29T07:38:13Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -112,39 +113,38 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-14T08:32:46.843Z","updatedAt":"2023-03-14T08:32:46.843Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T07:38:18.0370261Z","updatedAt":"2024-09-29T07:38:18.0370261Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '754' + - '908' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:33:18 GMT + - Sun, 29 Sep 2024 07:38:19 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 499627f8-6235-439c-9d74-607887982a0b + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:38:19 + x-msedge-ref: + - 'Ref A: 7D6A291D05E941BA843D9F66E5D4C010 Ref B: OSA221030115019 Ref C: 2024-09-29T07:38:18Z' status: code: 200 message: OK @@ -162,39 +162,38 @@ interactions: ParameterSetName: - --resource-group --name --tags --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-14T08:32:46.843Z","updatedAt":"2023-03-14T08:33:31.383Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T07:38:18.0370261Z","updatedAt":"2024-09-29T07:38:22.177798Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '752' + - '904' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:33:49 GMT + - Sun, 29 Sep 2024 07:38:49 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 19a7aded-ca12-4207-8dc6-a61581eb169f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:38:50 + x-msedge-ref: + - 'Ref A: DF366962F1544B238F5B06950F718C9F Ref B: OSA221030115019 Ref C: 2024-09-29T07:38:49Z' status: code: 200 message: OK @@ -212,39 +211,38 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{"{tag1: value1,":"","tag2: value2}":""},"properties":{"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-14T08:32:46.843Z","updatedAt":"2023-03-14T08:33:31.383Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T07:38:18.0370261Z","updatedAt":"2024-09-29T07:38:22.177798Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache content-length: - - '752' + - '904' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:33:51 GMT + - Sun, 29 Sep 2024 07:38:50 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2197cb7b-28fd-4d27-89b3-d864733e2a84 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:38:51 + x-msedge-ref: + - 'Ref A: CE9B7C860FBD4405A1DFA26733AAD3D4 Ref B: TYO201151003011 Ref C: 2024-09-29T07:38:50Z' status: code: 200 message: OK @@ -271,37 +269,39 @@ interactions: --enable-duplicate-detection --duplicate-detection-history-time-window --enable-batched-operations --status --enable-ordering --auto-delete-on-idle --enable-partitioning User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli2000005?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli2000005","name":"sb-topiccli2000005","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":49152,"requiresDuplicateDetection":true,"duplicateDetectionHistoryTimeWindow":"PT1H3M4S","enableBatchedOperations":true,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":true,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":true,"enableExpress":false,"createdAt":"2023-03-14T08:33:54.54Z","updatedAt":"2023-03-14T08:33:54.63Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli2000005","name":"sb-topiccli2000005","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":49152,"requiresDuplicateDetection":true,"duplicateDetectionHistoryTimeWindow":"PT1H3M4S","enableBatchedOperations":true,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":true,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":true,"enableExpress":false,"createdAt":"2024-09-29T07:38:54.19Z","updatedAt":"2024-09-29T07:38:54.273Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '933' + - '934' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:33:55 GMT + - Sun, 29 Sep 2024 07:38:54 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a9c4884d-9ca2-49b3-8f24-a3b627c48d5f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:38:54 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F966FC468CE74011A2883559039D092B Ref B: TYO201100115007 Ref C: 2024-09-29T07:38:51Z' status: code: 200 message: OK @@ -323,37 +323,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --max-size --enable-express User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli3000006?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli3000006","name":"sb-topiccli3000006","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":true,"createdAt":"2023-03-14T08:33:58.457Z","updatedAt":"2023-03-14T08:33:58.517Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli3000006","name":"sb-topiccli3000006","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":true,"createdAt":"2024-09-29T07:38:57.683Z","updatedAt":"2024-09-29T07:38:57.71Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '960' + - '959' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:33:59 GMT + - Sun, 29 Sep 2024 07:38:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5ee5fb82-01fa-4020-bf6d-834e88ea6d90 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:38:58 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 15DAF995C9864A56BB48A370B159344C Ref B: OSA221030113029 Ref C: 2024-09-29T07:38:55Z' status: code: 200 message: OK @@ -375,37 +377,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:02.573Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.333Z","updatedAt":"2024-09-29T07:39:01.363Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '958' + - '959' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:03 GMT + - Sun, 29 Sep 2024 07:39:01 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 52656fbb-f22a-4abb-9c8c-005402d01aac + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:01 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: F66BDF372574443DB5D87EC77AC90664 Ref B: OSA221030115021 Ref C: 2024-09-29T07:38:58Z' status: code: 200 message: OK @@ -423,35 +427,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:02.573Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.333Z","updatedAt":"2024-09-29T07:39:01.363Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '959' + - '960' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:04 GMT + - Sun, 29 Sep 2024 07:39:02 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f5bce04a-b91b-4af6-884c-809f36de2bbb + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:03 + x-msedge-ref: + - 'Ref A: 9F665D602E2B46CAAF3B867ED5D92CAB Ref B: OSA221030116047 Ref C: 2024-09-29T07:39:02Z' status: code: 200 message: OK @@ -469,35 +475,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:02.573Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.333Z","updatedAt":"2024-09-29T07:39:01.363Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '959' + - '960' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:06 GMT + - Sun, 29 Sep 2024 07:39:04 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9cc1de96-292f-4c92-9b20-602dd58fd2b0 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:04 + x-msedge-ref: + - 'Ref A: 3D3AA32FE67346F8A838AEA211560C28 Ref B: TYO201151003036 Ref C: 2024-09-29T07:39:03Z' status: code: 200 message: OK @@ -523,37 +531,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P7D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P7D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:05Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '926' + - '927' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:07 GMT + - Sun, 29 Sep 2024 07:39:05 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4acd85fd-ec50-4f83-8daa-e2fac9f520f6 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:39:05 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' + x-msedge-ref: + - 'Ref A: 56C1AD0F25394D0F9667F415D04B6959 Ref B: TYO201151003036 Ref C: 2024-09-29T07:39:04Z' status: code: 200 message: OK @@ -571,12 +581,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P7D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:07.127Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P7D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.333Z","updatedAt":"2024-09-29T07:39:05.39Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -585,21 +595,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:09 GMT + - Sun, 29 Sep 2024 07:39:06 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 60ebfec7-96ce-4e1e-94d0-9e13982ca43e + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:39:07 + x-msedge-ref: + - 'Ref A: D7C1123B90FA476081AB23AF1EE328BE Ref B: TYO201100116039 Ref C: 2024-09-29T07:39:06Z' status: code: 200 message: OK @@ -625,37 +637,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P2D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P2D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:08Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '926' + - '927' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:09 GMT + - Sun, 29 Sep 2024 07:39:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - be1c0e61-e7b5-4c8d-b36a-d1c9fe1c6d33 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:39:08 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: 508B4B782C0C4D6C953021A239FD22C4 Ref B: TYO201100116039 Ref C: 2024-09-29T07:39:07Z' status: code: 200 message: OK @@ -673,35 +687,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P2D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:10.393Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P2D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:08.1810273Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '936' + - '945' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:11 GMT + - Sun, 29 Sep 2024 07:39:08 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d98299f2-de3e-43c0-bbe0-56cceb378c9e + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:39:09 + x-msedge-ref: + - 'Ref A: F1EFF25F3A464F3393A199E3D89E2DBB Ref B: TYO201151004036 Ref C: 2024-09-29T07:39:08Z' status: code: 200 message: OK @@ -727,37 +743,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"PT3H4M23S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"PT3H4M23S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:10Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '932' + - '933' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:12 GMT + - Sun, 29 Sep 2024 07:39:10 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d519c6e6-6d2f-4406-bfa8-295d01b7dc74 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:39:10 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: 9B1B66BACA51413A8BCAEE47555CD9F0 Ref B: TYO201151004036 Ref C: 2024-09-29T07:39:09Z' status: code: 200 message: OK @@ -775,35 +793,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"PT3H4M23S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:12.96Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"PT3H4M23S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:10.3372846Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '941' + - '951' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:14 GMT + - Sun, 29 Sep 2024 07:39:10 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9b6245dc-d59f-4a93-b633-f4d3d56e7990 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:11 + x-msedge-ref: + - 'Ref A: DC1CB1B1C28B4CA8BCFC10348606941C Ref B: TYO201151004060 Ref C: 2024-09-29T07:39:10Z' status: code: 200 message: OK @@ -829,37 +849,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P457D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P457D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:12Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '928' + - '929' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:15 GMT + - Sun, 29 Sep 2024 07:39:11 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ff11f4e3-89e0-461d-89ea-1cf84446b4b1 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:12 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' + x-msedge-ref: + - 'Ref A: 2117816A288E4D9496AFBFF533B0869D Ref B: TYO201151004060 Ref C: 2024-09-29T07:39:11Z' status: code: 200 message: OK @@ -877,35 +899,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P457D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:15.283Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P457D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:12.1810172Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '938' + - '947' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:16 GMT + - Sun, 29 Sep 2024 07:39:12 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 05f1a1d9-6ac7-4943-a563-be11d9e121b0 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:39:13 + x-msedge-ref: + - 'Ref A: 1EED28BC358A451FA70A0CBD1DE3CDC4 Ref B: OSA221030114049 Ref C: 2024-09-29T07:39:12Z' status: code: 200 message: OK @@ -931,37 +955,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P428DT3H11M2S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P428DT3H11M2S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:14Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '936' + - '937' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:18 GMT + - Sun, 29 Sep 2024 07:39:14 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 426976a0-b9c3-464f-b2e4-f5d7098fd3dd + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:39:14 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + x-msedge-ref: + - 'Ref A: D60C8BDDACAF48A5B6983212D0CAB0A4 Ref B: OSA221030114049 Ref C: 2024-09-29T07:39:13Z' status: code: 200 message: OK @@ -979,35 +1005,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P428DT3H11M2S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:18.43Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P428DT3H11M2S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:14.3529343Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '945' + - '955' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:20 GMT + - Sun, 29 Sep 2024 07:39:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ff2df5c3-5933-4d13-b73e-64c918907bf2 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:15 + x-msedge-ref: + - 'Ref A: 6E09535E89884B8CA1234AEC47AEEA20 Ref B: OSA221030113037 Ref C: 2024-09-29T07:39:15Z' status: code: 200 message: OK @@ -1033,37 +1061,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --default-message-time-to-live User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:16Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '928' + - '929' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:20 GMT + - Sun, 29 Sep 2024 07:39:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d8e26ea3-97ef-43b0-915c-6a9b9a155a08 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:16 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' + x-msedge-ref: + - 'Ref A: F0F9646955FE4F099362654658060D92 Ref B: OSA221030113037 Ref C: 2024-09-29T07:39:15Z' status: code: 200 message: OK @@ -1081,35 +1111,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:20.807Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:16.2279155Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '938' + - '947' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:22 GMT + - Sun, 29 Sep 2024 07:39:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 09e61542-e786-4f8c-9e27-12354ccccb80 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:39:17 + x-msedge-ref: + - 'Ref A: 779B3657613F4F71BAF0151278214627 Ref B: OSA221030113047 Ref C: 2024-09-29T07:39:16Z' status: code: 200 message: OK @@ -1135,37 +1167,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:18Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '929' + - '930' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:23 GMT + - Sun, 29 Sep 2024 07:39:18 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 186defc0-7850-4ea8-b7bc-29461bc4ed49 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:18 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' + x-msedge-ref: + - 'Ref A: 9ABFD582BA8D44D890ED418711122B39 Ref B: OSA221030113047 Ref C: 2024-09-29T07:39:17Z' status: code: 200 message: OK @@ -1183,35 +1217,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:23.14Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:18.2591421Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '938' + - '948' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:24 GMT + - Sun, 29 Sep 2024 07:39:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7a6aefb2-c7d4-401c-8e4a-b2c591f76bfb + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:39:19 + x-msedge-ref: + - 'Ref A: E8EC290838964D42BEDA4BCD9BD895C2 Ref B: TYO201100113035 Ref C: 2024-09-29T07:39:18Z' status: code: 200 message: OK @@ -1237,37 +1273,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-batched-operations User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:20Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '928' + - '929' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:25 GMT + - Sun, 29 Sep 2024 07:39:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a5ea2bba-ca6c-42a5-8328-45e298c7f913 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:39:20 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: 56DF19CF1E9846B8B10F21A60B114D1E Ref B: TYO201100113035 Ref C: 2024-09-29T07:39:19Z' status: code: 200 message: OK @@ -1285,35 +1323,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-ordering User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:25.683Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:20.3685891Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '938' + - '947' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:27 GMT + - Sun, 29 Sep 2024 07:39:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 86bd85a8-6b9d-4a86-9b14-28e275cfa265 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:39:21 + x-msedge-ref: + - 'Ref A: EEF01C501B0645089D616F4F56FE0CE8 Ref B: OSA221030115031 Ref C: 2024-09-29T07:39:20Z' status: code: 200 message: OK @@ -1339,37 +1379,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-ordering User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:20.3685891Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '892' + - '947' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:27 GMT + - Sun, 29 Sep 2024 07:39:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 4794b82a-5f80-480e-8b47-406f9c4504b2 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:39:23 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: EC223B138455429DBC2E5D12370049F1 Ref B: OSA221030115031 Ref C: 2024-09-29T07:39:21Z' status: code: 200 message: OK @@ -1387,35 +1429,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-batched-operations --enable-ordering User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:25.683Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:20.3685891Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '938' + - '947' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:29 GMT + - Sun, 29 Sep 2024 07:39:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d449de37-c60b-42b3-9927-c0c7212010c2 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:24 + x-msedge-ref: + - 'Ref A: F6F5D5C304FD4385B3ADF539D4692D51 Ref B: OSA221030113017 Ref C: 2024-09-29T07:39:23Z' status: code: 200 message: OK @@ -1441,37 +1485,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-batched-operations --enable-ordering User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:24Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '930' + - '931' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:30 GMT + - Sun, 29 Sep 2024 07:39:24 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f0d0e1af-c6e1-4145-83b1-65f41e736f6c + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:39:24 x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: BE58746546D542DA867DB4BFF4D4A810 Ref B: OSA221030113017 Ref C: 2024-09-29T07:39:24Z' status: code: 200 message: OK @@ -1489,35 +1535,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --max-size User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:30.493Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:24.9163596Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '940' + - '949' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:31 GMT + - Sun, 29 Sep 2024 07:39:25 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 90c53287-1753-4f93-95ae-b2ed54994aaa + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:39:25 + x-msedge-ref: + - 'Ref A: 9CA4BF0E595748788B1649A6B20E7714 Ref B: TYO201100114045 Ref C: 2024-09-29T07:39:25Z' status: code: 200 message: OK @@ -1543,37 +1591,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --max-size User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:27Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '930' + - '931' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:32 GMT + - Sun, 29 Sep 2024 07:39:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 66ce031d-c1a8-474c-8056-26dfa15b89e2 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:39:27 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1199' + x-msedge-ref: + - 'Ref A: E10CA21369D34DF190202B7627097A19 Ref B: TYO201100114045 Ref C: 2024-09-29T07:39:25Z' status: code: 200 message: OK @@ -1591,35 +1641,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --auto-delete-on-idle User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:32.3Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:27.1976412Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '938' + - '949' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:33 GMT + - Sun, 29 Sep 2024 07:39:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5edc42fb-e3b7-4b10-a8be-0607d6c1f3c4 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:39:28 + x-msedge-ref: + - 'Ref A: B1FB4FDF76BA489F9D3112A3B8377E83 Ref B: OSA221030116049 Ref C: 2024-09-29T07:39:27Z' status: code: 200 message: OK @@ -1645,37 +1697,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --auto-delete-on-idle User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:28Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '917' + - '918' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:34 GMT + - Sun, 29 Sep 2024 07:39:28 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - baac7296-3fa6-49f5-a363-648f3508b503 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:39:28 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' + x-msedge-ref: + - 'Ref A: 674D6E17AADF41C19E9DE1360B89916A Ref B: OSA221030116049 Ref C: 2024-09-29T07:39:28Z' status: code: 200 message: OK @@ -1693,35 +1747,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-express User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-14T08:34:02.48Z","updatedAt":"2023-03-14T08:34:34.547Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:28.7132437Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '927' + - '936' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:34 GMT + - Sun, 29 Sep 2024 07:39:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5e853f95-ab38-4047-9d09-d825d80e02fe + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:39:30 + x-msedge-ref: + - 'Ref A: 8239F23C9DD247C6B8FFF8541161ED02 Ref B: OSA221030116011 Ref C: 2024-09-29T07:39:29Z' status: code: 200 message: OK @@ -1747,37 +1803,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --enable-express User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:31Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '916' + - '917' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:35 GMT + - Sun, 29 Sep 2024 07:39:31 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 7137fe15-fab7-4c2c-bb3c-b15382aa1a59 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:39:31 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' + x-msedge-ref: + - 'Ref A: 22306729ED064F3DA3F79849D99969E9 Ref B: OSA221030116011 Ref C: 2024-09-29T07:39:30Z' status: code: 200 message: OK @@ -1795,12 +1853,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --status User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"2023-03-14T08:34:02.5221281Z","updatedAt":"2023-03-14T08:34:35.9795247Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"Active","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:31.8070093Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -1809,21 +1867,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:37 GMT + - Sun, 29 Sep 2024 07:39:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d8f50309-2c3d-4b10-9036-43aecc253c39 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:33 + x-msedge-ref: + - 'Ref A: AD115942CCC84E7DBB61B049BB07CAEF Ref B: TYO201100114039 Ref C: 2024-09-29T07:39:32Z' status: code: 200 message: OK @@ -1849,37 +1909,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --status User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:33Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '922' + - '923' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:38 GMT + - Sun, 29 Sep 2024 07:39:33 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 5be77ad5-fd8c-4bc4-84dc-a90539a7f3a3 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:33 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' + x-msedge-ref: + - 'Ref A: 2398746A175048ECB45E765524F7AE30 Ref B: TYO201100114039 Ref C: 2024-09-29T07:39:33Z' status: code: 200 message: OK @@ -1897,12 +1959,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --duplicate-detection-history-time-window User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"2023-03-14T08:34:02.5221281Z","updatedAt":"2023-03-14T08:34:38.4795731Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":false,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:33.8547716Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -1911,21 +1973,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:39 GMT + - Sun, 29 Sep 2024 07:39:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 64334c88-6e70-46ea-920c-212036e11176 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:39:34 + x-msedge-ref: + - 'Ref A: B61C35EF4C8F4A2B9EF04C23EB16D856 Ref B: OSA221030114023 Ref C: 2024-09-29T07:39:34Z' status: code: 200 message: OK @@ -1951,37 +2015,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --duplicate-detection-history-time-window User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT3M","enableBatchedOperations":false,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT3M","enableBatchedOperations":false,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T07:39:35Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '921' + - '922' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:39 GMT + - Sun, 29 Sep 2024 07:39:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 0a0e3b09-6f8d-43fd-8be0-d4978a26b6d9 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:35 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: 281A7BD9B45542248D8A484EF5F2CDC7 Ref B: OSA221030114023 Ref C: 2024-09-29T07:39:34Z' status: code: 200 message: OK @@ -1999,37 +2065,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics?api-version=2022-01-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli2000005","name":"sb-topiccli2000005","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":49152,"requiresDuplicateDetection":true,"duplicateDetectionHistoryTimeWindow":"PT1H3M4S","enableBatchedOperations":true,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":true,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":true,"enableExpress":false,"createdAt":"2023-03-14T08:33:54.54Z","updatedAt":"2023-03-14T08:33:54.63Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli3000006","name":"sb-topiccli3000006","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":true,"createdAt":"2023-03-14T08:33:58.4694272Z","updatedAt":"2023-03-14T08:33:58.4694272Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT3M","enableBatchedOperations":false,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"2023-03-14T08:34:02.5221281Z","updatedAt":"2023-03-14T08:34:40.8389265Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli2000005","name":"sb-topiccli2000005","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":49152,"requiresDuplicateDetection":true,"duplicateDetectionHistoryTimeWindow":"PT1H3M4S","enableBatchedOperations":true,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":true,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":true,"enableExpress":false,"createdAt":"2024-09-29T07:38:54.19Z","updatedAt":"2024-09-29T07:38:54.273Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli3000006","name":"sb-topiccli3000006","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":true,"createdAt":"2024-09-29T07:38:57.683Z","updatedAt":"2024-09-29T07:38:57.71Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004","name":"sb-topiccli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":256,"defaultMessageTimeToLive":"P365D","maxSizeInMegabytes":2048,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT3M","enableBatchedOperations":false,"sizeInBytes":0,"status":"SendDisabled","supportOrdering":false,"autoDeleteOnIdle":"P428DT3H11M2S","enablePartitioning":false,"enableExpress":true,"createdAt":"2024-09-29T07:39:01.3372585Z","updatedAt":"2024-09-29T07:39:35.5891668Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}]}' headers: cache-control: - no-cache content-length: - - '2857' + - '2849' content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:42 GMT + - Sun, 29 Sep 2024 07:39:36 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff x-ms-inline-count: - '' + x-ms-messaging-activity-id: + - de959f50-1c44-4322-87a9-35e908d47ac7 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:39:37 + x-msedge-ref: + - 'Ref A: 4152A9B88C7C4F4E9E7A24B48A145664 Ref B: TYO201100113029 Ref C: 2024-09-29T07:39:36Z' status: code: 200 message: OK @@ -2051,7 +2119,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --rights User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: @@ -2065,23 +2133,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:43 GMT + - Sun, 29 Sep 2024 07:39:37 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 283b1db0-0668-4062-9eff-64fa403600a3 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:39:38 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' + x-msedge-ref: + - 'Ref A: 13A000E2E1C342EE8AC0E1D75A7A4596 Ref B: TYO201100117021 Ref C: 2024-09-29T07:39:37Z' status: code: 200 message: OK @@ -2099,12 +2169,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/namespaces/topics/authorizationrules","location":"westus","properties":{"rights":["Send"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/namespaces/topics/authorizationrules","location":"westus","properties":{"rights":["Send"]}}' headers: cache-control: - no-cache @@ -2113,21 +2183,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:44 GMT + - Sun, 29 Sep 2024 07:39:39 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 347a0cca-0244-4afa-8a32-8ec74136a6d3 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T07:39:39 + x-msedge-ref: + - 'Ref A: 6F70C327346B4F958A016E462D424499 Ref B: OSA221030113017 Ref C: 2024-09-29T07:39:38Z' status: code: 200 message: OK @@ -2145,12 +2217,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --rights User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/namespaces/topics/authorizationrules","location":"westus","properties":{"rights":["Send"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationrules/cliAutho000003","name":"cliAutho000003","type":"Microsoft.ServiceBus/namespaces/topics/authorizationrules","location":"westus","properties":{"rights":["Send"]}}' headers: cache-control: - no-cache @@ -2159,21 +2231,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:51 GMT + - Sun, 29 Sep 2024 07:39:41 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 57ffe774-13c0-4f65-bb31-fcc840b85191 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:41 + x-msedge-ref: + - 'Ref A: ECE6E33216354C16A2B0141EEE14BBC4 Ref B: TYO201100117035 Ref C: 2024-09-29T07:39:40Z' status: code: 200 message: OK @@ -2195,7 +2269,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --rights User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: @@ -2209,23 +2283,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:51 GMT + - Sun, 29 Sep 2024 07:39:42 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 926d771e-ab06-4470-876a-ec187a7e3e38 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:42 x-ms-ratelimit-remaining-subscription-writes: - '1198' + x-msedge-ref: + - 'Ref A: FD52CD7AC95E4F5498BE4EB7A35B33BA Ref B: TYO201100117035 Ref C: 2024-09-29T07:39:41Z' status: code: 200 message: OK @@ -2245,12 +2321,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationRules/cliAutho000003/ListKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=D04NuIf6DYa6sU2uHPpXf2+ZZM+FC1hmj+ASbLw7qrE=;EntityPath=sb-topiccli000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=vQ86bBkazi3uH/c6tpaQRo5ehQNXy05It+ASbDkEND8=;EntityPath=sb-topiccli000004","primaryKey":"D04NuIf6DYa6sU2uHPpXf2+ZZM+FC1hmj+ASbLw7qrE=","secondaryKey":"vQ86bBkazi3uH/c6tpaQRo5ehQNXy05It+ASbDkEND8=","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=OApPlAbak3KBs/bJXP+OQQ2XqGWdcoeAZ+ASbK2D+i8=;EntityPath=sb-topiccli000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=DFx9fBVjU+1A82vEDOUGYWmfSfiMQ7uE8+ASbIIvAVs=;EntityPath=sb-topiccli000004","primaryKey":"OApPlAbak3KBs/bJXP+OQQ2XqGWdcoeAZ+ASbK2D+i8=","secondaryKey":"DFx9fBVjU+1A82vEDOUGYWmfSfiMQ7uE8+ASbIIvAVs=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -2259,23 +2335,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:53 GMT + - Sun, 29 Sep 2024 07:39:43 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - f3af2026-7267-47e9-b651-9bf5a2292f85 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T07:39:44 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: EFA3D331265C474DAABE2379BBD4D293 Ref B: TYO201100115037 Ref C: 2024-09-29T07:39:42Z' status: code: 200 message: OK @@ -2297,12 +2375,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --key User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=tPObiz+mXLQKiHAOrlKapaYs3zRbcBuQt+ASbBK8jVs=;EntityPath=sb-topiccli000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=vQ86bBkazi3uH/c6tpaQRo5ehQNXy05It+ASbDkEND8=;EntityPath=sb-topiccli000004","primaryKey":"tPObiz+mXLQKiHAOrlKapaYs3zRbcBuQt+ASbBK8jVs=","secondaryKey":"vQ86bBkazi3uH/c6tpaQRo5ehQNXy05It+ASbDkEND8=","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=JEiaFUKgbabMjW/7LWTPdGHJK67Y7OmmP+ASbKXtiGk=;EntityPath=sb-topiccli000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=DFx9fBVjU+1A82vEDOUGYWmfSfiMQ7uE8+ASbIIvAVs=;EntityPath=sb-topiccli000004","primaryKey":"JEiaFUKgbabMjW/7LWTPdGHJK67Y7OmmP+ASbKXtiGk=","secondaryKey":"DFx9fBVjU+1A82vEDOUGYWmfSfiMQ7uE8+ASbIIvAVs=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -2311,23 +2389,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:56 GMT + - Sun, 29 Sep 2024 07:39:44 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 9b0d35c6-f907-44ea-9cfa-d70445bcd84f + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:39:45 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 29E1496E53324A1DB2A065AAF240D226 Ref B: OSA221030115039 Ref C: 2024-09-29T07:39:44Z' status: code: 200 message: OK @@ -2349,12 +2429,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name --key User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationRules/cliAutho000003/regenerateKeys?api-version=2022-01-01-preview response: body: - string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=tPObiz+mXLQKiHAOrlKapaYs3zRbcBuQt+ASbBK8jVs=;EntityPath=sb-topiccli000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=jP2lcQYaJ9lDXkbAHK7cEqBE7DY8v5TFd+ASbLquqNs=;EntityPath=sb-topiccli000004","primaryKey":"tPObiz+mXLQKiHAOrlKapaYs3zRbcBuQt+ASbBK8jVs=","secondaryKey":"jP2lcQYaJ9lDXkbAHK7cEqBE7DY8v5TFd+ASbLquqNs=","keyName":"cliAutho000003"}' + string: '{"primaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=JEiaFUKgbabMjW/7LWTPdGHJK67Y7OmmP+ASbKXtiGk=;EntityPath=sb-topiccli000004","secondaryConnectionString":"Endpoint=sb://sb-nscli000002.servicebus.windows.net/;SharedAccessKeyName=cliAutho000003;SharedAccessKey=+QwQTeXZifyUpnh49y2f4Rr/J7LPBaVXD+ASbOnMrMM=;EntityPath=sb-topiccli000004","primaryKey":"JEiaFUKgbabMjW/7LWTPdGHJK67Y7OmmP+ASbKXtiGk=","secondaryKey":"+QwQTeXZifyUpnh49y2f4Rr/J7LPBaVXD+ASbOnMrMM=","keyName":"cliAutho000003"}' headers: cache-control: - no-cache @@ -2363,23 +2443,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 14 Mar 2023 08:34:57 GMT + - Sun, 29 Sep 2024 07:39:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 15dc135f-7043-4ca0-a8c1-0eea55aab6e7 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T07:39:46 x-ms-ratelimit-remaining-subscription-writes: - '1199' + x-msedge-ref: + - 'Ref A: F5701AD9EC784415BF68DD71F6A92206 Ref B: TYO201151002034 Ref C: 2024-09-29T07:39:45Z' status: code: 200 message: OK @@ -2399,7 +2481,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --topic-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004/authorizationRules/cliAutho000003?api-version=2022-01-01-preview response: @@ -2411,19 +2493,25 @@ interactions: content-length: - '0' date: - - Tue, 14 Mar 2023 08:34:57 GMT + - Sun, 29 Sep 2024 07:39:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008960 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T07:39:47 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' + x-msedge-ref: + - 'Ref A: 099CB47AD8DE457AAFE4F351F45700DB Ref B: OSA221030114035 Ref C: 2024-09-29T07:39:46Z' status: code: 200 message: OK @@ -2443,7 +2531,7 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.9 (Windows-10-10.0.22621-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_topic000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000004?api-version=2022-01-01-preview response: @@ -2455,19 +2543,25 @@ interactions: content-length: - '0' date: - - Tue, 14 Mar 2023 08:35:00 GMT + - Sun, 29 Sep 2024 07:39:48 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001364 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T07:39:48 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' + x-msedge-ref: + - 'Ref A: 02D4928A397D488F9CA5E5C4513EEE47 Ref B: TYO201151003011 Ref C: 2024-09-29T07:39:48Z' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/test_servicebus_namespace_commands.py b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/test_servicebus_namespace_commands.py index 5f486e9e97e..9c8bfb8005c 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/test_servicebus_namespace_commands.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/test_servicebus_namespace_commands.py @@ -44,18 +44,7 @@ def test_sb_namespace(self, resource_group): '--disable-local-auth --minimum-tls-version 1.1').get_output_in_json() self.assertEqual('Standard', namespace['sku']['name']) - self.assertEqual('1.1', namespace['minimumTlsVersion']) - self.assertEqual(self.kwargs['loc'], namespace['location']) - self.assertTrue(namespace['disableLocalAuth']) - self.assertFalse(namespace['zoneRedundant']) - self.assertEqual(2, len(namespace['tags'])) - - # Set minimumTlsVersion using update command - namespace = self.cmd('servicebus namespace update --name {namespacename} --resource-group {rg} --minimum-tls-version 1.0').get_output_in_json() - - self.assertEqual('Standard', namespace['sku']['name']) - self.assertEqual('1.0', namespace['minimumTlsVersion']) - self.assertEqual(self.kwargs['loc'], namespace['location']) + self.assertEqual(self.kwargs['loc'].strip().replace(' ', '').lower(), namespace['location'].strip().replace(' ', '').lower()) self.assertTrue(namespace['disableLocalAuth']) self.assertFalse(namespace['zoneRedundant']) self.assertEqual(2, len(namespace['tags'])) @@ -66,7 +55,7 @@ def test_sb_namespace(self, resource_group): self.assertEqual(1, namespace['sku']['capacity']) self.assertEqual('Premium', namespace['sku']['name']) self.assertEqual('1.2', namespace['minimumTlsVersion']) - self.assertEqual(self.kwargs['loc'], namespace['location']) + self.assertEqual(self.kwargs['loc'].strip().replace(' ', '').lower(), namespace['location'].strip().replace(' ', '').lower()) self.assertFalse(namespace['disableLocalAuth']) self.assertFalse(namespace['zoneRedundant']) self.assertEqual(0, len(namespace['tags'])) @@ -78,7 +67,7 @@ def test_sb_namespace(self, resource_group): self.assertEqual(4, namespace['sku']['capacity']) self.assertEqual('Premium', namespace['sku']['name']) self.assertEqual('1.2', namespace['minimumTlsVersion']) - self.assertEqual(self.kwargs['loc'], namespace['location']) + self.assertEqual(self.kwargs['loc'].strip().replace(' ', '').lower(), namespace['location'].strip().replace(' ', '').lower()) self.assertFalse(namespace['disableLocalAuth']) self.assertFalse(namespace['zoneRedundant']) self.assertEqual(2, len(namespace['tags'])) @@ -89,7 +78,7 @@ def test_sb_namespace(self, resource_group): self.assertEqual('Premium', namespace['sku']['name']) self.assertEqual('1.2', namespace['minimumTlsVersion']) - self.assertEqual(self.kwargs['loc'], namespace['location']) + self.assertEqual(self.kwargs['loc'].strip().replace(' ', '').lower(), namespace['location'].strip().replace(' ', '').lower()) self.assertTrue(namespace['disableLocalAuth']) self.assertFalse(namespace['zoneRedundant']) self.assertEqual(2, len(namespace['tags'])) @@ -102,7 +91,7 @@ def test_sb_namespace(self, resource_group): self.assertEqual(2, namespace['sku']['capacity']) self.assertEqual('Premium', namespace['sku']['name']) self.assertEqual('1.2', namespace['minimumTlsVersion']) - self.assertEqual(self.kwargs['loc'], namespace['location']) + self.assertEqual(self.kwargs['loc'].strip().replace(' ', '').lower(), namespace['location'].strip().replace(' ', '').lower()) self.assertFalse(namespace['disableLocalAuth']) self.assertTrue(namespace['zoneRedundant']) self.assertEqual(2, namespace['premiumMessagingPartitions']) From 25462e14b93849f30afc358cfc0faee72bcee6e5 Mon Sep 17 00:00:00 2001 From: Shubham Chaudhari Date: Sun, 29 Sep 2024 21:49:38 +0530 Subject: [PATCH 3/4] Updates --- ...ivate_endpoint_connection_service_bus.yaml | 264 ++++++------ .../cli/command_modules/servicebus/_help.py | 4 +- .../cli/command_modules/servicebus/_params.py | 4 +- .../cli/command_modules/servicebus/action.py | 1 + .../test_sb_client_affine_subscription.yaml | 370 +++++++++++------ .../recordings/test_sb_premium_queue.yaml | 389 ++++++++++-------- 6 files changed, 597 insertions(+), 435 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_service_bus.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_service_bus.yaml index 669290a83b8..01e683eec9d 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_service_bus.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_service_bus.yaml @@ -22,7 +22,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:08:11.4433249Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:01:56.6574851Z","updatedAt":"2024-09-29T16:01:56.6574851Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:08:11 GMT + - Sun, 29 Sep 2024 16:01:56 GMT expires: - '-1' pragma: @@ -43,13 +43,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 7f721bec-5782-4edd-b6ea-38a2f5a32212 + - ada7769f-5f4c-4636-9d09-bdcbdbee1c49 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G11|2024-09-28T19:08:11 + - EASTUS|EASTUS|G3|2024-09-29T16:01:56 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-msedge-ref: - - 'Ref A: C1206149132048EB8BDD87E5004A6E85 Ref B: OSA221030115011 Ref C: 2024-09-28T19:08:06Z' + - 'Ref A: B76DD9811FDA447DBD330DF91E637854 Ref B: OSA221030115019 Ref C: 2024-09-29T16:01:51Z' status: code: 201 message: Created @@ -72,7 +72,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:08:11.4433249Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:01:56.6574851Z","updatedAt":"2024-09-29T16:01:56.6574851Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache @@ -81,7 +81,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:08:12 GMT + - Sun, 29 Sep 2024 16:01:57 GMT expires: - '-1' pragma: @@ -93,11 +93,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - dfa9a687-c7e3-452a-9217-8ab41bd8eaf0 + - 82b752a0-874a-48e8-b47d-a3242dd65bd2 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G7|2024-09-28T19:08:12 + - EASTUS|EASTUS|G14|2024-09-29T16:01:57 x-msedge-ref: - - 'Ref A: 2824024325BE43388CFAB8DDFA61BFA5 Ref B: OSA221030115011 Ref C: 2024-09-28T19:08:11Z' + - 'Ref A: 91B5006DEF4E4E9B9971AF7158962E86 Ref B: OSA221030115019 Ref C: 2024-09-29T16:01:57Z' status: code: 200 message: OK @@ -120,7 +120,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:08:11.4433249Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:01:56.6574851Z","updatedAt":"2024-09-29T16:01:56.6574851Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache @@ -129,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:08:42 GMT + - Sun, 29 Sep 2024 16:02:28 GMT expires: - '-1' pragma: @@ -141,11 +141,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 4f68065a-6b36-4934-a926-1ffb9065b5b9 + - ac7cb4bb-c71e-4722-96e6-3861562a24fc x-ms-messaging-routing-id: - - EASTUS|EASTUS|G9|2024-09-28T19:08:43 + - EASTUS|EASTUS|G6|2024-09-29T16:02:28 x-msedge-ref: - - 'Ref A: E7E3BD1EAB414186975581359A0BBE4E Ref B: OSA221030115011 Ref C: 2024-09-28T19:08:42Z' + - 'Ref A: 93182919519B4DD4938DA753154E754A Ref B: OSA221030115019 Ref C: 2024-09-29T16:02:27Z' status: code: 200 message: OK @@ -168,7 +168,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:09:04.5292704Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T16:01:56.6574851Z","updatedAt":"2024-09-29T16:02:47.3933439Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache @@ -177,7 +177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:13 GMT + - Sun, 29 Sep 2024 16:02:58 GMT expires: - '-1' pragma: @@ -189,11 +189,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 4ba86583-1805-4338-ba4f-f260b78ee7be + - 7cbe7257-663c-42da-a1dd-a9c92e202602 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G14|2024-09-28T19:09:14 + - EASTUS|EASTUS|G14|2024-09-29T16:02:59 x-msedge-ref: - - 'Ref A: 4A78DD4C3EE04F3D91A5619633FE11C3 Ref B: OSA221030115011 Ref C: 2024-09-28T19:09:13Z' + - 'Ref A: 414AB2CFB1E849FD8D5DCAAC621840E1 Ref B: OSA221030115019 Ref C: 2024-09-29T16:02:58Z' status: code: 200 message: OK @@ -213,19 +213,19 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T19:08:11.4433249Z","updatedAt":"2024-09-28T19:09:04.5292704Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","name":"cli-test-resource-000006","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cli-test-resource-000006","serviceBusEndpoint":"https://cli-test-resource-000006.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T16:01:56.6574851Z","updatedAt":"2024-09-29T16:02:47.3933439Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '799' + - '945' content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:15 GMT + - Sun, 29 Sep 2024 16:03:00 GMT expires: - '-1' pragma: @@ -237,11 +237,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - be29e1a7-f88e-4efd-a250-9ead216bb5ce + - 93d51cb2-620d-4def-bb2b-0b4e8b2192b6 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G6|2024-09-28T19:09:16 + - EASTUS|EASTUS|G11|2024-09-29T16:03:01 x-msedge-ref: - - 'Ref A: 274DA0125A0E4BB9B3902DFEB5086138 Ref B: OSA221030115037 Ref C: 2024-09-28T19:09:15Z' + - 'Ref A: 06258EDA73C0435DBEC00F83C47B3050 Ref B: OSA221030113053 Ref C: 2024-09-29T16:03:00Z' status: code: 200 message: OK @@ -273,7 +273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:18 GMT + - Sun, 29 Sep 2024 16:03:03 GMT expires: - '-1' pragma: @@ -285,11 +285,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - c215e540-f18c-4f9c-86a4-02c0be074993 + - f15dfc88-10ba-4e75-9a10-1393286db10e x-ms-messaging-routing-id: - - EASTUS|EASTUS|G3|2024-09-28T19:09:18 + - EASTUS|EASTUS|G1|2024-09-29T16:03:03 x-msedge-ref: - - 'Ref A: 8504E593361A4F7DA38274D196CF7079 Ref B: OSA221030116029 Ref C: 2024-09-28T19:09:18Z' + - 'Ref A: 9B6ABF1A346A490894E2AA350CC6C0CA Ref B: TYO201100117045 Ref C: 2024-09-29T16:03:02Z' status: code: 200 message: OK @@ -312,7 +312,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_private_endpoint_connection_service_bus000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001","name":"test_private_endpoint_connection_service_bus000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_service_bus","date":"2024-09-28T19:08:02Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001","name":"test_private_endpoint_connection_service_bus000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_service_bus","date":"2024-09-29T16:01:47Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -321,7 +321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:18 GMT + - Sun, 29 Sep 2024 16:03:04 GMT expires: - '-1' pragma: @@ -333,7 +333,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 7712B499B6C04061ABE3EFAC9FA7B66A Ref B: TYO201100117031 Ref C: 2024-09-28T19:09:19Z' + - 'Ref A: 17D1E9DA944347AA87387060D47BECCA Ref B: OSA221030116021 Ref C: 2024-09-29T16:03:04Z' status: code: 200 message: OK @@ -362,12 +362,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002?api-version=2022-01-01 response: body: - string: '{"name":"cli-vnet-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002","etag":"W/\"629bd91a-b092-413a-8dd3-f421524ec380\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"07f40854-728d-4573-826c-02a1551adf9d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"629bd91a-b092-413a-8dd3-f421524ec380\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"cli-vnet-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002","etag":"W/\"d2282eb0-c52c-46de-b556-0091e137878b\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"61531b63-62f2-41ee-9094-5b6234794f64","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"d2282eb0-c52c-46de-b556-0091e137878b\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/96ec009a-e945-4f46-9098-a8e82c00f2da?api-version=2022-01-01&t=638631473635695145&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HPaPL_7--JDhCl6ykxz76ClWJ45m64P-G-oWN3EPJabyGtTkGVa4pnZrl8aVEspB-EIfVKfRuiwEOcv8oXDrgkvsY_ClxIHuzhjD8q4q79j0-zz2sTC2liVZvfLvxnNMB1lM4YzRBcJC-I-_f3iSCpc8P6FehTsm6hwC2PtRjqW-cjtzMBQI1nqqog29Pv3hjeujIGFIb0Yw6TnNKHjuRNAmtFlM2RVTdWd04a1ir8Uh_q4zyfj8-Ku3EsxXhBE3XqTPXnRHMlXyVit1yCVvy23YuFKMQ7Sfyg5B0rEyI_cueX6Ix7KsVxjXgU09pEvxd9KhLsXzwi3yjijUErTEsQ&h=hIxtGQ65qW-VtD-Duw8JClie147xnQS62VG_zpIzMes + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c48a5e48-7502-4b1a-9c4e-729b33a23462?api-version=2022-01-01&t=638632225878505115&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=WaqEXeea3ddSSUNjey2IAoVImzlIuMoo9wsvOSi6yshnwGOHMqEkAyvZbaZtlc-iHzELeGcTGK1paxnSQHOvNb4fhiB9gxwNGmdfQEuw_nsDv0ZxaX73yplC_Fx6kO6kOdB4wKmDaCmfkKM7ZUOEpstx4AAISMu_BO_L2SqJVXidUcGXkZby4HhPb1qAEkfuUsux45DDrulB_snvHgQF64L6tyHYDc4j9QXNyD6_etcVohVMouQHW3rnszAkghQNVnDl3cVS27dt-4J7Vxm_Ng30gegmzu7SfQmJ7Xzfw8Em1nxCf7BxYiMXRfxNEKkDqFq9jwOFevEaC2pvgxDifg&h=8S9wwKmHyLFK2ynp0Txs6uncLsRCoOVDLAlZUNaZlr0 cache-control: - no-cache content-length: @@ -375,7 +375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:23 GMT + - Sun, 29 Sep 2024 16:03:07 GMT expires: - '-1' pragma: @@ -387,14 +387,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d3928f6-1203-4d48-8e0f-ef4950a230a5 + - 6bb00c8f-e2e6-46a8-a0f1-f4ef7e96fa7b x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 9C1662BE7E7246F380638CEF4538E741 Ref B: TYO201151003023 Ref C: 2024-09-28T19:09:19Z' + - 'Ref A: 8D93EC7DD8474757A36CB7D3CF721529 Ref B: OSA221030116029 Ref C: 2024-09-29T16:03:05Z' status: code: 201 - message: Created + message: '' - request: body: null headers: @@ -411,7 +411,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/96ec009a-e945-4f46-9098-a8e82c00f2da?api-version=2022-01-01&t=638631473635695145&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HPaPL_7--JDhCl6ykxz76ClWJ45m64P-G-oWN3EPJabyGtTkGVa4pnZrl8aVEspB-EIfVKfRuiwEOcv8oXDrgkvsY_ClxIHuzhjD8q4q79j0-zz2sTC2liVZvfLvxnNMB1lM4YzRBcJC-I-_f3iSCpc8P6FehTsm6hwC2PtRjqW-cjtzMBQI1nqqog29Pv3hjeujIGFIb0Yw6TnNKHjuRNAmtFlM2RVTdWd04a1ir8Uh_q4zyfj8-Ku3EsxXhBE3XqTPXnRHMlXyVit1yCVvy23YuFKMQ7Sfyg5B0rEyI_cueX6Ix7KsVxjXgU09pEvxd9KhLsXzwi3yjijUErTEsQ&h=hIxtGQ65qW-VtD-Duw8JClie147xnQS62VG_zpIzMes + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c48a5e48-7502-4b1a-9c4e-729b33a23462?api-version=2022-01-01&t=638632225878505115&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=WaqEXeea3ddSSUNjey2IAoVImzlIuMoo9wsvOSi6yshnwGOHMqEkAyvZbaZtlc-iHzELeGcTGK1paxnSQHOvNb4fhiB9gxwNGmdfQEuw_nsDv0ZxaX73yplC_Fx6kO6kOdB4wKmDaCmfkKM7ZUOEpstx4AAISMu_BO_L2SqJVXidUcGXkZby4HhPb1qAEkfuUsux45DDrulB_snvHgQF64L6tyHYDc4j9QXNyD6_etcVohVMouQHW3rnszAkghQNVnDl3cVS27dt-4J7Vxm_Ng30gegmzu7SfQmJ7Xzfw8Em1nxCf7BxYiMXRfxNEKkDqFq9jwOFevEaC2pvgxDifg&h=8S9wwKmHyLFK2ynp0Txs6uncLsRCoOVDLAlZUNaZlr0 response: body: string: '{"status":"InProgress"}' @@ -423,7 +423,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:23 GMT + - Sun, 29 Sep 2024 16:03:08 GMT expires: - '-1' pragma: @@ -435,12 +435,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3ccccd86-9e1c-44f9-9e8d-eb14ce930348 + - e6c00d79-b120-4155-abd9-d55d74f875a3 x-msedge-ref: - - 'Ref A: D2082FA641894819A89693D8D3B676AB Ref B: TYO201151003023 Ref C: 2024-09-28T19:09:23Z' + - 'Ref A: 4DDA7449D75B43F2879B092BB5F3DCBE Ref B: OSA221030116029 Ref C: 2024-09-29T16:03:07Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -457,7 +457,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/96ec009a-e945-4f46-9098-a8e82c00f2da?api-version=2022-01-01&t=638631473635695145&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HPaPL_7--JDhCl6ykxz76ClWJ45m64P-G-oWN3EPJabyGtTkGVa4pnZrl8aVEspB-EIfVKfRuiwEOcv8oXDrgkvsY_ClxIHuzhjD8q4q79j0-zz2sTC2liVZvfLvxnNMB1lM4YzRBcJC-I-_f3iSCpc8P6FehTsm6hwC2PtRjqW-cjtzMBQI1nqqog29Pv3hjeujIGFIb0Yw6TnNKHjuRNAmtFlM2RVTdWd04a1ir8Uh_q4zyfj8-Ku3EsxXhBE3XqTPXnRHMlXyVit1yCVvy23YuFKMQ7Sfyg5B0rEyI_cueX6Ix7KsVxjXgU09pEvxd9KhLsXzwi3yjijUErTEsQ&h=hIxtGQ65qW-VtD-Duw8JClie147xnQS62VG_zpIzMes + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c48a5e48-7502-4b1a-9c4e-729b33a23462?api-version=2022-01-01&t=638632225878505115&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=WaqEXeea3ddSSUNjey2IAoVImzlIuMoo9wsvOSi6yshnwGOHMqEkAyvZbaZtlc-iHzELeGcTGK1paxnSQHOvNb4fhiB9gxwNGmdfQEuw_nsDv0ZxaX73yplC_Fx6kO6kOdB4wKmDaCmfkKM7ZUOEpstx4AAISMu_BO_L2SqJVXidUcGXkZby4HhPb1qAEkfuUsux45DDrulB_snvHgQF64L6tyHYDc4j9QXNyD6_etcVohVMouQHW3rnszAkghQNVnDl3cVS27dt-4J7Vxm_Ng30gegmzu7SfQmJ7Xzfw8Em1nxCf7BxYiMXRfxNEKkDqFq9jwOFevEaC2pvgxDifg&h=8S9wwKmHyLFK2ynp0Txs6uncLsRCoOVDLAlZUNaZlr0 response: body: string: '{"status":"Succeeded"}' @@ -469,7 +469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:34 GMT + - Sun, 29 Sep 2024 16:03:18 GMT expires: - '-1' pragma: @@ -481,12 +481,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4932b02e-4788-4fa6-9e2c-0c2806190d36 + - 02d910e7-bb28-477a-9bef-bcbf53e95bd3 x-msedge-ref: - - 'Ref A: 75CE0B7CDA3A409296E7467B5276B40E Ref B: TYO201151003023 Ref C: 2024-09-28T19:09:33Z' + - 'Ref A: 71C122A382EB4576B3419996770D1907 Ref B: OSA221030116029 Ref C: 2024-09-29T16:03:18Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -506,7 +506,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002?api-version=2022-01-01 response: body: - string: '{"name":"cli-vnet-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002","etag":"W/\"a99c38cb-715b-4317-ad8e-6c02666694e0\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"07f40854-728d-4573-826c-02a1551adf9d","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"a99c38cb-715b-4317-ad8e-6c02666694e0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' + string: '{"name":"cli-vnet-000002","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002","etag":"W/\"c6b03fb8-47eb-4d06-ad9e-2971d98b829e\"","type":"Microsoft.Network/virtualNetworks","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"61531b63-62f2-41ee-9094-5b6234794f64","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"c6b03fb8-47eb-4d06-ad9e-2971d98b829e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}],"virtualNetworkPeerings":[],"enableDdosProtection":false}}' headers: cache-control: - no-cache @@ -515,9 +515,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:34 GMT + - Sun, 29 Sep 2024 16:03:19 GMT etag: - - W/"a99c38cb-715b-4317-ad8e-6c02666694e0" + - W/"c6b03fb8-47eb-4d06-ad9e-2971d98b829e" expires: - '-1' pragma: @@ -529,12 +529,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4ad388e-863a-47cb-92d9-825b57b9855e + - 3df3887b-8543-4275-921b-f06f513b81ce x-msedge-ref: - - 'Ref A: 48844776AFB74E8189019E9389E8A734 Ref B: TYO201151003023 Ref C: 2024-09-28T19:09:34Z' + - 'Ref A: 81B983979B2943AF92718B94ECCF34C4 Ref B: OSA221030116029 Ref C: 2024-09-29T16:03:19Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -554,7 +554,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003?api-version=2024-01-01 response: body: - string: '{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"a99c38cb-715b-4317-ad8e-6c02666694e0\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"c6b03fb8-47eb-4d06-ad9e-2971d98b829e\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -563,9 +563,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:35 GMT + - Sun, 29 Sep 2024 16:03:19 GMT etag: - - W/"a99c38cb-715b-4317-ad8e-6c02666694e0" + - W/"c6b03fb8-47eb-4d06-ad9e-2971d98b829e" expires: - '-1' pragma: @@ -577,12 +577,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ce574887-4ee7-4ec6-980a-8ace90a334c2 + - 51296ea0-00c5-4cc2-8bac-29139ab8cbc9 x-msedge-ref: - - 'Ref A: 984CF9EC27DE4700B0A464A6E82644EA Ref B: TYO201100116029 Ref C: 2024-09-28T19:09:35Z' + - 'Ref A: 9AD6F44ABDA449E79E958A6A9F9E7A49 Ref B: OSA221030116049 Ref C: 2024-09-29T16:03:20Z' status: code: 200 - message: OK + message: '' - request: body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003", "name": "cli-subnet-000003", "properties": {"addressPrefix": "10.0.0.0/24", @@ -609,12 +609,12 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003?api-version=2024-01-01 response: body: - string: '{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"34b8d966-0e08-4740-8c38-ae6a33f05112\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"ca8fc47f-eeeb-47d7-9e2a-1736764831be\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2576ff8c-9e15-4230-a8ee-fcb08e397e24?api-version=2024-01-01&t=638631473779113698&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=S-tGwUrM4ElZPUeqAWsFlp58e6YD0L0-uTyleu2qsl70jTL16Q8QSPfdH2IQRdjHY1EzaMIIbBult36tA5rochkWFewUpORtyQXzHiJWC6_Vby4otNIGNZM3P0He5FBhQ2aJpw8Ca0MBppiFuLpw_HHwEMPlrpEUhx5eczNW1XSbOqooZ2JSxSw6xnHUx7AnyT4-k7VbNjQCVDBaMXj0Bhm5An2F629_2SFcuwgq3oQp3wuycNjc0pqjaErjdchIub6vZtOl-7EeQz09nxAz21BSfCwfi0mDeGC-6mU0cxmFz3iq7wKDO-oNEYmn4fnRlVlUts6C0u1skLVHUqNXiQ&h=80lfIDaQev_9t4Pg65gNGW021eihuDfmM8VeIxbnC84 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6191dbf-01c9-4b01-9786-95d7853a21b0?api-version=2024-01-01&t=638632226026999690&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=AbxdiWhqG6txTUwjh700-Fb6QQ65psuh5vXND0EdY1cUvrkXLdOxd1LNYjYwWurk52DdfE7RwsRyvejxRNgUh6iCbXQ-9dAc5vekSWSnIzbXkkvwaDnMafH8OBQ8K9EyKOp9emwgmqnPEdig_2AP2_32bJL-DPQuGrkyTiyhVoDR2DRbHNDzZ7VkQZWRL057QNb9a3cZG-cb79FhgcZCb_E0NAL-5olfthWc3oC8SsMmlw3z8YRK1uqnED5i-4bvoFMqadMBROlXXY09PjsHOeRZyhoGv1_3e3kL2vVsKjomat7oAUPV0Qrjy8pwKXAXSz8Cu82YPAsb6X2Jz55LYg&h=LjKm7uSa5pf-sk0OuXkzcFFeTGbn-wLffMGKAxXOn9o cache-control: - no-cache content-length: @@ -622,7 +622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:37 GMT + - Sun, 29 Sep 2024 16:03:21 GMT expires: - '-1' pragma: @@ -634,14 +634,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3c65bee9-b392-46b5-8a04-9d65306d27b5 + - 6594c2a5-38f5-46d0-8664-d9926d7947a4 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 19A48175D52F4982882B7FEDE0D206E1 Ref B: TYO201100116029 Ref C: 2024-09-28T19:09:36Z' + - 'Ref A: 2C3704C71EA74D748ADE3002A7BD909D Ref B: OSA221030116049 Ref C: 2024-09-29T16:03:20Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -658,7 +658,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2576ff8c-9e15-4230-a8ee-fcb08e397e24?api-version=2024-01-01&t=638631473779113698&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=S-tGwUrM4ElZPUeqAWsFlp58e6YD0L0-uTyleu2qsl70jTL16Q8QSPfdH2IQRdjHY1EzaMIIbBult36tA5rochkWFewUpORtyQXzHiJWC6_Vby4otNIGNZM3P0He5FBhQ2aJpw8Ca0MBppiFuLpw_HHwEMPlrpEUhx5eczNW1XSbOqooZ2JSxSw6xnHUx7AnyT4-k7VbNjQCVDBaMXj0Bhm5An2F629_2SFcuwgq3oQp3wuycNjc0pqjaErjdchIub6vZtOl-7EeQz09nxAz21BSfCwfi0mDeGC-6mU0cxmFz3iq7wKDO-oNEYmn4fnRlVlUts6C0u1skLVHUqNXiQ&h=80lfIDaQev_9t4Pg65gNGW021eihuDfmM8VeIxbnC84 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c6191dbf-01c9-4b01-9786-95d7853a21b0?api-version=2024-01-01&t=638632226026999690&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=AbxdiWhqG6txTUwjh700-Fb6QQ65psuh5vXND0EdY1cUvrkXLdOxd1LNYjYwWurk52DdfE7RwsRyvejxRNgUh6iCbXQ-9dAc5vekSWSnIzbXkkvwaDnMafH8OBQ8K9EyKOp9emwgmqnPEdig_2AP2_32bJL-DPQuGrkyTiyhVoDR2DRbHNDzZ7VkQZWRL057QNb9a3cZG-cb79FhgcZCb_E0NAL-5olfthWc3oC8SsMmlw3z8YRK1uqnED5i-4bvoFMqadMBROlXXY09PjsHOeRZyhoGv1_3e3kL2vVsKjomat7oAUPV0Qrjy8pwKXAXSz8Cu82YPAsb6X2Jz55LYg&h=LjKm7uSa5pf-sk0OuXkzcFFeTGbn-wLffMGKAxXOn9o response: body: string: '{"status":"Succeeded"}' @@ -670,7 +670,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:38 GMT + - Sun, 29 Sep 2024 16:03:22 GMT expires: - '-1' pragma: @@ -682,12 +682,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a22a0e2c-2291-4f2a-9c98-34a04326058d + - 29afa5ab-c576-40fe-a45e-4c1810ec864e x-msedge-ref: - - 'Ref A: 561B9820CD73435FA61B6B919EC438FD Ref B: TYO201100116029 Ref C: 2024-09-28T19:09:37Z' + - 'Ref A: 3816A23840C7498789A26A042463E6A6 Ref B: OSA221030116049 Ref C: 2024-09-29T16:03:22Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -707,7 +707,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003?api-version=2024-01-01 response: body: - string: '{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"34b8d966-0e08-4740-8c38-ae6a33f05112\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' + string: '{"name":"cli-subnet-000003","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003","etag":"W/\"ca8fc47f-eeeb-47d7-9e2a-1736764831be\"","properties":{"provisioningState":"Succeeded","addressPrefix":"10.0.0.0/24","ipamPoolPrefixAllocations":[],"delegations":[],"privateEndpointNetworkPolicies":"Disabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}' headers: cache-control: - no-cache @@ -716,9 +716,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:39 GMT + - Sun, 29 Sep 2024 16:03:23 GMT etag: - - W/"34b8d966-0e08-4740-8c38-ae6a33f05112" + - W/"ca8fc47f-eeeb-47d7-9e2a-1736764831be" expires: - '-1' pragma: @@ -730,12 +730,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9897d45d-6c53-44b7-9014-0ce278f40c56 + - 19598524-b36e-45aa-bfb8-17e100b83e2e x-msedge-ref: - - 'Ref A: 4343E050F50D4A6BB46D543D6915617C Ref B: TYO201100116029 Ref C: 2024-09-28T19:09:38Z' + - 'Ref A: 9ED6E3B4F9B54D8382049E1E2C46DDDA Ref B: OSA221030116049 Ref C: 2024-09-29T16:03:23Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -756,7 +756,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_private_endpoint_connection_service_bus000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001","name":"test_private_endpoint_connection_service_bus000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_service_bus","date":"2024-09-28T19:08:02Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001","name":"test_private_endpoint_connection_service_bus000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_private_endpoint_connection_service_bus","date":"2024-09-29T16:01:47Z","module":"network"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -765,7 +765,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:40 GMT + - Sun, 29 Sep 2024 16:03:25 GMT expires: - '-1' pragma: @@ -777,7 +777,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: 58ECAC5BF39A44B2AB99543E47783F76 Ref B: OSA221030113029 Ref C: 2024-09-28T19:09:40Z' + - 'Ref A: 1C8F99B137B44ACD854ECB638C92CAAA Ref B: OSA221030115023 Ref C: 2024-09-29T16:03:24Z' status: code: 200 message: OK @@ -808,13 +808,13 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004?api-version=2022-01-01 response: body: - string: '{"name":"cli-pe-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004","etag":"W/\"410f79d1-3435-4a12-9b2d-326ff6baf367\"","type":"Microsoft.Network/privateEndpoints","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"60435c63-3b39-4847-9188-e12d29593c9a","privateLinkServiceConnections":[{"name":"cli-pec-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004/privateLinkServiceConnections/cli-pec-000005","etag":"W/\"410f79d1-3435-4a12-9b2d-326ff6baf367\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","groupIds":["namespace"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto - Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000004.nic.26c51a09-a7a9-4a18-bee7-a88f5d2c63fe"}],"customDnsConfigs":[]}}' + string: '{"name":"cli-pe-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004","etag":"W/\"c028f523-0847-408c-b41b-cbb855a9f94d\"","type":"Microsoft.Network/privateEndpoints","location":"westus","properties":{"provisioningState":"Updating","resourceGuid":"3981a2e0-c4f1-4e99-9a62-e761cdb45cce","privateLinkServiceConnections":[{"name":"cli-pec-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004/privateLinkServiceConnections/cli-pec-000005","etag":"W/\"c028f523-0847-408c-b41b-cbb855a9f94d\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","groupIds":["namespace"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto + Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000004.nic.a1848e3c-86b3-41d2-a97d-fb34424f61cb"}],"customDnsConfigs":[]}}' headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c460a7bf-349a-46e4-bced-78f76dfedeb6?api-version=2022-01-01&t=638632226088441663&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=n8RhhxqDALFFzwGKt8nJ0wTRTdJMEvZGKKiSOczR0DZD5mX7iGINim7RuAHymv3fZ_wchwqxjR8YdnoE-UqbHujzaKBzQeWm9XAKw5oz7nVpKmJXLHEnmYivXKfU86f1ys3a-Yy0SUfmgNX9MbqiZlkjyG9HPSMU54ri8IvkEussYIP14DgRTv14WvmvxIx6nhFYgno9UWyOWmTUWcffQms1JXGTtcPizZjObzdAXGJvJU_KzKEdJl7DeXs88SXxwgE-XOIGKlQ0pX-Xr4mVRPSy9lxAeQrZ7ZgGuGNiq-K1jEym2Zq7UkyqdYY5nujfYVnXNhW7YGLWIQOh36zvVg&h=3eGzLaIqdLuG0lLGUyH1lY8xNobund9T_wwyoVw_yEs cache-control: - no-cache content-length: @@ -822,7 +822,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:43 GMT + - Sun, 29 Sep 2024 16:03:28 GMT expires: - '-1' pragma: @@ -834,14 +834,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b4d9ab7b-61d5-4809-972b-1d7e6137d835 + - 2f23fb7e-5921-4fc5-8576-fb43f3d6573f x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 1563CD9176514EB0BC8F53F50F8E060C Ref B: TYO201151005011 Ref C: 2024-09-28T19:09:40Z' + - 'Ref A: 7AC47AA2C65B48B19866ACA6E812B825 Ref B: TYO201100116039 Ref C: 2024-09-29T16:03:25Z' status: code: 201 - message: Created + message: '' - request: body: null headers: @@ -859,7 +859,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c460a7bf-349a-46e4-bced-78f76dfedeb6?api-version=2022-01-01&t=638632226088441663&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=n8RhhxqDALFFzwGKt8nJ0wTRTdJMEvZGKKiSOczR0DZD5mX7iGINim7RuAHymv3fZ_wchwqxjR8YdnoE-UqbHujzaKBzQeWm9XAKw5oz7nVpKmJXLHEnmYivXKfU86f1ys3a-Yy0SUfmgNX9MbqiZlkjyG9HPSMU54ri8IvkEussYIP14DgRTv14WvmvxIx6nhFYgno9UWyOWmTUWcffQms1JXGTtcPizZjObzdAXGJvJU_KzKEdJl7DeXs88SXxwgE-XOIGKlQ0pX-Xr4mVRPSy9lxAeQrZ7ZgGuGNiq-K1jEym2Zq7UkyqdYY5nujfYVnXNhW7YGLWIQOh36zvVg&h=3eGzLaIqdLuG0lLGUyH1lY8xNobund9T_wwyoVw_yEs response: body: string: '{"status":"InProgress"}' @@ -871,7 +871,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:44 GMT + - Sun, 29 Sep 2024 16:03:28 GMT expires: - '-1' pragma: @@ -883,9 +883,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f34f0e38-5069-4186-8111-f94ecf887de8 + - 9cd402e3-8127-4e0b-b73f-aa468ce57727 x-msedge-ref: - - 'Ref A: FBA15046FCEA4761B676D3B68C529DD3 Ref B: TYO201151005011 Ref C: 2024-09-28T19:09:44Z' + - 'Ref A: 39EE1343F4A24002AB2796E127A593F9 Ref B: TYO201100116039 Ref C: 2024-09-29T16:03:28Z' status: code: 200 message: OK @@ -906,7 +906,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c460a7bf-349a-46e4-bced-78f76dfedeb6?api-version=2022-01-01&t=638632226088441663&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=n8RhhxqDALFFzwGKt8nJ0wTRTdJMEvZGKKiSOczR0DZD5mX7iGINim7RuAHymv3fZ_wchwqxjR8YdnoE-UqbHujzaKBzQeWm9XAKw5oz7nVpKmJXLHEnmYivXKfU86f1ys3a-Yy0SUfmgNX9MbqiZlkjyG9HPSMU54ri8IvkEussYIP14DgRTv14WvmvxIx6nhFYgno9UWyOWmTUWcffQms1JXGTtcPizZjObzdAXGJvJU_KzKEdJl7DeXs88SXxwgE-XOIGKlQ0pX-Xr4mVRPSy9lxAeQrZ7ZgGuGNiq-K1jEym2Zq7UkyqdYY5nujfYVnXNhW7YGLWIQOh36zvVg&h=3eGzLaIqdLuG0lLGUyH1lY8xNobund9T_wwyoVw_yEs response: body: string: '{"status":"InProgress"}' @@ -918,7 +918,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:09:54 GMT + - Sun, 29 Sep 2024 16:03:39 GMT expires: - '-1' pragma: @@ -930,12 +930,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ead62c8e-3081-49d5-bd84-6342075a49e3 + - fb9bfa07-5632-43d8-8b05-9a2038698e85 x-msedge-ref: - - 'Ref A: 571D6EC005DA4BDCB1D8954C13DBDAEE Ref B: TYO201151005011 Ref C: 2024-09-28T19:09:55Z' + - 'Ref A: 321A0C62763448B68A68F8BE8C4451EE Ref B: TYO201100116039 Ref C: 2024-09-29T16:03:39Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -953,7 +953,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c460a7bf-349a-46e4-bced-78f76dfedeb6?api-version=2022-01-01&t=638632226088441663&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=n8RhhxqDALFFzwGKt8nJ0wTRTdJMEvZGKKiSOczR0DZD5mX7iGINim7RuAHymv3fZ_wchwqxjR8YdnoE-UqbHujzaKBzQeWm9XAKw5oz7nVpKmJXLHEnmYivXKfU86f1ys3a-Yy0SUfmgNX9MbqiZlkjyG9HPSMU54ri8IvkEussYIP14DgRTv14WvmvxIx6nhFYgno9UWyOWmTUWcffQms1JXGTtcPizZjObzdAXGJvJU_KzKEdJl7DeXs88SXxwgE-XOIGKlQ0pX-Xr4mVRPSy9lxAeQrZ7ZgGuGNiq-K1jEym2Zq7UkyqdYY5nujfYVnXNhW7YGLWIQOh36zvVg&h=3eGzLaIqdLuG0lLGUyH1lY8xNobund9T_wwyoVw_yEs response: body: string: '{"status":"InProgress"}' @@ -965,7 +965,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:10:15 GMT + - Sun, 29 Sep 2024 16:04:00 GMT expires: - '-1' pragma: @@ -977,12 +977,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - abe7bf44-50bd-4b8a-ba82-96669e3ac866 + - ff683625-5cb4-40f9-9c06-3ee9eb57839a x-msedge-ref: - - 'Ref A: F491591453F849AD98531F031EC307EE Ref B: TYO201151005011 Ref C: 2024-09-28T19:10:15Z' + - 'Ref A: 0EB09C472E944E68A26174D1BBE66F57 Ref B: TYO201100116039 Ref C: 2024-09-29T16:04:00Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -1000,7 +1000,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/56bdbaa7-33fa-4360-afec-cad51ddc6043?api-version=2022-01-01&t=638631473841246996&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=HnCGT-PSfwTuonVbBiXtOH99PKAbHKhCCb4IboFxvXOyhp1b_IHecto_gWnN5WugtAsl6GetqbvU-iqCX0jbHV_VvbMUWwO0wYr_QhIC_HWljtLSlfq3_JqRSFgVzxHsegnx837OokrsWh2E1xT5tUzjtLYVpLgeA5xcr_R1nyznFvTX5-TmnCySMQYILgNDqxp2nyDDgo8nWtNWi8whgG8hoEq6D4uaymlvBRGojcbJvAeI94t8467R2ZfXE9sypakNxXkdHAawn6b3ueJKzVr62Qh4zgvoVfAVOXjbbMwmWZGy9vUb079tQnqKNcJr_SqtnxLNP0G_t3Z6G6nygg&h=plarsg8SBHjZGNB6DhisJL-w2bKM88QRsZ5MZOFWF1M + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c460a7bf-349a-46e4-bced-78f76dfedeb6?api-version=2022-01-01&t=638632226088441663&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=n8RhhxqDALFFzwGKt8nJ0wTRTdJMEvZGKKiSOczR0DZD5mX7iGINim7RuAHymv3fZ_wchwqxjR8YdnoE-UqbHujzaKBzQeWm9XAKw5oz7nVpKmJXLHEnmYivXKfU86f1ys3a-Yy0SUfmgNX9MbqiZlkjyG9HPSMU54ri8IvkEussYIP14DgRTv14WvmvxIx6nhFYgno9UWyOWmTUWcffQms1JXGTtcPizZjObzdAXGJvJU_KzKEdJl7DeXs88SXxwgE-XOIGKlQ0pX-Xr4mVRPSy9lxAeQrZ7ZgGuGNiq-K1jEym2Zq7UkyqdYY5nujfYVnXNhW7YGLWIQOh36zvVg&h=3eGzLaIqdLuG0lLGUyH1lY8xNobund9T_wwyoVw_yEs response: body: string: '{"status":"Succeeded"}' @@ -1012,7 +1012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:10:55 GMT + - Sun, 29 Sep 2024 16:04:40 GMT expires: - '-1' pragma: @@ -1024,12 +1024,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 77ef090c-2744-43f0-b689-b859bdffcd8a + - db9e5a35-b5a0-47cb-ad98-38263d010a26 x-msedge-ref: - - 'Ref A: CAE1FB82B46B4DEE82B8BD21D27C4530 Ref B: TYO201151005011 Ref C: 2024-09-28T19:10:55Z' + - 'Ref A: 9E29E0642C7B439D99AF39A588DBAC7A Ref B: TYO201100116039 Ref C: 2024-09-29T16:04:40Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -1050,7 +1050,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004?api-version=2022-01-01 response: body: - string: '{"name":"cli-pe-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004","etag":"W/\"821cb5ba-48d1-4a2e-bd3c-3607f11c440e\"","type":"Microsoft.Network/privateEndpoints","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"60435c63-3b39-4847-9188-e12d29593c9a","privateLinkServiceConnections":[{"name":"cli-pec-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004/privateLinkServiceConnections/cli-pec-000005","etag":"W/\"821cb5ba-48d1-4a2e-bd3c-3607f11c440e\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","groupIds":["namespace"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000004.nic.26c51a09-a7a9-4a18-bee7-a88f5d2c63fe"}],"customDnsConfigs":[{"fqdn":"cli-test-resource-000006.servicebus.windows.net","ipAddresses":["10.0.0.4"]}]}}' + string: '{"name":"cli-pe-000004","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004","etag":"W/\"1e67e871-6c8a-4fd3-8009-95dbc6f22288\"","type":"Microsoft.Network/privateEndpoints","location":"westus","properties":{"provisioningState":"Succeeded","resourceGuid":"3981a2e0-c4f1-4e99-9a62-e761cdb45cce","privateLinkServiceConnections":[{"name":"cli-pec-000005","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004/privateLinkServiceConnections/cli-pec-000005","etag":"W/\"1e67e871-6c8a-4fd3-8009-95dbc6f22288\"","properties":{"provisioningState":"Succeeded","privateLinkServiceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006","groupIds":["namespace"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}},"type":"Microsoft.Network/privateEndpoints/privateLinkServiceConnections"}],"manualPrivateLinkServiceConnections":[],"customNetworkInterfaceName":"","subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-000002/subnets/cli-subnet-000003"},"ipConfigurations":[],"networkInterfaces":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/networkInterfaces/cli-pe-000004.nic.a1848e3c-86b3-41d2-a97d-fb34424f61cb"}],"customDnsConfigs":[{"fqdn":"cli-test-resource-000006.servicebus.windows.net","ipAddresses":["10.0.0.4"]}]}}' headers: cache-control: - no-cache @@ -1059,9 +1059,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:10:55 GMT + - Sun, 29 Sep 2024 16:04:41 GMT etag: - - W/"821cb5ba-48d1-4a2e-bd3c-3607f11c440e" + - W/"1e67e871-6c8a-4fd3-8009-95dbc6f22288" expires: - '-1' pragma: @@ -1073,12 +1073,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57ebce6f-8068-4e41-b786-28b43bf5ebb9 + - d7f61a63-7168-488a-ab21-540e62596ec1 x-msedge-ref: - - 'Ref A: 1CE186B2CC554DF3B186AA6821304178 Ref B: TYO201151005011 Ref C: 2024-09-28T19:10:56Z' + - 'Ref A: 0D9E4373C5154D83A0C23C2B7B23363F Ref B: TYO201100116039 Ref C: 2024-09-29T16:04:41Z' status: code: 200 - message: OK + message: '' - request: body: null headers: @@ -1098,7 +1098,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections?api-version=2021-06-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1","name":"4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/30342e27-271e-4a64-a601-79e3a238eb78","name":"30342e27-271e-4a64-a601-79e3a238eb78","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}]}' headers: cache-control: - no-cache @@ -1107,7 +1107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:10:57 GMT + - Sun, 29 Sep 2024 16:04:43 GMT expires: - '-1' pragma: @@ -1119,11 +1119,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - f39aa259-26e5-4098-a6fb-49962acd7640 + - 3275856c-7780-494b-bbf7-bdf57df0ca39 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G13|2024-09-28T19:10:58 + - EASTUS|EASTUS|G7|2024-09-29T16:04:43 x-msedge-ref: - - 'Ref A: 472C1A1A6F84454E8A595CD9AB8E755A Ref B: OSA221030115027 Ref C: 2024-09-28T19:10:57Z' + - 'Ref A: D3F0C1CC7CD8426DA697C61254FAA6A3 Ref B: TYO201151005040 Ref C: 2024-09-29T16:04:42Z' status: code: 200 message: OK @@ -1143,10 +1143,10 @@ interactions: User-Agent: - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.64.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/30342e27-271e-4a64-a601-79e3a238eb78?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1","name":"4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/30342e27-271e-4a64-a601-79e3a238eb78","name":"30342e27-271e-4a64-a601-79e3a238eb78","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"eastus","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.Network/privateEndpoints/cli-pe-000004"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}' headers: cache-control: - no-cache @@ -1155,7 +1155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sat, 28 Sep 2024 19:10:58 GMT + - Sun, 29 Sep 2024 16:04:44 GMT expires: - '-1' pragma: @@ -1167,11 +1167,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 38d3197d-6932-447c-b24a-90dd10aa9e2a + - 6a8519db-3e90-4b5b-8362-5527f2294a59 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G8|2024-09-28T19:10:59 + - EASTUS|EASTUS|G8|2024-09-29T16:04:44 x-msedge-ref: - - 'Ref A: 8BC2B31DBCCE4667899862A1E878DB87 Ref B: TYO201100113009 Ref C: 2024-09-28T19:10:58Z' + - 'Ref A: A40AD43D2D60441793C2518AAB2B5CB3 Ref B: TYO201151003023 Ref C: 2024-09-29T16:04:44Z' status: code: 200 message: OK @@ -1193,19 +1193,19 @@ interactions: User-Agent: - python/3.10.11 (Windows-10-10.0.22631-SP0) AZURECLI/2.64.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/30342e27-271e-4a64-a601-79e3a238eb78?api-version=2021-06-01-preview response: body: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1/operationStatus/4f52bd73-88ce-49c5-a19a-ce2f7eff6ea1?api-version=2021-06-01-preview&operationType=Delete&t=638631474610150971&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=OAwHb5L0AqzNlgpFDGpnKTzOto1AQ7eqLhWWo_lIOz-WhjuqNOqUw649Hpey7QFT3AV0nYGdk9uP59caWUkVEmqbsW6UqYCwrZCH6TMZeyOBDf3mj0Bx7QuoRqakdXGq-kvQDTTacc3HLdbYvBTNg5byid1vQ4SIz2xTuKaaJmIhvfRkDA9WxVkXVFOVbiT2pa8LhoOHMaLWbZYZRHGbrjf0qRO6md-gQUAhft3LDUHj4zjR02OE7MMJw3_MyThs_wdQDrjcZCqNkFZsWKj4fFnkR4DtzgxNFWJKTNHicsxfbh7H_lQQrtQXGq2LES2LvzwJZu9k6pOEWUNiafJz6Q&h=bASXf6o2lDsWB0Z9itFoOH0KkkCFZS-glvInhomO5kg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_private_endpoint_connection_service_bus000001/providers/Microsoft.ServiceBus/namespaces/cli-test-resource-000006/privateEndpointConnections/30342e27-271e-4a64-a601-79e3a238eb78/operationStatus/30342e27-271e-4a64-a601-79e3a238eb78?api-version=2021-06-01-preview&operationType=Delete&t=638632226862455758&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=gcOGv-_lFjGuX5-upX44U_hGu-bRN7JTpomgh1kxoFS9Chn8idXI0nJAZcBPQdgYInAjiEEsoFdf4NW6t5DFWWYbAIQIuSRSBWdX-ud9q7b_BIRFOHSPuCXNtXEXdlJL78dQIgT4bEHyATMBmhnm4SbiEKI8dMmEHuZKnFGXRA2cD_qOzpSgebAGfLzD1QKbZzgIMxjBdhrPMa1LnVPFDRveXEanN8buchP5MF-aRFkcGMyqE9mCyvHXl0Cekm5zPhUvxo9DUAGeY364JPItjMQ8ESfnMdWVa9Mi2G07b2ZZ5p_WLSCFqI18WfofpTRe8PO6-uRiimowIBmrbWgwgQ&h=TbehzuZZpXy_EYkB3PG1-FhZ4Oa7gcHpaYqVut5xhrE cache-control: - no-cache content-length: - '0' date: - - Sat, 28 Sep 2024 19:11:00 GMT + - Sun, 29 Sep 2024 16:04:45 GMT expires: - '-1' pragma: @@ -1217,13 +1217,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000006456 + - 00000001-0000-0000-0002-000000001056 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G9|2024-09-28T19:11:00 + - EASTUS|EASTUS|G3|2024-09-29T16:04:46 x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-msedge-ref: - - 'Ref A: CDB3FBD349DA43C0988DE7282C54F695 Ref B: OSA221030113037 Ref C: 2024-09-28T19:10:59Z' + - 'Ref A: FADDDFA539DA4C3D94ADC91A8D323694 Ref B: TYO201151002062 Ref C: 2024-09-29T16:04:45Z' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/_help.py b/src/azure-cli/azure/cli/command_modules/servicebus/_help.py index 45942507327..b65cc486ca3 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/_help.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/_help.py @@ -340,7 +340,7 @@ examples: - name: Add one or more Replica properties to a namespace. text: | - az servicebus namespace replica add --namespace-name mynamespace -g MyResourceGroup --geo-data-replication-config role-type=Secondary location-name=mylocation + az servicebus namespace replica add --namespace-name mynamespace -g MyResourceGroup --geo-data-replication-config role-type=Secondary location-name=mylocation """ helps['servicebus namespace replica remove'] = """ @@ -349,7 +349,7 @@ examples: - name: Remove one or more Replica properties to a namespace. text: | - az servicebus namespace replica remove --namespace-name mynamespace -g MyResourceGroup --geo-data-replication-config role-type=Secondary location-name=mylocation + az servicebus namespace replica remove --namespace-name mynamespace -g MyResourceGroup --geo-data-replication-config role-type=Secondary location-name=mylocation """ helps['servicebus queue'] = """ diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/_params.py b/src/azure-cli/azure/cli/command_modules/servicebus/_params.py index c6888f64845..5ae95056c19 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/_params.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/_params.py @@ -49,9 +49,9 @@ def load_arguments_sb(self, _): help='This determines if traffic is allowed over public network. By default it is enabled. If value is SecuredByPerimeter then Inbound and Outbound communication is controlled by the network security perimeter and profile\' access rules.') c.argument('premium_messaging_partitions', options_list=['--premium-messaging-partitions', '--premium-partitions'], is_preview=True, type=int, help='The number of partitions of a Service Bus namespace. This property is only applicable to Premium SKU namespaces. The default value is 1 and possible values are 1, 2 and 4') c.argument('alternate_name', help='Alternate name specified when alias and namespace names are same.') - c.argument('geo_data_replication_config', action=AlertAddlocation, nargs='+', + c.argument('geo_data_replication_config', action=AlertAddlocation, nargs='+', options_list=['--geo-data-replication-config', '--replica-config'], help='A list of regions where replicas of the namespace are maintained Object') - c.argument('max_replication_lag_duration_in_seconds', type=int, + c.argument('max_replication_lag_duration_in_seconds', type=int, options_list=['--max-replication-lag-duration-in-seconds', '--max-lag'], help='The maximum acceptable lag for data replication operations from the primary replica to a quorum of secondary replicas') with self.argument_context('servicebus namespace create') as c: diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/action.py b/src/azure-cli/azure/cli/command_modules/servicebus/action.py index 1a51ba416df..4bb38216392 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/action.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/action.py @@ -100,6 +100,7 @@ def get_action(self, values, option_string): # pylint: disable=no-self-use IpRuleList["action"] = 'Allow' return IpRuleList + class AlertAddlocation(argparse._AppendAction): def __call__(self, parser, namespace, values, option_string=None): action = self.get_action(values, option_string) diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_client_affine_subscription.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_client_affine_subscription.yaml index bd377eac301..f19d202d1e0 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_client_affine_subscription.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_client_affine_subscription.yaml @@ -13,38 +13,38 @@ interactions: ParameterSetName: - --resource-group --name --sku User-Agent: - - AZURECLI/2.46.0 azsdk-python-azure-mgmt-resource/22.0.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001","name":"cli_test_sb_subscription000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2023-03-13T13:50:56Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001","name":"cli_test_sb_subscription000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_client_affine_subscription","date":"2024-09-29T16:11:29Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '338' + - '404' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:50:57 GMT + - Sun, 29 Sep 2024 16:11:31 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-msedge-ref: + - 'Ref A: 2CE836D036FB4CA0AEAD65A72A4D5284 Ref B: OSA221030115017 Ref C: 2024-09-29T16:11:31Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "None"}, "location": "westus", "sku": {"name": "Premium", - "tier": "Premium"}}' + body: '{"location": "westus", "sku": {"name": "Premium", "tier": "Premium"}}' headers: Accept: - application/json @@ -55,48 +55,93 @@ interactions: Connection: - keep-alive Content-Length: - - '99' + - '69' Content-Type: - application/json ParameterSetName: - --resource-group --name --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:51:01.157Z","updatedAt":"2023-03-13T13:51:01.157Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:11:35.983665Z","updatedAt":"2024-09-29T16:11:35.983665Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '734' + - '886' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:51:01 GMT + - Sun, 29 Sep 2024 16:11:36 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 12475f74-fcc3-4b85-b2de-c226f4321110 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T16:11:36 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' + x-msedge-ref: + - 'Ref A: 4B5CA60B7B4544AABB9CBDD58CC17761 Ref B: OSA221030116023 Ref C: 2024-09-29T16:11:32Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --sku + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:11:35.983665Z","updatedAt":"2024-09-29T16:11:35.983665Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '886' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 16:11:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - d4ae1789-ebd8-450b-b717-40a0a9691723 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T16:11:36 + x-msedge-ref: + - 'Ref A: FC5E9AA34F5A48C0854AB895B5162E80 Ref B: OSA221030116023 Ref C: 2024-09-29T16:11:36Z' status: code: 200 message: OK @@ -114,40 +159,37 @@ interactions: ParameterSetName: - --resource-group --name --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:51:01.157Z","updatedAt":"2023-03-13T13:51:01.157Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:11:35.983665Z","updatedAt":"2024-09-29T16:11:35.983665Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '734' + - '886' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:51:31 GMT + - Sun, 29 Sep 2024 16:12:07 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 6129876b-f647-438a-b7a6-21470096712b + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T16:12:07 + x-msedge-ref: + - 'Ref A: 6776F4DAEBF1422C9518396BAA121AF2 Ref B: OSA221030116023 Ref C: 2024-09-29T16:12:07Z' status: code: 200 message: OK @@ -165,40 +207,37 @@ interactions: ParameterSetName: - --resource-group --name --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:51:01.157Z","updatedAt":"2023-03-13T13:51:01.157Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:11:35.983665Z","updatedAt":"2024-09-29T16:11:35.983665Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '734' + - '886' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:52:02 GMT + - Sun, 29 Sep 2024 16:12:38 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - bd828635-095d-439f-96f3-0ca1d54fce67 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T16:12:38 + x-msedge-ref: + - 'Ref A: 1DD5E9CAD23D4D3E90DF27E8AFDA2D82 Ref B: OSA221030116023 Ref C: 2024-09-29T16:12:37Z' status: code: 200 message: OK @@ -216,40 +255,37 @@ interactions: ParameterSetName: - --resource-group --name --sku User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"West - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"0b1f6471-1bf0-4dda-aec3-cb9272f09590:sb-nscli000002","createdAt":"2023-03-13T13:51:01.157Z","updatedAt":"2023-03-13T13:52:06.29Z","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T16:11:35.983665Z","updatedAt":"2024-09-29T16:12:39.1484032Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '731' + - '884' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:52:32 GMT + - Sun, 29 Sep 2024 16:13:08 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 1ddeaf3c-6dc3-4c3a-889a-895136bec242 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G3|2024-09-29T16:13:09 + x-msedge-ref: + - 'Ref A: EBF8C2F5CE0D4E3FB5AD99E8F41FB93E Ref B: OSA221030116023 Ref C: 2024-09-29T16:13:08Z' status: code: 200 message: OK @@ -271,13 +307,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000003","name":"sb-topiccli000003","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-13T13:52:34.84Z","updatedAt":"2023-03-13T13:52:35.68Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000003","name":"sb-topiccli000003","type":"Microsoft.ServiceBus/namespaces/topics","location":"westus","properties":{"maxMessageSizeInKilobytes":1024,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T16:13:12.4Z","updatedAt":"2024-09-29T16:13:13.153Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -286,23 +321,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:52:36 GMT + - Sun, 29 Sep 2024 16:13:13 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a36b7bee-bd27-483a-91d7-c3ca25f4cb04 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T16:13:13 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: EE46A80710D249BD8E3D4070D3B5F70C Ref B: OSA221030115033 Ref C: 2024-09-29T16:13:10Z' status: code: 200 message: OK @@ -326,13 +363,12 @@ interactions: - --resource-group --namespace-name --name --topic-name --is-client-affine --client-id --is-durable --is-shared User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000003/subscriptions/s%24%24D?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000003/subscriptions/s$$D","name":"s$$D","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":true,"clientAffineProperties":{"clientId":"testid","isDurable":true,"isShared":true},"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2023-03-13T13:52:38.1050063Z","updatedAt":"2023-03-13T13:52:38.1050063Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002/topics/sb-topiccli000003/subscriptions/s$$D","name":"s$$D","type":"Microsoft.ServiceBus/namespaces/topics/subscriptions","location":"westus","properties":{"isClientAffine":true,"clientAffineProperties":{"clientId":"testid","isDurable":true,"isShared":true},"lockDuration":"PT1M","requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"deadLetteringOnFilterEvaluationExceptions":true,"messageCount":0,"maxDeliveryCount":10,"status":"Active","enableBatchedOperations":true,"createdAt":"2024-09-29T16:13:16.1847093Z","updatedAt":"2024-09-29T16:13:16.1847093Z","accessedAt":"0001-01-01T00:00:00","countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S"}}' headers: cache-control: - no-cache @@ -341,23 +377,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Mar 2023 13:52:38 GMT + - Sun, 29 Sep 2024 16:13:17 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 3289d897-9db2-4dcc-bca3-9c3ec02359d8 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G2|2024-09-29T16:13:16 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' + x-msedge-ref: + - 'Ref A: 34733138B2C64AC1A6BD93403624BACC Ref B: TYO201100117025 Ref C: 2024-09-29T16:13:14Z' status: code: 200 message: OK @@ -377,10 +415,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: string: '' @@ -390,24 +427,75 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:52:39 GMT + - Sun, 29 Sep 2024 16:13:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/c18209cb-e60f-45ff-878e-f7ac35c3a410?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632231993749692&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=bLxnCpW2lx_KJkRZnwktQ0fiqEAEDXDUaHqA6meMfA6tlmwpb6flbH0YiMKwW1IZ_bS-I2f4Kd5T-fIhN0izGpCMLv4gdHJjvtkZRrKb2d36sTy0SHTyUSYFBCnjkmhSBB_0El8PrgE2AfNf0yCvfgWwWaNKU8l6EJcb6bEGnBBng4kM9H5FMrx4ayX6cdUbsUMBTBJGDXkM8lJ6Nzp_iribJjjYs-oXmGCRFGP7rgHmC-DGv6Jg2q5qWCHUUazz-eOgwiSNpp5-xgqfqeJyl6DlLWNMrdnuybw84bVYYZkNsWfcQ7RyymGgr7A48O3nXE-LlhLSTKEb9E0Zrgw2yg&h=8jeE61134Ba8jrKnjXMYZU0reV2PpXRN8pMqPLaidFk pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001364 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T16:13:19 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' + x-msedge-ref: + - 'Ref A: CDF37EA14D64406481321A91E0F9DDFA Ref B: OSA221030115021 Ref C: 2024-09-29T16:13:17Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/c18209cb-e60f-45ff-878e-f7ac35c3a410?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632231993749692&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=bLxnCpW2lx_KJkRZnwktQ0fiqEAEDXDUaHqA6meMfA6tlmwpb6flbH0YiMKwW1IZ_bS-I2f4Kd5T-fIhN0izGpCMLv4gdHJjvtkZRrKb2d36sTy0SHTyUSYFBCnjkmhSBB_0El8PrgE2AfNf0yCvfgWwWaNKU8l6EJcb6bEGnBBng4kM9H5FMrx4ayX6cdUbsUMBTBJGDXkM8lJ6Nzp_iribJjjYs-oXmGCRFGP7rgHmC-DGv6Jg2q5qWCHUUazz-eOgwiSNpp5-xgqfqeJyl6DlLWNMrdnuybw84bVYYZkNsWfcQ7RyymGgr7A48O3nXE-LlhLSTKEb9E0Zrgw2yg&h=8jeE61134Ba8jrKnjXMYZU0reV2PpXRN8pMqPLaidFk + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 29 Sep 2024 16:13:19 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/c18209cb-e60f-45ff-878e-f7ac35c3a410?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632232000754056&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=UVKR-XjNydCte3Z6ti4KANu5Xkb9_kqz2z4CSPZ00JUyGjWUJgDd8m8E99TcQVq9iojL9yMJLivlBKtmfrrjBUmCuSf7y0cixPBKT4PhA7PCVQ6idqL6R8ELShTR9hrtuKmgcXLRPdoWAacqPWMpJyLhl3RWIiV61dOYkNyuzq2bcJlhmapcJQLc2Jv6BeyWoh-8aByg2TX64iZIawMlwz1dC6usA9wxCyr9qAaFPn9D52ZVzoaBhvMXlRn27xDWpJP4i5xlU-6wIjI37UejgVi-i1E4ZQorDQldposh3lMBUpSxP5BIT2pCbzclBzQq41M5orhuyYVQtVTL2DwtIQ&h=ade5xoboduikptLZm7JhAmRmPnH9i6TDOKFnbhDZc5Y + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000008796 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G0|2024-09-29T16:13:20 + x-msedge-ref: + - 'Ref A: 533687EC202E47AFAE2870A5A66AD077 Ref B: OSA221030115021 Ref C: 2024-09-29T16:13:19Z' status: code: 202 message: Accepted @@ -425,10 +513,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/c18209cb-e60f-45ff-878e-f7ac35c3a410?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632232000754056&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=UVKR-XjNydCte3Z6ti4KANu5Xkb9_kqz2z4CSPZ00JUyGjWUJgDd8m8E99TcQVq9iojL9yMJLivlBKtmfrrjBUmCuSf7y0cixPBKT4PhA7PCVQ6idqL6R8ELShTR9hrtuKmgcXLRPdoWAacqPWMpJyLhl3RWIiV61dOYkNyuzq2bcJlhmapcJQLc2Jv6BeyWoh-8aByg2TX64iZIawMlwz1dC6usA9wxCyr9qAaFPn9D52ZVzoaBhvMXlRn27xDWpJP4i5xlU-6wIjI37UejgVi-i1E4ZQorDQldposh3lMBUpSxP5BIT2pCbzclBzQq41M5orhuyYVQtVTL2DwtIQ&h=ade5xoboduikptLZm7JhAmRmPnH9i6TDOKFnbhDZc5Y response: body: string: '' @@ -438,22 +525,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:53:10 GMT + - Sun, 29 Sep 2024 16:13:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/c18209cb-e60f-45ff-878e-f7ac35c3a410?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632232307699829&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=dz9rLGP603WFCW2-y6WKazn_IDeV6AY0LbTjSjvGesvRGLzS4Im7HOpdk-VrqBWwIuc9slTehbT5DHIMQpiro5IEoUA5Wb4Cu91ZObX3gxrSrVrEGDJZ6hmvEk7gg0AQKvwtbOTYQgXH8_q1v_J8LFNx446FAao0-iVbOu61pwIs7UGlxF96Ao2tvj1vPSsHVMxgsZw7pYEdUq4cLvXgfzr4lbO80kTfH4YkANr1BF6sKjh9YOvVTC6UuUuP47NEo02QzwwUBZj_OrGypiBJgrm0LQ8ntb5W0Qw7LQO-T4ontyjg5eIaHyYfGfSP_jHTpbkl58xr77fncj8MvUYm_Q&h=GHb-1hdMrIKeaTdhmHvhFaaRbCrHlUHA56-PtnjJYDA pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001364 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G4|2024-09-29T16:13:50 + x-msedge-ref: + - 'Ref A: C156FEA2DFFC4CBF93F4829198265C32 Ref B: OSA221030115021 Ref C: 2024-09-29T16:13:50Z' status: code: 202 message: Accepted @@ -471,10 +561,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/c18209cb-e60f-45ff-878e-f7ac35c3a410?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632232307699829&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=dz9rLGP603WFCW2-y6WKazn_IDeV6AY0LbTjSjvGesvRGLzS4Im7HOpdk-VrqBWwIuc9slTehbT5DHIMQpiro5IEoUA5Wb4Cu91ZObX3gxrSrVrEGDJZ6hmvEk7gg0AQKvwtbOTYQgXH8_q1v_J8LFNx446FAao0-iVbOu61pwIs7UGlxF96Ao2tvj1vPSsHVMxgsZw7pYEdUq4cLvXgfzr4lbO80kTfH4YkANr1BF6sKjh9YOvVTC6UuUuP47NEo02QzwwUBZj_OrGypiBJgrm0LQ8ntb5W0Qw7LQO-T4ontyjg5eIaHyYfGfSP_jHTpbkl58xr77fncj8MvUYm_Q&h=GHb-1hdMrIKeaTdhmHvhFaaRbCrHlUHA56-PtnjJYDA response: body: string: '' @@ -484,22 +573,25 @@ interactions: content-length: - '0' date: - - Mon, 13 Mar 2023 13:53:40 GMT + - Sun, 29 Sep 2024 16:14:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/c18209cb-e60f-45ff-878e-f7ac35c3a410?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632232614497671&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=C3ggpmPjV-TBfFcKujAgA6DhxDzzmGijz5B5yR3Y8Ckl2CDjgfByNIWQDzuFmKOgZEYdaxOWY_7HDc4yEadCzlzezsG9U0PZfF0d5B3wiBfKJGtJJTmXl8God9VLYVLv3LMlntyWv_0PbuC6LWE7xO7vCc42LqkkxfrbQ3g4JObiSfKee12FIsEmWxU_UZpC5EikrFaUBiKU7LJJhbl4-wnLWYES2pvSdnLbBJBanZzVJRqM3LdHWtVHD9hCAvcgIB_EDxhRLFFWbviffu7WmJIcElUy_rvD_kz73hIPoyZmzSNjeUVVTWIz9rhhhMwqqdb-kkDh3azIBSXMTiHR8A&h=ftOag9BgGBIzg7jKvsWYZT5c4T8NhifBhNyKXOIBBDw pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000003104 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T16:14:21 + x-msedge-ref: + - 'Ref A: 88A68AEF60994AF2A4D75AAD4FA432F2 Ref B: OSA221030115021 Ref C: 2024-09-29T16:14:20Z' status: code: 202 message: Accepted @@ -517,10 +609,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.46.0 (AAZ) azsdk-python-core/1.24.0 Python/3.10.10 (Linux-5.15.0-1033-azure-x86_64-with-glibc2.31) - VSTS_7b238909-6802-4b65-b90d-184bca47f458_build_220_0 + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_subscription000001/providers/Microsoft.ServiceBus/locations/westus/operationStatus/sb-nscli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/c18209cb-e60f-45ff-878e-f7ac35c3a410?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632232614497671&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=C3ggpmPjV-TBfFcKujAgA6DhxDzzmGijz5B5yR3Y8Ckl2CDjgfByNIWQDzuFmKOgZEYdaxOWY_7HDc4yEadCzlzezsG9U0PZfF0d5B3wiBfKJGtJJTmXl8God9VLYVLv3LMlntyWv_0PbuC6LWE7xO7vCc42LqkkxfrbQ3g4JObiSfKee12FIsEmWxU_UZpC5EikrFaUBiKU7LJJhbl4-wnLWYES2pvSdnLbBJBanZzVJRqM3LdHWtVHD9hCAvcgIB_EDxhRLFFWbviffu7WmJIcElUy_rvD_kz73hIPoyZmzSNjeUVVTWIz9rhhhMwqqdb-kkDh3azIBSXMTiHR8A&h=ftOag9BgGBIzg7jKvsWYZT5c4T8NhifBhNyKXOIBBDw response: body: string: '' @@ -528,20 +619,25 @@ interactions: cache-control: - no-cache date: - - Mon, 13 Mar 2023 13:54:10 GMT + - Sun, 29 Sep 2024 16:14:51 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/westus/namespaceOperationResults/c18209cb-e60f-45ff-878e-f7ac35c3a410?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632232920539605&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=GWIkedsjrO-lhH2_R_YgrF83tukQerkHhCDNuKleirGtKUA2RCP7patytZWkzisTeu0jJaBn-5PrS_ZwHlqJo1dVYTDqBlOwcqcmAqgqQLNQLBzs4AtkxpfuyFJ3K2vF5d-upqxRboahPEQ2usaMwnKsvaaGxgRSg_uzVW5ULQJmhlWLez-5dJvV7MObwM7kWynp3f-_j3vpbgH_IQEOSjOfK-3VZ95PvPqeNDdPIOv10nbkcqFXXT8eg94B2-n4c0sF9XHXD7xQtPshtxnsxKiMCBwmFW0Ec8jmwpCS5hoY5IvRbh-5xE3-_KmC67Gw7UyKMzIbcwgDE2Ii_OWMCA&h=OH6Dfy929uGZ9YwqQFstQK97FRT4Um4X9s6ohw8fZYE pragma: - no-cache - server: - - Service-Bus-Resource-Provider/CH3 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/CH3 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000003104 + x-ms-messaging-routing-id: + - WESTUS|WESTUS|G1|2024-09-29T16:14:51 + x-msedge-ref: + - 'Ref A: 648062D36B3A4FB7921B44BF65764668 Ref B: OSA221030115021 Ref C: 2024-09-29T16:14:51Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_premium_queue.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_premium_queue.yaml index ad2099f6f2f..97c07560993 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_premium_queue.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_premium_queue.yaml @@ -1,7 +1,6 @@ interactions: - request: - body: '{"identity": {"type": "None"}, "location": "eastus", "sku": {"name": "Premium", - "tier": "Premium"}}' + body: '{"location": "eastus", "sku": {"name": "Premium", "tier": "Premium"}}' headers: Accept: - application/json @@ -12,50 +11,48 @@ interactions: Connection: - keep-alive Content-Length: - - '99' + - '69' Content-Type: - application/json ParameterSetName: - --resource-group --name --sku --location User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002","name":"sb-namespace-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-namespace-cli000002","createdAt":"2023-03-01T07:33:51.02Z","updatedAt":"2023-03-01T07:33:51.02Z","serviceBusEndpoint":"https://sb-namespace-cli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002","name":"sb-namespace-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-namespace-cli000002","serviceBusEndpoint":"https://sb-namespace-cli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:08:13.4211567Z","updatedAt":"2024-09-29T16:08:13.4211567Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '757' + - '913' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:33:51 GMT + - Sun, 29 Sep 2024 16:08:13 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 38efd101-e7de-4d03-8c73-612fcfdc3a8a + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T16:08:13 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: CC8B6A51E143445E8CB3CF71F6AAC10C Ref B: TYO201100116025 Ref C: 2024-09-29T16:08:09Z' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -70,39 +67,37 @@ interactions: ParameterSetName: - --resource-group --name --sku --location User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002","name":"sb-namespace-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-namespace-cli000002","createdAt":"2023-03-01T07:33:51.02Z","updatedAt":"2023-03-01T07:33:51.02Z","serviceBusEndpoint":"https://sb-namespace-cli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002","name":"sb-namespace-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-namespace-cli000002","serviceBusEndpoint":"https://sb-namespace-cli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:08:13.4211567Z","updatedAt":"2024-09-29T16:08:13.4211567Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '757' + - '913' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:34:21 GMT + - Sun, 29 Sep 2024 16:08:13 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - cffcfd22-f86e-4651-8dca-55249dd63545 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T16:08:14 + x-msedge-ref: + - 'Ref A: 7475783EF79845B2927B40800359252B Ref B: TYO201100116025 Ref C: 2024-09-29T16:08:13Z' status: code: 200 message: OK @@ -120,39 +115,37 @@ interactions: ParameterSetName: - --resource-group --name --sku --location User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002","name":"sb-namespace-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Created","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-namespace-cli000002","createdAt":"2023-03-01T07:33:51.02Z","updatedAt":"2023-03-01T07:33:51.02Z","serviceBusEndpoint":"https://sb-namespace-cli000002.servicebus.windows.net:443/","status":"Activating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002","name":"sb-namespace-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-namespace-cli000002","serviceBusEndpoint":"https://sb-namespace-cli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T16:08:13.4211567Z","updatedAt":"2024-09-29T16:08:13.4211567Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '757' + - '913' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:34:52 GMT + - Sun, 29 Sep 2024 16:08:44 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - ea4889a7-fc56-48f6-8be6-d0482386cd9a + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G10|2024-09-29T16:08:45 + x-msedge-ref: + - 'Ref A: 905699DB79C145D9AA371F80331582A2 Ref B: TYO201100116025 Ref C: 2024-09-29T16:08:44Z' status: code: 200 message: OK @@ -170,39 +163,37 @@ interactions: ParameterSetName: - --resource-group --name --sku --location User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2023-01-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium","capacity":1},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002","name":"sb-namespace-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"East - US","tags":{},"properties":{"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"provisioningState":"Succeeded","metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-namespace-cli000002","createdAt":"2023-03-01T07:33:51.02Z","updatedAt":"2023-03-01T07:35:09.567Z","serviceBusEndpoint":"https://sb-namespace-cli000002.servicebus.windows.net:443/","status":"Active"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002","name":"sb-namespace-cli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-namespace-cli000002","serviceBusEndpoint":"https://sb-namespace-cli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T16:08:13.4211567Z","updatedAt":"2024-09-29T16:09:05.5559877Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '756' + - '910' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:35:21 GMT + - Sun, 29 Sep 2024 16:09:15 GMT expires: - '-1' pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b7060175-db73-49f9-b17a-7fa0b6ec73d1 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G10|2024-09-29T16:09:15 + x-msedge-ref: + - 'Ref A: F8236BCB714E4E7992A316DC5EA88300 Ref B: TYO201100116025 Ref C: 2024-09-29T16:09:15Z' status: code: 200 message: OK @@ -224,12 +215,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --max-message-size-in-kilobytes User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/queues/sb-queue-cli000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/queues/sb-queue-cli000003","name":"sb-queue-cli000003","type":"Microsoft.ServiceBus/namespaces/queues","location":"eastus","properties":{"maxMessageSizeInKilobytes":102400,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-01T07:35:24.44Z","updatedAt":"2023-03-01T07:35:26.043Z","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/queues/sb-queue-cli000003","name":"sb-queue-cli000003","type":"Microsoft.ServiceBus/namespaces/queues","location":"eastus","properties":{"maxMessageSizeInKilobytes":102400,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T16:09:18.95Z","updatedAt":"2024-09-29T16:09:19.687Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache @@ -238,23 +229,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:35:26 GMT + - Sun, 29 Sep 2024 16:09:19 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - b7e56386-b8f6-4344-bfee-b9061e25f6f1 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G2|2024-09-29T16:09:20 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: 7EA37B350A1643DD9B339C3348F52D12 Ref B: TYO201151002052 Ref C: 2024-09-29T16:09:16Z' status: code: 200 message: OK @@ -272,35 +265,37 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --max-message-size-in-kilobytes User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/queues/sb-queue-cli000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/queues/sb-queue-cli000003","name":"sb-queue-cli000003","type":"Microsoft.ServiceBus/namespaces/queues","location":"eastus","properties":{"maxMessageSizeInKilobytes":102400,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2023-03-01T07:35:25.3768218Z","updatedAt":"2023-03-01T07:35:25.4394689Z","accessedAt":"0001-01-01T00:00:00Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/queues/sb-queue-cli000003","name":"sb-queue-cli000003","type":"Microsoft.ServiceBus/namespaces/queues","location":"eastus","properties":{"maxMessageSizeInKilobytes":102400,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"2024-09-29T16:09:18.95Z","updatedAt":"2024-09-29T16:09:19.687Z","accessedAt":"0001-01-01T00:00:00Z"}}' headers: cache-control: - no-cache content-length: - - '1062' + - '1053' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:35:27 GMT + - Sun, 29 Sep 2024 16:09:20 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - a831911a-3dc9-4a6e-b614-d2f56446420e + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G6|2024-09-29T16:09:21 + x-msedge-ref: + - 'Ref A: C0812D5E6E044B2AA994501F508DCE59 Ref B: TYO201100113047 Ref C: 2024-09-29T16:09:20Z' status: code: 200 message: OK @@ -328,37 +323,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --max-message-size-in-kilobytes User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/queues/sb-queue-cli000003?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/queues/sb-queue-cli000003","name":"sb-queue-cli000003","type":"Microsoft.ServiceBus/namespaces/queues","location":"eastus","properties":{"maxMessageSizeInKilobytes":81900,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/queues/sb-queue-cli000003","name":"sb-queue-cli000003","type":"Microsoft.ServiceBus/namespaces/queues","location":"eastus","properties":{"maxMessageSizeInKilobytes":81900,"lockDuration":"PT1M","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"requiresSession":false,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","deadLetteringOnMessageExpiration":false,"enableBatchedOperations":true,"duplicateDetectionHistoryTimeWindow":"PT10M","maxDeliveryCount":10,"sizeInBytes":0,"messageCount":0,"status":"Active","autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0},"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T16:09:22Z","accessedAt":"0001-01-01T00:00:00"}}' headers: cache-control: - no-cache content-length: - - '1042' + - '1043' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:35:27 GMT + - Sun, 29 Sep 2024 16:09:22 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 08883b2f-9946-44b6-89b2-4fdfbd3ea1e7 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T16:09:22 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: 6390B1FD7C1542F8B2C7700EC0657D46 Ref B: TYO201100113047 Ref C: 2024-09-29T16:09:21Z' status: code: 200 message: OK @@ -380,12 +377,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --max-message-size User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/topics/sb-topic-cli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/topics/sb-topic-cli000004","name":"sb-topic-cli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"eastus","properties":{"maxMessageSizeInKilobytes":81900,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-01T07:35:29.817Z","updatedAt":"2023-03-01T07:35:30.077Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/topics/sb-topic-cli000004","name":"sb-topic-cli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"eastus","properties":{"maxMessageSizeInKilobytes":81900,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T16:09:25.923Z","updatedAt":"2024-09-29T16:09:26.083Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -394,23 +391,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:35:29 GMT + - Sun, 29 Sep 2024 16:09:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - fc0cea36-061d-44f9-8280-7d0dc61b2a93 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G2|2024-09-29T16:09:26 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' + x-msedge-ref: + - 'Ref A: 992639F84C3C4114BB4F7FE3C8A031B5 Ref B: OSA221030113027 Ref C: 2024-09-29T16:09:23Z' status: code: 200 message: OK @@ -428,12 +427,12 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --max-message-size User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/topics/sb-topic-cli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/topics/sb-topic-cli000004","name":"sb-topic-cli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"eastus","properties":{"maxMessageSizeInKilobytes":81900,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2023-03-01T07:35:29.817Z","updatedAt":"2023-03-01T07:35:30.077Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/topics/sb-topic-cli000004","name":"sb-topic-cli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"eastus","properties":{"maxMessageSizeInKilobytes":81900,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"2024-09-29T16:09:25.923Z","updatedAt":"2024-09-29T16:09:26.083Z","accessedAt":"0001-01-01T00:00:00Z","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache @@ -442,21 +441,23 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:35:30 GMT + - Sun, 29 Sep 2024 16:09:26 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - d2311c01-6879-47ab-b4e0-46095c1f924d + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G1|2024-09-29T16:09:27 + x-msedge-ref: + - 'Ref A: DFEA13EC894C4194967E696A638B7103 Ref B: OSA221030116025 Ref C: 2024-09-29T16:09:27Z' status: code: 200 message: OK @@ -482,37 +483,39 @@ interactions: ParameterSetName: - --resource-group --namespace-name --name --max-message-size User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/topics/sb-topic-cli000004?api-version=2022-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/topics/sb-topic-cli000004","name":"sb-topic-cli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"eastus","properties":{"maxMessageSizeInKilobytes":102400,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"0001-01-01T00:00:00","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002/topics/sb-topic-cli000004","name":"sb-topic-cli000004","type":"Microsoft.ServiceBus/namespaces/topics","location":"eastus","properties":{"maxMessageSizeInKilobytes":102400,"defaultMessageTimeToLive":"P10675199DT2H48M5.4775807S","maxSizeInMegabytes":1024,"requiresDuplicateDetection":false,"duplicateDetectionHistoryTimeWindow":"PT10M","enableBatchedOperations":true,"sizeInBytes":0,"status":"Active","supportOrdering":true,"autoDeleteOnIdle":"P10675199DT2H48M5.4775807S","enablePartitioning":false,"enableExpress":false,"createdAt":"0001-01-01T00:00:00","updatedAt":"2024-09-29T16:09:29Z","accessedAt":"0001-01-01T00:00:00","subscriptionCount":0,"countDetails":{"activeMessageCount":0,"deadLetterMessageCount":0,"scheduledMessageCount":0,"transferMessageCount":0,"transferDeadLetterMessageCount":0}}}' headers: cache-control: - no-cache content-length: - - '962' + - '963' content-type: - application/json; charset=utf-8 date: - - Wed, 01 Mar 2023 07:35:30 GMT + - Sun, 29 Sep 2024 16:09:29 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 2047dfa8-bcf8-4330-9e58-d5743cae7821 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G7|2024-09-29T16:09:29 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' + x-msedge-ref: + - 'Ref A: AD0B3FB4F2714CDAAE761907390F4642 Ref B: OSA221030116025 Ref C: 2024-09-29T16:09:27Z' status: code: 200 message: OK @@ -532,9 +535,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2022-10-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/namespaces/sb-namespace-cli000002?api-version=2023-01-01-preview response: body: string: '' @@ -544,24 +547,27 @@ interactions: content-length: - '0' date: - - Wed, 01 Mar 2023 07:35:32 GMT + - Sun, 29 Sep 2024 16:09:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-namespace-cli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/71ad0a7f-2286-4a16-b9e1-2201db8379b6?isAsyncHeader=false&resourceName=sb-namespace-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632229729857388&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=ui-8k12CbvSfCpw7geqqm5XPGqMs5J5lr1tqQHmWVLrcOjgxSfUMp1y3pxjdhle1x6MC9F0WleQ__0wXcGXDJsKLCxLIEjfg3fcirsLNALXz1UVor76gTK1UttUu9Ivit-IdMBeO2wrCOoeUzYTZX1Z-F_UF461hf1GVHdwjnwLXYqIXh0futsXXuHGbx-nNR3s5Bxv47zxfDn3NBYOmDjjdEopfqY-EV3vt8UN6mxwU4hX69kx7V5KAwMbxqvYUe6hw6YS9-ardYHJnphtOZpbY2t_6MfZsYqCkvLJHAjREAgpXBoDE2mW4bG7TSoJLofc5lEFFsiUjDa8uqlmUhg&h=tlG3lhUZhFFgmLgMkysEkv_nIw1T4g4btT7Ul9Ah8Os pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006996 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G12|2024-09-29T16:09:32 x-ms-ratelimit-remaining-subscription-deletes: - '14999' + x-msedge-ref: + - 'Ref A: 6307FABA9DF0489484253261452D555C Ref B: OSA221030115039 Ref C: 2024-09-29T16:09:30Z' status: code: 202 message: Accepted @@ -579,9 +585,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-namespace-cli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/71ad0a7f-2286-4a16-b9e1-2201db8379b6?isAsyncHeader=false&resourceName=sb-namespace-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632229729857388&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=ui-8k12CbvSfCpw7geqqm5XPGqMs5J5lr1tqQHmWVLrcOjgxSfUMp1y3pxjdhle1x6MC9F0WleQ__0wXcGXDJsKLCxLIEjfg3fcirsLNALXz1UVor76gTK1UttUu9Ivit-IdMBeO2wrCOoeUzYTZX1Z-F_UF461hf1GVHdwjnwLXYqIXh0futsXXuHGbx-nNR3s5Bxv47zxfDn3NBYOmDjjdEopfqY-EV3vt8UN6mxwU4hX69kx7V5KAwMbxqvYUe6hw6YS9-ardYHJnphtOZpbY2t_6MfZsYqCkvLJHAjREAgpXBoDE2mW4bG7TSoJLofc5lEFFsiUjDa8uqlmUhg&h=tlG3lhUZhFFgmLgMkysEkv_nIw1T4g4btT7Ul9Ah8Os response: body: string: '' @@ -591,22 +597,25 @@ interactions: content-length: - '0' date: - - Wed, 01 Mar 2023 07:36:03 GMT + - Sun, 29 Sep 2024 16:09:33 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-namespace-cli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/71ad0a7f-2286-4a16-b9e1-2201db8379b6?isAsyncHeader=false&resourceName=sb-namespace-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632229739877127&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=kOaC2UgwaVerpVTr1_d6Brfz96QGg4wwwXa_dK7NiI8w-uOeDMBhCflcR1kjClsVfDX6fCPWvX4j0UFyI-A2uBSSfzueYEmJTPIILtsRZVgDPgHVWU9u4k5EE2OEa_mD4-Yah_F6N6xb2iB3N_eai_I5pcbwbIL_yKqKrj2AQRoM6goGjY3ZY5Bh7zTG0YeB1nz9TUtA441YFcEnZuqiLeD21wUaJpC2gdPt0pI4F0NczPJ5NWpbrsSPDX-bo4oJgs8-FKi2UaWI4HTLx3ZcNJGmPSWjnzEj_c7PmcH8-4sG-CZAtCDYkY-2uHn1rrbHye6sZ7kZBB2ODKbypnGN3A&h=w6ApSexN06HI4f1iXskhhSfnYr76epnfCRt8UYrZaAQ pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000001056 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G3|2024-09-29T16:09:33 + x-msedge-ref: + - 'Ref A: D1978600EBA148898D5D494A600EA9C1 Ref B: OSA221030115039 Ref C: 2024-09-29T16:09:33Z' status: code: 202 message: Accepted @@ -624,9 +633,9 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-namespace-cli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/71ad0a7f-2286-4a16-b9e1-2201db8379b6?isAsyncHeader=false&resourceName=sb-namespace-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632229739877127&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=kOaC2UgwaVerpVTr1_d6Brfz96QGg4wwwXa_dK7NiI8w-uOeDMBhCflcR1kjClsVfDX6fCPWvX4j0UFyI-A2uBSSfzueYEmJTPIILtsRZVgDPgHVWU9u4k5EE2OEa_mD4-Yah_F6N6xb2iB3N_eai_I5pcbwbIL_yKqKrj2AQRoM6goGjY3ZY5Bh7zTG0YeB1nz9TUtA441YFcEnZuqiLeD21wUaJpC2gdPt0pI4F0NczPJ5NWpbrsSPDX-bo4oJgs8-FKi2UaWI4HTLx3ZcNJGmPSWjnzEj_c7PmcH8-4sG-CZAtCDYkY-2uHn1rrbHye6sZ7kZBB2ODKbypnGN3A&h=w6ApSexN06HI4f1iXskhhSfnYr76epnfCRt8UYrZaAQ response: body: string: '' @@ -636,22 +645,25 @@ interactions: content-length: - '0' date: - - Wed, 01 Mar 2023 07:36:32 GMT + - Sun, 29 Sep 2024 16:10:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-namespace-cli000002?api-version=2022-10-01-preview&resourceType=Namespace + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/71ad0a7f-2286-4a16-b9e1-2201db8379b6?isAsyncHeader=false&resourceName=sb-namespace-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632230049712804&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=qdi0HP705UOtJvA00BtylyCkTd-deWrJL5AQ1yMpgAinl_4dOI6_b7BKl3yJ2O_wQe3hFv06gKL5FdWqdGh5DzbRKlXFU1SXM0jpbW-g1vUn2VBiQrM9JOQiFCdGQtz_sHF5Xo5HvcOtl1w-ee2Onf5DzBj2S8-dsAvxJSMEWaqZbjyGhcGnA8Fr0FWXxyx-g2MoWNczjkWJ6SPBymQ5LWEJy3w0WroXi6BYZoKZT6FVlGgYf_c3J1VazVeCzu4QxWODk1w0bm9mWYF4T3q2uqmLr39jEyrdkw8Lc-tzossMXl1yDZtY2kkMlAD_viLvoXpeEXr5KYv9Y2M7rAWVIw&h=GKZlv3HJUd9w7RBWBCYJN4iDEaOu7oZHTkrpIOF4GhI pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000009732 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G1|2024-09-29T16:10:04 + x-msedge-ref: + - 'Ref A: B035453973EA499D8FB394E6DA6016DB Ref B: OSA221030115039 Ref C: 2024-09-29T16:10:04Z' status: code: 202 message: Accepted @@ -669,30 +681,83 @@ interactions: ParameterSetName: - --resource-group --name User-Agent: - - AZURECLI/2.45.0 (AAZ) azsdk-python-core/1.24.0 Python/3.8.0 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_queue000001/providers/Microsoft.ServiceBus/locations/eastus/operationStatus/sb-namespace-cli000002?api-version=2022-10-01-preview&resourceType=Namespace + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/71ad0a7f-2286-4a16-b9e1-2201db8379b6?isAsyncHeader=false&resourceName=sb-namespace-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632230049712804&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=qdi0HP705UOtJvA00BtylyCkTd-deWrJL5AQ1yMpgAinl_4dOI6_b7BKl3yJ2O_wQe3hFv06gKL5FdWqdGh5DzbRKlXFU1SXM0jpbW-g1vUn2VBiQrM9JOQiFCdGQtz_sHF5Xo5HvcOtl1w-ee2Onf5DzBj2S8-dsAvxJSMEWaqZbjyGhcGnA8Fr0FWXxyx-g2MoWNczjkWJ6SPBymQ5LWEJy3w0WroXi6BYZoKZT6FVlGgYf_c3J1VazVeCzu4QxWODk1w0bm9mWYF4T3q2uqmLr39jEyrdkw8Lc-tzossMXl1yDZtY2kkMlAD_viLvoXpeEXr5KYv9Y2M7rAWVIw&h=GKZlv3HJUd9w7RBWBCYJN4iDEaOu7oZHTkrpIOF4GhI response: body: string: '' headers: cache-control: - no-cache + content-length: + - '0' date: - - Wed, 01 Mar 2023 07:37:02 GMT + - Sun, 29 Sep 2024 16:10:35 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/71ad0a7f-2286-4a16-b9e1-2201db8379b6?isAsyncHeader=false&resourceName=sb-namespace-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632230352680385&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=KvKNUoxi8ur77vnVB9fmrXDbJ41Obhyk_tNaBTvM0w0Q5IVV0bsO0MgMyzZgNfMvwofSJDtmrXO-sg1T-F2OdGtaGgqE29TJMaxO0oJzU3uTRfdqsSW8ZRjkmWnIz4Cla89VjUHI2uAiNTjXk_h_CnzcesE_Sdg4bvenIbEWkAt2h9zmODTQC3GHUAvBg9YtsM9HZJB85XD8PKZ1UW6TuL_VvQtLTjhYHFOLBGwOAujDikQL0NiEenQHxl50rkfKOwAf5X5bSZR_iSn4Vwj0badsxlA1R8JHY9WQkuRGmM3_Tu7CI1v_NTxGl1KFSAJVk3jwR1u4LY4uyCgM8egMgw&h=DHzX7J6Lj2OwaBmO3cR2pmKFugakilHpjoSl1KsK1tI + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000009732 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G1|2024-09-29T16:10:35 + x-msedge-ref: + - 'Ref A: 4870F84DE9EB42108B867D955D574BF6 Ref B: OSA221030115039 Ref C: 2024-09-29T16:10:35Z' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace delete + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/71ad0a7f-2286-4a16-b9e1-2201db8379b6?isAsyncHeader=false&resourceName=sb-namespace-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632230352680385&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=KvKNUoxi8ur77vnVB9fmrXDbJ41Obhyk_tNaBTvM0w0Q5IVV0bsO0MgMyzZgNfMvwofSJDtmrXO-sg1T-F2OdGtaGgqE29TJMaxO0oJzU3uTRfdqsSW8ZRjkmWnIz4Cla89VjUHI2uAiNTjXk_h_CnzcesE_Sdg4bvenIbEWkAt2h9zmODTQC3GHUAvBg9YtsM9HZJB85XD8PKZ1UW6TuL_VvQtLTjhYHFOLBGwOAujDikQL0NiEenQHxl50rkfKOwAf5X5bSZR_iSn4Vwj0badsxlA1R8JHY9WQkuRGmM3_Tu7CI1v_NTxGl1KFSAJVk3jwR1u4LY4uyCgM8egMgw&h=DHzX7J6Lj2OwaBmO3cR2pmKFugakilHpjoSl1KsK1tI + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Sun, 29 Sep 2024 16:11:06 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/71ad0a7f-2286-4a16-b9e1-2201db8379b6?isAsyncHeader=false&resourceName=sb-namespace-cli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632230663087839&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=ODM11eg7hSBtYBeG5mSavkPr_oDQzelOVKEGXDKDFFU2qgGGSM_3u8JhIhqm5L88ODy-stwuwm1GES-64pfSkDrvLVaZqZ5QnOG78OmqPehTnv0KiwYLDWauXuINHY3IXAKqxDHKExixvMlW8zpiy8YrwN71LYvTC2wnvoNPeFX2n3wNALmRX_nMO4wA_sJVwG9IBDPXO3XWVjV0olczOTtXTq86UmHJ_YO8VGoERphYuawbX9eSs_88LXLpY9LMRypLFGr9EX3XGoa9dtpYeteJ00H3_vv2EswmXuPM6h8x9dXVbpOIrgOTYrn7qp_un6bh7hqInCL7Ai9mhLgXzg&h=AiaBwoEntyEhTYdbtwpX9IL4oPcTzdFLbkagt7UbX9A pragma: - no-cache - server: - - Service-Bus-Resource-Provider/SN1 - - Microsoft-HTTPAPI/2.0 - server-sb: - - Service-Bus-Resource-Provider/SN1 strict-transport-security: - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE x-content-type-options: - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006992 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G14|2024-09-29T16:11:06 + x-msedge-ref: + - 'Ref A: A8336CB0DCD14009A2E15E07A4B6079E Ref B: OSA221030115039 Ref C: 2024-09-29T16:11:05Z' status: code: 204 message: No Content From e9c32519a3f5db7419e3ebc708b9aaea1478a6cb Mon Sep 17 00:00:00 2001 From: Shubham Chaudhari Date: Sun, 29 Sep 2024 23:54:48 +0530 Subject: [PATCH 4/4] Updates --- .../latest/recordings/test_sb_namespace.yaml | 1959 +++++++++++++---- .../test_servicebus_namespace_commands.py | 30 +- 2 files changed, 1597 insertions(+), 392 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace.yaml b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace.yaml index 03c634813f2..1943dac82fc 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/recordings/test_sb_namespace.yaml @@ -18,7 +18,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001","name":"cli_test_sb_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace","date":"2024-09-29T06:42:04Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001","name":"cli_test_sb_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace","date":"2024-09-29T17:52:35Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:42:07 GMT + - Sun, 29 Sep 2024 17:52:38 GMT expires: - '-1' pragma: @@ -39,7 +39,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: E416128B9F5F4C56B699A6900AA283FC Ref B: TYO201151001034 Ref C: 2024-09-29T06:42:06Z' + - 'Ref A: 9A3A93D182994202B7420D06089CDD6B Ref B: TYO201151002052 Ref C: 2024-09-29T17:52:38Z' status: code: 200 message: OK @@ -63,10 +63,10 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005?api-version=2023-01-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006?api-version=2023-01-31 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005","name":"sb-identity1000005","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b","clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006","name":"sb-identity1000006","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d65f21dd-3f25-4f92-a3ca-5a588f579901","clientId":"3fe4682b-dc59-4d60-b46a-6e4d91d12b02"}}' headers: cache-control: - no-cache @@ -75,11 +75,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:42:11 GMT + - Sun, 29 Sep 2024 17:52:42 GMT expires: - '-1' location: - - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005 + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006 pragma: - no-cache strict-transport-security: @@ -91,7 +91,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 163D5C00404B4306A5E3BDA93C6ECB4D Ref B: OSA221030115045 Ref C: 2024-09-29T06:42:07Z' + - 'Ref A: 8A8ABD94365B4A468F94CBC1EAE349DF Ref B: TYO201100113023 Ref C: 2024-09-29T17:52:39Z' status: code: 201 message: Created @@ -114,7 +114,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001?api-version=2022-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001","name":"cli_test_sb_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace","date":"2024-09-29T06:42:04Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001","name":"cli_test_sb_namespace000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","test":"test_sb_namespace","date":"2024-09-29T17:52:35Z","module":"servicebus"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -123,7 +123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:42:13 GMT + - Sun, 29 Sep 2024 17:52:42 GMT expires: - '-1' pragma: @@ -135,7 +135,7 @@ interactions: x-content-type-options: - nosniff x-msedge-ref: - - 'Ref A: D23C7C1BBCA6476B881319DBAFB5E621 Ref B: OSA221030115053 Ref C: 2024-09-29T06:42:12Z' + - 'Ref A: D0B5DD3B221D4993BEC82A912A5FDC3B Ref B: TYO201100114035 Ref C: 2024-09-29T17:52:42Z' status: code: 200 message: OK @@ -159,10 +159,10 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006?api-version=2023-01-31 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007?api-version=2023-01-31 response: body: - string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006","name":"sb-identity2000006","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f","clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa"}}' + string: '{"location":"westus","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007","name":"sb-identity2000007","type":"Microsoft.ManagedIdentity/userAssignedIdentities","properties":{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"3b66f4ea-f7e0-48b9-b54a-22ec1bbbcab1","clientId":"b141e8ef-a96f-40ba-8f8d-6914f9dab1fa"}}' headers: cache-control: - no-cache @@ -171,11 +171,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:42:15 GMT + - Sun, 29 Sep 2024 17:52:44 GMT expires: - '-1' location: - - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006 + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007 pragma: - no-cache strict-transport-security: @@ -187,7 +187,7 @@ interactions: x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 579E3ECBF705479FB87FF94CF9227588 Ref B: TYO201100113009 Ref C: 2024-09-29T06:42:13Z' + - 'Ref A: F718625355E2448CA79C1AB05167948D Ref B: TYO201100116047 Ref C: 2024-09-29T17:52:43Z' status: code: 201 message: Created @@ -216,7 +216,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:20.5804285Z"},"sku":{"name":"Standard","tier":"Standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:52:49.4504744Z","updatedAt":"2024-09-29T17:52:49.4504744Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache @@ -225,7 +225,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:42:21 GMT + - Sun, 29 Sep 2024 17:52:49 GMT expires: - '-1' pragma: @@ -237,13 +237,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 02ecea3e-49d9-4387-8b39-858dbf8ed648 + - b8f564cb-eca0-4c54-8ab2-fa8899dc11e7 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G8|2024-09-29T06:42:20 + - EASTUS|EASTUS|G6|2024-09-29T17:52:49 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 3A860D7C1F4D4A09B33C8F69E3AFB978 Ref B: TYO201100116021 Ref C: 2024-09-29T06:42:16Z' + - 'Ref A: 3BD9993D008C444CB8928DCBE99ACC4F Ref B: OSA221030114053 Ref C: 2024-09-29T17:52:46Z' status: code: 201 message: Created @@ -266,7 +266,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:20.5804285Z"},"sku":{"name":"Standard","tier":"Standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:52:49.4504744Z","updatedAt":"2024-09-29T17:52:49.4504744Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache @@ -275,7 +275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:42:22 GMT + - Sun, 29 Sep 2024 17:52:50 GMT expires: - '-1' pragma: @@ -287,11 +287,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - a951476e-f56e-48c8-bef2-374b1d20a1a3 + - ccabf2b1-b32a-4954-8cf3-6dddb9310b40 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G11|2024-09-29T06:42:22 + - EASTUS|EASTUS|G14|2024-09-29T17:52:50 x-msedge-ref: - - 'Ref A: 3B506735DE964D9B9E32BA5097BD3356 Ref B: TYO201100116021 Ref C: 2024-09-29T06:42:21Z' + - 'Ref A: F2E87E3B6A2040E6B3893D83C81C3A3B Ref B: OSA221030114053 Ref C: 2024-09-29T17:52:50Z' status: code: 200 message: OK @@ -314,7 +314,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:24.5492204Z"},"sku":{"name":"Standard","tier":"Standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:52:49.4504744Z","updatedAt":"2024-09-29T17:52:52.4818385Z"},"sku":{"name":"Standard","tier":"Standard"}}' headers: cache-control: - no-cache @@ -323,7 +323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:42:53 GMT + - Sun, 29 Sep 2024 17:53:21 GMT expires: - '-1' pragma: @@ -335,11 +335,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - c5d06e1f-00dd-4062-aa53-52eeeb2ae62a + - 373b96ac-096e-4b9d-94fa-64abc7ab7c6a x-ms-messaging-routing-id: - - EASTUS|EASTUS|G1|2024-09-29T06:42:52 + - EASTUS|EASTUS|G8|2024-09-29T17:53:21 x-msedge-ref: - - 'Ref A: 168288F8950444719F3AC6C092A5012A Ref B: TYO201100116021 Ref C: 2024-09-29T06:42:52Z' + - 'Ref A: B7BE2857DEF548FC84E3913CB9964C63 Ref B: OSA221030114053 Ref C: 2024-09-29T17:53:21Z' status: code: 200 message: OK @@ -366,7 +366,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:42:57.6286627Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:53:26.3113421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache @@ -375,7 +375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:42:57 GMT + - Sun, 29 Sep 2024 17:53:26 GMT expires: - '-1' pragma: @@ -387,13 +387,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - a3854774-e00a-4e47-9353-d0655a5f21f4 + - d0340fcf-ff69-4d8b-bce2-dfdba9bd6ae2 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G6|2024-09-29T06:42:57 + - EASTUS|EASTUS|G9|2024-09-29T17:53:26 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: E228AEF7FFDD48508793033227AD2A35 Ref B: TYO201151002036 Ref C: 2024-09-29T06:42:53Z' + - 'Ref A: F184F7AE89DD4AEC8E5E1FD9283544F9 Ref B: TYO201151004023 Ref C: 2024-09-29T17:53:22Z' status: code: 201 message: Created @@ -416,7 +416,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:42:57.6286627Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:53:26.3113421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache @@ -425,7 +425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:42:57 GMT + - Sun, 29 Sep 2024 17:53:27 GMT expires: - '-1' pragma: @@ -437,11 +437,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 07aaa0a4-3db0-4e5f-b7fd-9a5d51dc27b1 + - ed3c2c7b-4b0a-45aa-8428-84b75b7c8041 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G6|2024-09-29T06:42:58 + - EASTUS|EASTUS|G6|2024-09-29T17:53:27 x-msedge-ref: - - 'Ref A: 0E99713FB1B749A1B540D7F456748600 Ref B: TYO201151002036 Ref C: 2024-09-29T06:42:58Z' + - 'Ref A: C8BA1CD348434639A5E3BF59CF2A11CD Ref B: TYO201151004023 Ref C: 2024-09-29T17:53:26Z' status: code: 200 message: OK @@ -464,7 +464,7 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:42:57.6286627Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:53:26.3113421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache @@ -473,7 +473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:43:28 GMT + - Sun, 29 Sep 2024 17:53:58 GMT expires: - '-1' pragma: @@ -485,11 +485,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 69d42abe-aae2-4a3a-8fdc-b7731e59c30f + - a31240b6-d551-4b69-94f1-dbc5ecf09cea x-ms-messaging-routing-id: - - EASTUS|EASTUS|G3|2024-09-29T06:43:29 + - EASTUS|EASTUS|G4|2024-09-29T17:53:58 x-msedge-ref: - - 'Ref A: 17A84ECED66445109336CED26D9BB11E Ref B: TYO201151002036 Ref C: 2024-09-29T06:43:28Z' + - 'Ref A: 9A0AE65409AD4ADA9263C1B9A342C219 Ref B: TYO201151004023 Ref C: 2024-09-29T17:53:57Z' status: code: 200 message: OK @@ -512,7 +512,103 @@ interactions: uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:43:56.2469947Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:53:26.3113421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '889' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:54:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - e07d4d01-d57b-431d-9597-2b2a150f3308 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G4|2024-09-29T17:54:28 + x-msedge-ref: + - 'Ref A: 56F574BA78644809AFCBB0E3DFD239F8 Ref B: TYO201151004023 Ref C: 2024-09-29T17:54:28Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --sku --location + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:54:30.8289385Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '886' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:54:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - a6075ed0-63cb-47c5-a6fd-16838d7a701d + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G4|2024-09-29T17:54:59 + x-msedge-ref: + - 'Ref A: 40445672DAF44DDFA6F65231B059F336 Ref B: TYO201151004023 Ref C: 2024-09-29T17:54:59Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --capacity --tags + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:54:30.8289385Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache @@ -521,7 +617,1138 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:43:59 GMT + - Sun, 29 Sep 2024 17:55:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 2b05c01d-0f65-478d-a36b-78eb76c4f0cc + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T17:55:01 + x-msedge-ref: + - 'Ref A: 5E1A37EEA30E4ADDB9D8F2A1FB1CCC6E Ref B: OSA221030115047 Ref C: 2024-09-29T17:55:00Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"disableLocalAuth": false, "geoDataReplication": + {"locations": [{"locationName": "eastus", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 4, "name": "Premium", + "tier": "Premium"}, "tags": {"tag1": "value1", "tag2": "value2"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace update + Connection: + - keep-alive + Content-Length: + - '423' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --capacity --tags + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:55:03.5024288Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + headers: + cache-control: + - no-cache + content-length: + - '918' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:55:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - dbb8a46c-01cc-4e7f-a376-5321de542eee + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T17:55:03 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 02834C9F7E2A4A73A3DE7BFD3CBA8422 Ref B: OSA221030115047 Ref C: 2024-09-29T17:55:01Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --capacity --tags + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:55:03.5024288Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + headers: + cache-control: + - no-cache + content-length: + - '918' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:55:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - b7582cb2-f6f4-4442-8845-cbf23884e9b4 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T17:55:05 + x-msedge-ref: + - 'Ref A: EF548E3FAB63472E9B933606DE2CB789 Ref B: OSA221030115047 Ref C: 2024-09-29T17:55:04Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --capacity --tags + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:55:16.4090384Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + headers: + cache-control: + - no-cache + content-length: + - '917' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:55:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 7bb658a2-f433-4214-8e15-eb1273230553 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G14|2024-09-29T17:55:36 + x-msedge-ref: + - 'Ref A: 59AB0AFE820446538EB05679A06A426D Ref B: OSA221030115047 Ref C: 2024-09-29T17:55:35Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --disable-local-auth + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:55:16.4090384Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + headers: + cache-control: + - no-cache + content-length: + - '917' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:55:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 6c033607-9e90-4a53-b0d7-ae2f8845b71f + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G13|2024-09-29T17:55:37 + x-msedge-ref: + - 'Ref A: 2D42519C640343968DC5078226EF875C Ref B: TYO201151002009 Ref C: 2024-09-29T17:55:36Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus", "properties": {"disableLocalAuth": true, "geoDataReplication": + {"locations": [{"locationName": "eastus", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": + 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": + "Enabled", "zoneRedundant": false}, "sku": {"capacity": 4, "name": "Premium", + "tier": "Premium"}, "tags": {"tag1": "value1", "tag2": "value2"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace update + Connection: + - keep-alive + Content-Length: + - '422' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --disable-local-auth + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:55:38.9908306Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + headers: + cache-control: + - no-cache + content-length: + - '917' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:55:43 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - cc19d641-2bab-48f3-b0e4-f8348570d28d + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G8|2024-09-29T17:55:39 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 8BF0E3C7CA214FD88CC45B0D43E6F71E Ref B: TYO201151002009 Ref C: 2024-09-29T17:55:37Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --disable-local-auth + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:55:38.9908306Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + headers: + cache-control: + - no-cache + content-length: + - '917' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:55:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 453662a5-82d8-4e15-8a81-b0b9f5aab03a + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G7|2024-09-29T17:55:44 + x-msedge-ref: + - 'Ref A: A7BD78CB248D4D59A2C70C2352255DB1 Ref B: TYO201151002009 Ref C: 2024-09-29T17:55:43Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace update + Connection: + - keep-alive + ParameterSetName: + - --name --resource-group --disable-local-auth + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:55:53.6978955Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + headers: + cache-control: + - no-cache + content-length: + - '916' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:56:14 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - a2116da5-3845-4c29-ae8b-52b26f714fc9 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G9|2024-09-29T17:56:15 + x-msedge-ref: + - 'Ref A: C28A1C730793457F92199B22189E12F9 Ref B: TYO201151002009 Ref C: 2024-09-29T17:56:14Z' + status: + code: 200 + message: OK +- request: + body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006": + {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007": + {}}}, "location": "eastus", "properties": {"premiumMessagingPartitions": 2, + "zoneRedundant": true}, "sku": {"capacity": 2, "name": "Premium", "tier": "Premium"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + Content-Length: + - '598' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned + --capacity --zone-redundant --premium-messaging-partitions + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:56:22.0924652Z","updatedAt":"2024-09-29T17:56:22.0924652Z"},"identity":{"principalId":"82ec478d-3ef2-4097-b531-23c99004b6d2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007":{"clientId":"b141e8ef-a96f-40ba-8f8d-6914f9dab1fa","principalId":"3b66f4ea-f7e0-48b9-b54a-22ec1bbbcab1"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006":{"clientId":"3fe4682b-dc59-4d60-b46a-6e4d91d12b02","principalId":"d65f21dd-3f25-4f92-a3ca-5a588f579901"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + headers: + cache-control: + - no-cache + content-length: + - '1629' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:56:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 24786f1f-7922-43b8-ab33-312393c620d4 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G13|2024-09-29T17:56:22 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + x-msedge-ref: + - 'Ref A: BB29747C02FA43F79A621E4A42603388 Ref B: OSA221030114039 Ref C: 2024-09-29T17:56:16Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned + --capacity --zone-redundant --premium-messaging-partitions + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:56:22.0924652Z","updatedAt":"2024-09-29T17:56:22.0924652Z"},"identity":{"principalId":"82ec478d-3ef2-4097-b531-23c99004b6d2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007":{"clientId":"b141e8ef-a96f-40ba-8f8d-6914f9dab1fa","principalId":"3b66f4ea-f7e0-48b9-b54a-22ec1bbbcab1"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006":{"clientId":"3fe4682b-dc59-4d60-b46a-6e4d91d12b02","principalId":"d65f21dd-3f25-4f92-a3ca-5a588f579901"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + headers: + cache-control: + - no-cache + content-length: + - '1629' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:56:22 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - ffbceb8a-fb16-4db7-9dd3-1391716f8f00 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G11|2024-09-29T17:56:23 + x-msedge-ref: + - 'Ref A: 367FC35E673349EA939E679288329065 Ref B: OSA221030114039 Ref C: 2024-09-29T17:56:22Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned + --capacity --zone-redundant --premium-messaging-partitions + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:56:22.0924652Z","updatedAt":"2024-09-29T17:56:22.0924652Z"},"identity":{"principalId":"82ec478d-3ef2-4097-b531-23c99004b6d2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007":{"clientId":"b141e8ef-a96f-40ba-8f8d-6914f9dab1fa","principalId":"3b66f4ea-f7e0-48b9-b54a-22ec1bbbcab1"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006":{"clientId":"3fe4682b-dc59-4d60-b46a-6e4d91d12b02","principalId":"d65f21dd-3f25-4f92-a3ca-5a588f579901"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + headers: + cache-control: + - no-cache + content-length: + - '1629' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:56:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - a4297904-ef90-4350-b433-1561de759d08 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G5|2024-09-29T17:56:54 + x-msedge-ref: + - 'Ref A: 388835DAF3D5446682C2A974DA25E37D Ref B: OSA221030114039 Ref C: 2024-09-29T17:56:53Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned + --capacity --zone-redundant --premium-messaging-partitions + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:56:22.0924652Z","updatedAt":"2024-09-29T17:56:22.0924652Z"},"identity":{"principalId":"82ec478d-3ef2-4097-b531-23c99004b6d2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007":{"clientId":"b141e8ef-a96f-40ba-8f8d-6914f9dab1fa","principalId":"3b66f4ea-f7e0-48b9-b54a-22ec1bbbcab1"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006":{"clientId":"3fe4682b-dc59-4d60-b46a-6e4d91d12b02","principalId":"d65f21dd-3f25-4f92-a3ca-5a588f579901"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + headers: + cache-control: + - no-cache + content-length: + - '1629' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:57:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - e0289378-5cae-4858-ae23-1808edd3ab47 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G14|2024-09-29T17:57:25 + x-msedge-ref: + - 'Ref A: 9FC3722E940446A88980E5FF3B20FE88 Ref B: OSA221030114039 Ref C: 2024-09-29T17:57:24Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned + --capacity --zone-redundant --premium-messaging-partitions + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:56:22.0924652Z","updatedAt":"2024-09-29T17:57:25.5833259Z"},"identity":{"principalId":"82ec478d-3ef2-4097-b531-23c99004b6d2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007":{"clientId":"b141e8ef-a96f-40ba-8f8d-6914f9dab1fa","principalId":"3b66f4ea-f7e0-48b9-b54a-22ec1bbbcab1"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006":{"clientId":"3fe4682b-dc59-4d60-b46a-6e4d91d12b02","principalId":"d65f21dd-3f25-4f92-a3ca-5a588f579901"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + headers: + cache-control: + - no-cache + content-length: + - '1626' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:57:55 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 1899d5bf-fb93-466a-8dc8-bfe1e98ebcf1 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G3|2024-09-29T17:57:56 + x-msedge-ref: + - 'Ref A: 61B9F77D6D5D41178EC88AFDE75268A7 Ref B: OSA221030114039 Ref C: 2024-09-29T17:57:55Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace list + Connection: + - keep-alive + ParameterSetName: + - --resource-group + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces?api-version=2023-01-01-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:52:49.4504744Z","updatedAt":"2024-09-29T17:52:52.4818385Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:56:22.0924652Z","updatedAt":"2024-09-29T17:57:25.5833259Z"},"identity":{"principalId":"82ec478d-3ef2-4097-b531-23c99004b6d2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006":{"clientId":"3fe4682b-dc59-4d60-b46a-6e4d91d12b02","principalId":"d65f21dd-3f25-4f92-a3ca-5a588f579901"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007":{"clientId":"b141e8ef-a96f-40ba-8f8d-6914f9dab1fa","principalId":"3b66f4ea-f7e0-48b9-b54a-22ec1bbbcab1"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:55:53.6978955Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}]}' + headers: + cache-control: + - no-cache + content-length: + - '3457' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:57:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - ade6adef-163e-4178-855a-1bd869c03c71 + x-ms-messaging-routing-id: + - EASTUS|EASTUS|G12|2024-09-29T17:57:58 + x-msedge-ref: + - 'Ref A: 57CF8F8BB5E84AD0902CA7C09FCE76FC Ref B: TYO201100117017 Ref C: 2024-09-29T17:57:56Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace list + Connection: + - keep-alive + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces?api-version=2023-01-01-preview + response: + body: + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-cbr-sy-1","name":"anqyan-cbr-sy-1","type":"Microsoft.ServiceBus/Namespaces","location":"australiacentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiacentral","roleType":"Secondary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-cbr-sy-1","serviceBusEndpoint":"https://anqyan-cbr-sy-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-27T20:33:11.8291805Z","updatedAt":"2024-08-27T21:12:21Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-geo-replication-australia","name":"sb-eldert-pg-geo-replication-australia","type":"Microsoft.ServiceBus/Namespaces","location":"australiacentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-geo-replication-australia","serviceBusEndpoint":"https://sb-eldert-pg-geo-replication-australia.servicebus.windows.net:443/","provisioningState":"Deleting","status":"Deleting","createdAt":"2024-09-06T02:46:08.7528321Z","updatedAt":"2024-09-29T17:57:24Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testingSBTemplate","name":"testingSBTemplate","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testingsbtemplate","serviceBusEndpoint":"https://sbmigratepremium2.servicebus.windows.net:443/","alternateName":"sbmigratepremium2","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:21.3305984Z","updatedAt":"2024-08-06T08:55:21Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7033","name":"sdk-Namespace-7033","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7033","serviceBusEndpoint":"https://sdk-Namespace-7033.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:21.744817Z","updatedAt":"2024-08-06T08:55:21Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8973","name":"sdk-Namespace-8973","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8973","serviceBusEndpoint":"https://sdk-Namespace-8973.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:22.5747981Z","updatedAt":"2024-08-06T08:55:22Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSV2","name":"testPSV2","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpsv2","serviceBusEndpoint":"https://testPSV2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:22.9098135Z","updatedAt":"2024-08-06T08:55:22Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5025","name":"sdk-Namespace-5025","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5025","serviceBusEndpoint":"https://sdk-Namespace-5025.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:23.0746985Z","updatedAt":"2024-08-06T08:55:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8751","name":"sdk-Namespace-8751","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8751","serviceBusEndpoint":"https://sdk-Namespace-8751.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:23.3363678Z","updatedAt":"2024-08-06T08:55:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-sy-3","name":"anqyan-sy-3","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"centraluseuap","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-sy-3","serviceBusEndpoint":"https://anqyan-sy-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-19T18:39:09.8117877Z","updatedAt":"2024-08-19T18:43:33Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-sy-yt-1","name":"anqyan-sy-yt-1","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Secondary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-sy-yt-1","serviceBusEndpoint":"https://anqyan-sy-yt-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-25T23:47:07.1336143Z","updatedAt":"2024-08-26T00:26:59Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/klam-rg/providers/Microsoft.ServiceBus/namespaces/klam-test-deleteme","name":"klam-test-deleteme","type":"Microsoft.ServiceBus/Namespaces","location":"brazilsouth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"brazilsouth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:klam-test-deleteme","serviceBusEndpoint":"https://klam-test-deleteme.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-12-12T18:00:25.5916408Z","updatedAt":"2022-12-12T18:01:10.0911441Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbcc","name":"test-davadhani-sbcc","type":"Microsoft.ServiceBus/Namespaces","location":"canadacentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadacentral","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadaeast","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbcc","serviceBusEndpoint":"https://test-davadhani-sbcc.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-08T09:48:13.0387393Z","updatedAt":"2024-08-21T06:07:46Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbce","name":"test-davadhani-sbce","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Secondary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbce","serviceBusEndpoint":"https://test-davadhani-sbce.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-08-08T09:48:57.5477841Z","updatedAt":"2024-09-29T17:53:55Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbcc2","name":"test-davadhani-sbcc2","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Secondary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbcc2","serviceBusEndpoint":"https://test-davadhani-sbcc2.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-08-09T07:17:00.1702511Z","updatedAt":"2024-09-29T17:53:55Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-yq-sy-1","name":"anqyan-yq-sy-1","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"australiaeast","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-yq-sy-1","serviceBusEndpoint":"https://anqyan-yq-sy-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-21T18:49:47.8413036Z","updatedAt":"2024-08-21T18:54:22Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbce2","name":"test-davadhani-sbce2","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbce2","serviceBusEndpoint":"https://test-davadhani-sbce2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-04T10:59:23.9371277Z","updatedAt":"2024-09-04T11:03:25Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusPremiumNonAzCreateAfter","name":"NamespaceServiceBusPremiumNonAzCreateAfter","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebuspremiumnonazcreateafter","serviceBusEndpoint":"https://NamespaceServiceBusPremiumNonAzCreateAfter.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:06.8035159Z","updatedAt":"2024-09-23T08:20:06Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusStandardNonAzCreateAfter","name":"NamespaceServiceBusStandardNonAzCreateAfter","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebusstandardnonazcreateafter","serviceBusEndpoint":"https://NamespaceServiceBusStandardNonAzCreateAfter.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:06.8291674Z","updatedAt":"2024-09-23T08:20:06Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusPremiumNonAzCreate","name":"NamespaceServiceBusPremiumNonAzCreate","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebuspremiumnonazcreate","serviceBusEndpoint":"https://NamespaceServiceBusPremiumNonAzCreate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:07.1416766Z","updatedAt":"2024-09-23T08:20:07Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusStandardNonAzCreate","name":"NamespaceServiceBusStandardNonAzCreate","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebusstandardnonazcreate","serviceBusEndpoint":"https://NamespaceServiceBusStandardNonAzCreate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:07.2153221Z","updatedAt":"2024-09-23T08:20:07Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-jms-geo-cus","name":"shsama-jms-geo-cus","type":"Microsoft.ServiceBus/Namespaces","location":"centralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-jms-geo-cus","serviceBusEndpoint":"https://shsama-jms-geo-cus.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:50:14.2539704Z","updatedAt":"2024-09-26T07:50:14Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkwrj55aatxlgxucsba6igeidap7hqov64fz6i6fhkxg2q66tsychlm5im/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclidurp","name":"servicebus-nsclidurp","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclidurp","serviceBusEndpoint":"https://servicebus-nsclidurp.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T01:13:23.2939303Z","updatedAt":"2022-07-01T18:31:51.371547Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsurg712/providers/Microsoft.ServiceBus/namespaces/testvinsunseastusstd1","name":"testvinsunseastusstd1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvinsunseastusstd1","serviceBusEndpoint":"https://testvinsunseastusstd1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-07-12T23:29:32.611628Z","updatedAt":"2023-07-12T23:30:16.5962022Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vinaygupta-test/providers/Microsoft.ServiceBus/namespaces/vinayguptatest","name":"vinayguptatest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vinayguptatest","serviceBusEndpoint":"https://vinayguptatest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-05T22:38:27.4596584Z","updatedAt":"2024-08-05T22:38:30.3503384Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d24","name":"namespace9f015d24","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d24","serviceBusEndpoint":"https://namespace9f015d24.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:33:24.562823Z","updatedAt":"2024-09-29T06:33:27.6410778Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/dsa-message-test","name":"dsa-message-test","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:dsa-message-test","serviceBusEndpoint":"https://dsa-message-test.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-06-01T23:06:41.351463Z","updatedAt":"2023-06-01T23:07:26.5942034Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxeussbpremns-2","name":"kevxeussbpremns-2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxeussbpremns-2","serviceBusEndpoint":"https://kevxeussbpremns-2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T18:15:27.558986Z","updatedAt":"2024-09-27T18:21:10.4409199Z"},"identity":{"principalId":"a73b1b17-4fa2-40fb-b0d9-be7190b254f3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kevx-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kevxmi-wcus":{"clientId":"d07b99be-8faf-4798-b40d-343d7ef97ee6","principalId":"54518d54-4fd1-4b2e-962a-5e800f38f33a"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/woseibonsu-pm-playground/providers/Microsoft.ServiceBus/namespaces/wo-standard-migration-namespace","name":"wo-standard-migration-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:wo-standard-migration-namespace","serviceBusEndpoint":"https://wo-standard-namespace-finished-migration.servicebus.windows.net:443/","alternateName":"wo-standard-namespace-finished-migration","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-31T22:43:44.5125182Z","updatedAt":"2023-05-31T23:18:14.6185172Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscliq3wv","name":"servicebus-nscliq3wv","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscliq3wv","serviceBusEndpoint":"https://servicebus-nscliq3wv.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:09:12.5686577Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkb6dybi7i77qadmwp3x7qn4fsvzex5svqgkd23ljbqqekhpuqpewxl5ox/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclimdvj","name":"servicebus-nsclimdvj","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclimdvj","serviceBusEndpoint":"https://servicebus-nsclimdvj.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-28T19:41:42.5700344Z","updatedAt":"2022-07-01T20:13:49.7569297Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsPMmintls","name":"jagsPMmintls","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagspmmintls","serviceBusEndpoint":"https://jagsPMmintls.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-28T19:42:35.786006Z","updatedAt":"2022-07-01T20:16:02.7964931Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:52:49.4504744Z","updatedAt":"2024-09-29T17:52:52.4818385Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:56:22.0924652Z","updatedAt":"2024-09-29T17:57:25.5833259Z"},"identity":{"principalId":"82ec478d-3ef2-4097-b531-23c99004b6d2","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000006":{"clientId":"3fe4682b-dc59-4d60-b46a-6e4d91d12b02","principalId":"d65f21dd-3f25-4f92-a3ca-5a588f579901"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000007":{"clientId":"b141e8ef-a96f-40ba-8f8d-6914f9dab1fa","principalId":"3b66f4ea-f7e0-48b9-b54a-22ec1bbbcab1"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d2","name":"namespace9f015d2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d2","serviceBusEndpoint":"https://namespace9f015d2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:27:09.9208018Z","updatedAt":"2024-09-29T06:27:13.1555134Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxsbns-1","name":"kevxsbns-1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxsbns-1","serviceBusEndpoint":"https://kevxsbns-1-alt-1.servicebus.windows.net:443/","alternateName":"kevxsbns-1-alt-1","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-24T00:24:32.6494816Z","updatedAt":"2024-09-24T00:35:45.7526013Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jbj-sb-testing/providers/Microsoft.ServiceBus/namespaces/jbj-sb-none","name":"jbj-sb-none","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jbj-sb-none","serviceBusEndpoint":"https://jbj-sb-none.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-04-20T00:02:37.5794792Z","updatedAt":"2023-04-20T00:03:21.1901226Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nitinnair/providers/Microsoft.ServiceBus/namespaces/nitinTest","name":"nitinTest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:nitintest","serviceBusEndpoint":"https://nitinTest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-12T00:37:45.7428123Z","updatedAt":"2024-06-12T00:37:48.5709927Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscliamdo","name":"servicebus-nscliamdo","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscliamdo","serviceBusEndpoint":"https://servicebus-nscliamdo.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T19:41:22.4600773Z","updatedAt":"2024-09-28T19:42:35.5878274Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsurg712/providers/Microsoft.ServiceBus/namespaces/testvinsunseastusstd2","name":"testvinsunseastusstd2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvinsunseastusstd2","serviceBusEndpoint":"https://testvinsunseastusstd2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-07-13T00:05:21.8158731Z","updatedAt":"2023-07-13T00:06:04.5839459Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/cmktest","name":"cmktest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"cmkkey","keyVaultUri":"https://anwaykveus.vault.azure.net"}],"requireInfrastructureEncryption":false},"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cmktest","serviceBusEndpoint":"https://cmktest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-04-04T20:43:51.2755663Z","updatedAt":"2024-04-18T20:47:31.4544353Z"},"identity":{"principalId":"73fe4c96-eb6a-4dc1-8f77-69243c4721a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/primaryNSut8xa0","name":"primaryNSut8xa0","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsut8xa0","serviceBusEndpoint":"https://postMigrationulz9q8.servicebus.windows.net:443/","alternateName":"postMigrationulz9q8","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-10T18:33:19.854114Z","updatedAt":"2024-02-16T01:27:22.8129171Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:53:26.3113421Z","updatedAt":"2024-09-29T17:55:53.6978955Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/ContosoSBusNS1","name":"ContosoSBusNS1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:contososbusns1","serviceBusEndpoint":"https://ContosoSBusNS1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-14T23:47:17.3402338Z","updatedAt":"2023-12-14T23:48:01.0284606Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-sb-basic","name":"shsama-sb-basic","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-sb-basic","serviceBusEndpoint":"https://shsama-sb-basic.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-07-14T17:21:51.2293166Z","updatedAt":"2023-07-14T17:22:33.9389723Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakeschiller-synthetics/providers/Microsoft.ServiceBus/namespaces/synthetics-sb-ns","name":"synthetics-sb-ns","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"jms-for":"cache"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:synthetics-sb-ns","serviceBusEndpoint":"https://synthetics-sb-ns.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-29T12:40:40.3481843Z","updatedAt":"2022-07-08T18:29:10.8080802Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d247","name":"namespace9f015d247","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d247","serviceBusEndpoint":"https://namespace9f015d247.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:53:04.410502Z","updatedAt":"2024-09-29T06:53:58.6053783Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/primaryNSfjarv9","name":"primaryNSfjarv9","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsfjarv9","serviceBusEndpoint":"https://postMigration16it5x.servicebus.windows.net:443/","alternateName":"postMigration16it5x","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-13T06:16:32.4273613Z","updatedAt":"2024-02-16T01:27:22.8129171Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxsbpremns-1","name":"kevxsbpremns-1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxsbpremns-1","serviceBusEndpoint":"https://kevxsbpremns-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-24T00:26:56.4030811Z","updatedAt":"2024-09-24T00:35:47.6276401Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarri-cmk/providers/Microsoft.ServiceBus/namespaces/skarrisubtest-s","name":"skarrisubtest-s","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarrisubtest-s","serviceBusEndpoint":"https://skarrisubtest-s.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-10T22:31:44.1588201Z","updatedAt":"2024-06-10T22:34:37.0730266Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-vinaygupta/providers/Microsoft.ServiceBus/namespaces/mytest-vinaygupta","name":"mytest-vinaygupta","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:mytest-vinaygupta","serviceBusEndpoint":"https://mytest-vinaygupta.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T00:41:32.2656913Z","updatedAt":"2024-08-06T00:41:35.8126567Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SB-Intern2021ResourceGroup/providers/Microsoft.ServiceBus/namespaces/sophia-explore","name":"sophia-explore","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sophia-explore","serviceBusEndpoint":"https://sophia-explore.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-29T23:50:17.3775749Z","updatedAt":"2022-07-01T23:40:50.7777225Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxeussbpremns-3","name":"kevxeussbpremns-3","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxeussbpremns-3","serviceBusEndpoint":"https://kevxeussbpremns-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T21:31:40.644525Z","updatedAt":"2024-09-27T18:16:11.5702593Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pablorod_new/providers/Microsoft.ServiceBus/namespaces/pablorod-suscription-rules-v2","name":"pablorod-suscription-rules-v2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:pablorod-suscription-rules-v2","serviceBusEndpoint":"https://pablorod-suscription-rules-v2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-12-28T21:24:03.9050498Z","updatedAt":"2022-12-28T21:24:47.2023828Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardregressiontest","name":"standardregressiontest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:standardregressiontest","serviceBusEndpoint":"https://standardregressiontest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-30T01:24:56.3582525Z","updatedAt":"2022-07-02T01:24:37.2031797Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d2xz","name":"namespace9f015d2xz","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d2xz","serviceBusEndpoint":"https://namespace9f015d2xz.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:32:05.7125853Z","updatedAt":"2024-09-29T06:32:08.5720951Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/primaryNSn6fmhu","name":"primaryNSn6fmhu","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsn6fmhu","serviceBusEndpoint":"https://postMigrationqt7hcd.servicebus.windows.net:443/","alternateName":"postMigrationqt7hcd","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-22T17:41:18.5773436Z","updatedAt":"2024-02-16T01:28:23.7255974Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkteenbwgqgyyl2y6iy7uyajvcvzeffcawclhjplzvgypwqep53ptcz56k/providers/Microsoft.ServiceBus/namespaces/servicebus-nscligk4i","name":"servicebus-nscligk4i","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscligk4i","serviceBusEndpoint":"https://servicebus-nscligk4i.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-29T12:39:57.4290855Z","updatedAt":"2022-07-01T21:58:43.5950617Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vinsutestmigrationrg95/providers/Microsoft.ServiceBus/namespaces/vinsutestmigrationstd","name":"vinsutestmigrationstd","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vinsutestmigrationstd","serviceBusEndpoint":"https://vinsutestmigrationstdprev.servicebus.windows.net:443/","alternateName":"vinsutestmigrationstdprev","provisioningState":"Succeeded","status":"Active","createdAt":"2023-09-05T22:18:40.8601279Z","updatedAt":"2023-09-05T22:45:23.6464104Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/primaryNS6wbgdx","name":"primaryNS6wbgdx","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primaryns6wbgdx","serviceBusEndpoint":"https://postMigrationajsixu.servicebus.windows.net:443/","alternateName":"postMigrationajsixu","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-23T12:03:35.2157047Z","updatedAt":"2024-02-16T01:28:23.7255974Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardnewapi","name":"standardnewapi","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:standardnewapi","serviceBusEndpoint":"https://standardnewapi.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T01:12:08.5491945Z","updatedAt":"2022-07-01T18:30:52.3241886Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-jms-geo-eus","name":"shsama-jms-geo-eus","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-jms-geo-eus","serviceBusEndpoint":"https://shsama-jms-geo-eus.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-03-09T04:22:56.0943711Z","updatedAt":"2024-02-16T01:27:22.8285412Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/testpremiumns","name":"testpremiumns","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpremiumns","serviceBusEndpoint":"https://testpremiumns.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-12T22:57:06.4977445Z","updatedAt":"2023-12-12T22:57:51.6813107Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prajaktaservicebusrg/providers/Microsoft.ServiceBus/namespaces/prajaktaprem1","name":"prajaktaprem1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prajaktaprem1","serviceBusEndpoint":"https://prajaktaprem1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-22T00:11:10.2537537Z","updatedAt":"2024-07-22T00:12:01.8377377Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg","name":"sb-eldert-pg","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg","serviceBusEndpoint":"https://sb-eldert-pg-standard.servicebus.windows.net:443/","alternateName":"sb-eldert-pg-standard","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-18T00:07:44.5054993Z","updatedAt":"2022-06-23T21:29:03.2119264Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/testingrestnamespace","name":"testingrestnamespace","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testingrestnamespace","serviceBusEndpoint":"https://testingrestnamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-12T01:32:10.0516954Z","updatedAt":"2023-12-12T01:32:52.9658514Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBSDK130108","name":"TestSBSDK130108","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testsbsdk130108","serviceBusEndpoint":"https://TestSBSDK130108.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-08T23:00:42.2506917Z","updatedAt":"2024-06-08T04:39:31.4672173Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-playground/providers/Microsoft.ServiceBus/namespaces/abhigarg-test-ns-2024-06-06-001","name":"abhigarg-test-ns-2024-06-06-001","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"my-super-secret-key-001","keyVaultUri":"https://abhigargkv-20240606-001.vault.azure.net"}],"requireInfrastructureEncryption":false},"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:abhigarg-test-ns-2024-06-06-001","serviceBusEndpoint":"https://abhigarg-test-ns-2024-06-06-001.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-07T00:22:49.6311194Z","updatedAt":"2024-06-07T01:12:37.5162967Z"},"identity":{"principalId":"a068a543-81d8-41a7-bd1e-1e95b0db33e0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarri-cmk/providers/Microsoft.ServiceBus/namespaces/skarrisubtest","name":"skarrisubtest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarrisubtest","serviceBusEndpoint":"https://skarrisubtest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-10T20:59:03.0740033Z","updatedAt":"2024-06-10T22:34:39.1889514Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicebuscrirg/providers/Microsoft.ServiceBus/namespaces/servicebuscritesting","name":"servicebuscritesting","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebuscritesting","serviceBusEndpoint":"https://servicebuscritesting.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-03-05T21:41:33.9884605Z","updatedAt":"2024-03-05T21:42:26.5791797Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGName-5648/providers/Microsoft.ServiceBus/namespaces/Namespace1-1879","name":"Namespace1-1879","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{"Tag1":"Tag1Value"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-1879","serviceBusEndpoint":"https://Namespace1-1879.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T18:02:09.9966098Z","updatedAt":"2022-06-25T18:02:53.6788809Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/sbmessaging-standard","name":"sbmessaging-standard","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbmessaging-standard","serviceBusEndpoint":"https://sbmessaging-standard.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-11-06T19:41:02.1548582Z","updatedAt":"2023-11-06T19:41:47.3489621Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestDataDRPPG/providers/Microsoft.ServiceBus/namespaces/TestPremSBDataDRNS0104","name":"TestPremSBDataDRNS0104","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpremsbdatadrns0104","serviceBusEndpoint":"https://TestPremSBDataDRNS0104.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-05T00:53:54.1066644Z","updatedAt":"2024-01-05T00:55:29.6885548Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-std-1","name":"anqyan-std-1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-std-1","serviceBusEndpoint":"https://anqyan-std-1-post.servicebus.windows.net:443/","alternateName":"anqyan-std-1-post","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-11T17:58:55.7827946Z","updatedAt":"2024-09-11T18:35:16.5463988Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-IsraelCentral/providers/Microsoft.ServiceBus/namespaces/fr-israel-sbstd","name":"fr-israel-sbstd","type":"Microsoft.ServiceBus/Namespaces","location":"israelcentral","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"israelcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:fr-israel-sbstd","serviceBusEndpoint":"https://fr-israel-sbstd.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T09:23:19.302291Z","updatedAt":"2024-09-17T09:23:19Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-ItalyNorth/providers/Microsoft.ServiceBus/namespaces/ardsouza-ITN-VAZ00001-1","name":"ardsouza-ITN-VAZ00001-1","type":"Microsoft.ServiceBus/Namespaces","location":"italynorth","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"italynorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-itn-vaz00001-1","serviceBusEndpoint":"https://ardsouza-ITN-VAZ00001-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-10T15:34:23.0687152Z","updatedAt":"2024-06-10T15:34:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/arunsgeodrdemonamespace-6-68","name":"arunsgeodrdemonamespace-6-68","type":"Microsoft.ServiceBus/Namespaces","location":"italynorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"italynorth","roleType":"Secondary","replicaState":"Ready"},{"locationName":"spaincentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:arunsgeodrdemonamespace-6-68","serviceBusEndpoint":"https://arunsgeodrdemonamespace-6-68.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-28T20:13:00.5994213Z","updatedAt":"2024-06-28T20:46:37Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagssbgeorep","name":"jagssbgeorep","type":"Microsoft.ServiceBus/Namespaces","location":"italynorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"italynorth","roleType":"Primary","replicaState":"Ready"},{"locationName":"spaincentral","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagssbgeorep","serviceBusEndpoint":"https://jagssbgeorep.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-05T15:14:22.4441529Z","updatedAt":"2024-08-05T15:18:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-JapanWest/providers/Microsoft.ServiceBus/namespaces/ardsouza-japanwest-repronamespace-deleteme","name":"ardsouza-japanwest-repronamespace-deleteme","type":"Microsoft.ServiceBus/Namespaces","location":"japanwest","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"japanwest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-japanwest-repronamespace-deleteme","serviceBusEndpoint":"https://ardsouza-japanwest-repronamespace-deleteme.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-11T10:20:34.2311855Z","updatedAt":"2024-09-11T10:20:34Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationeqtoed6xgavneelsmwausqqhcvr24gcbjdxth6uopazwxilwdp3w7m/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclikwlbpfe2","name":"sb-pre-nsclikwlbpfe2","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclikwlbpfe2","serviceBusEndpoint":"https://sb-pre-nsclikwlbpfe2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:55.4401526Z","updatedAt":"2024-09-26T07:48:55Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameEventTest","name":"SuparameEventTest","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparameeventtest","serviceBusEndpoint":"https://SuparameEventTest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:55.4584919Z","updatedAt":"2024-09-26T07:48:55Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationsculekczk6rbzy3zn3er3z3nyjgxnqecgsdiwhyqmvbfaqgr2e4isn/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliovi7tnfs","name":"sb-pre-nscliovi7tnfs","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliovi7tnfs","serviceBusEndpoint":"https://sb-pre-nscliovi7tnfs.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:55.4918071Z","updatedAt":"2024-09-26T07:48:55Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-9080","name":"ServiceBus-PRENamespace-9080","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-9080","serviceBusEndpoint":"https://ServiceBus-PRENamespace-9080.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.0440474Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgo64dh47qainaf7qucvghm77jfde5w4xzbtfkhpw4lg3h26hmovw6r/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliozip4wkh","name":"sb-pre-nscliozip4wkh","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliozip4wkh","serviceBusEndpoint":"https://sb-pre-nscliozip4wkh.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.1589083Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationh764zxsz7zmshbhevzjfxvdehgp5g2gc5eabpwdhy5rcqdwl6mgnks/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliv3edwnxd","name":"sb-pre-nscliv3edwnxd","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliv3edwnxd","serviceBusEndpoint":"https://sb-pre-nscliv3edwnxd.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.7052214Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgwiklflupjaz34l5qdwtajzgbpdugmzilw23kszwuz6phccvl7rfcc/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclisnu35eog","name":"sb-pre-nsclisnu35eog","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclisnu35eog","serviceBusEndpoint":"https://sb-pre-nsclisnu35eog.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.9069716Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgkxbhiyuychyewd4athlvz73tjjrf3e4ivqwm33jbpq5ztn3ed4jad/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliptizjoaa","name":"sb-pre-nscliptizjoaa","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliptizjoaa","serviceBusEndpoint":"https://sb-pre-nscliptizjoaa.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.0519803Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5io3sa5ajwzrzqnvstbmaj6wk565ed4f3suvlf5arqkue7douc3ej5/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclibwcbek2k","name":"sb-pre-nsclibwcbek2k","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclibwcbek2k","serviceBusEndpoint":"https://sb-pre-nsclibwcbek2k.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.1168258Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration2di4ymwkzkfj73xqtuuvx6s5la5chn57aqs346jyw4s6ap6hijc2cx/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclilfuzcmk2","name":"sb-pre-nsclilfuzcmk2","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclilfuzcmk2","serviceBusEndpoint":"https://sb-pre-nsclilfuzcmk2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.7785083Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationwpmp3ndtkmeamgj2u26xlptka4h4qp7in7tp5ntcqfqijjme5s5c6g/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclil4ikiywf","name":"sb-pre-nsclil4ikiywf","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclil4ikiywf","serviceBusEndpoint":"https://sb-pre-nsclil4ikiywf.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.9594113Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5eezamk36l5j3kz2ezhtesfz65sdngon5g4c5swqfmx5re5bx2imnf/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliwot7f2kb","name":"sb-pre-nscliwot7f2kb","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliwot7f2kb","serviceBusEndpoint":"https://sb-pre-nscliwot7f2kb.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:58.0211253Z","updatedAt":"2024-09-26T07:48:58Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationti3pyun7wnva3zwii5kbvv2ykhzmjk2ehjbyd553r5a5c7cmjpn7m5/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliixenlvu6","name":"sb-pre-nscliixenlvu6","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliixenlvu6","serviceBusEndpoint":"https://sb-pre-nscliixenlvu6.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:58.3566388Z","updatedAt":"2024-09-26T07:48:58Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-8744","name":"ServiceBus-PRENamespace-8744","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-8744","serviceBusEndpoint":"https://ServiceBus-PRENamespace-8744.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:59.2406892Z","updatedAt":"2024-09-26T07:48:59Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-3686","name":"ServiceBus-PRENamespace-3686","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-3686","serviceBusEndpoint":"https://ServiceBus-PRENamespace-3686.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:59.9008027Z","updatedAt":"2024-09-26T07:48:59Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationdoxqfkzqz3sd2v7dfkto6uiqf3uzbrozq36cx2lyrkf35qqjonsfvq/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclihdqtn2m3","name":"sb-pre-nsclihdqtn2m3","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclihdqtn2m3","serviceBusEndpoint":"https://sb-pre-nsclihdqtn2m3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:49:00.0158314Z","updatedAt":"2024-09-26T07:49:00Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-7974","name":"Namespace1-7974","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-7974","serviceBusEndpoint":"https://Namespace1-7974.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-25T08:01:39.9152083Z","updatedAt":"2022-09-25T08:07:58.3425988Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-6359","name":"Namespace1-6359","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key2","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key1","keyVaultUri":"https://ps-test-kv2.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}}],"requireInfrastructureEncryption":false},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-6359","serviceBusEndpoint":"https://Namespace1-6359.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-25T08:17:21.9588872Z","updatedAt":"2024-01-31T19:07:54.7506401Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1":{"clientId":"38a989a1-3fab-4015-b546-cbcf7a67aa89","principalId":"624205aa-192c-4303-9606-990d06cbd997"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2":{"clientId":"440d7336-c408-4327-ad13-10a4e71aad64","principalId":"1bdb6af0-4284-47f4-b049-94aa2868d90b"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace2-5304","name":"Namespace2-5304","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":""},{"keyName":"key2","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":false},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace2-5304","serviceBusEndpoint":"https://Namespace2-5304.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-25T08:08:42.699394Z","updatedAt":"2024-01-31T19:07:54.7194404Z"},"identity":{"principalId":"acb4ce9b-2730-494d-a18d-a8be0420bdcb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-NorthEurope/providers/Microsoft.ServiceBus/namespaces/vmsscpu","name":"vmsscpu","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vmsscpu","serviceBusEndpoint":"https://vmsscpu.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-02-29T18:16:47.6173232Z","updatedAt":"2024-02-29T18:18:14.2399465Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSStandard","name":"testPSStandard","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpsstandard","serviceBusEndpoint":"https://testSBPostMigrationName.servicebus.windows.net:443/","alternateName":"testSBPostMigrationName","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-17T12:29:23.1842017Z","updatedAt":"2024-01-31T19:10:33.7887309Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-SBNS-std-2-14-2023-p-1","name":"ardsouza-SBNS-std-2-14-2023-p-1","type":"Microsoft.ServiceBus/Namespaces","location":"polandcentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"polandcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-sbns-std-2-14-2023-p-1","serviceBusEndpoint":"https://ardsouza-SBNS-std-2-14-2023-p-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-13T07:28:23.787552Z","updatedAt":"2024-08-13T07:28:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-testrg1/providers/Microsoft.ServiceBus/namespaces/ardsouza-polandcentral-std-12-21-22","name":"ardsouza-polandcentral-std-12-21-22","type":"Microsoft.ServiceBus/Namespaces","location":"polandcentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"polandcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-polandcentral-std-12-21-22","serviceBusEndpoint":"https://ardsouza-polandcentral-std-12-21-22.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-13T07:28:23.7986681Z","updatedAt":"2024-08-13T07:28:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-sb-prem-private-ep-test","name":"kala-sb-prem-private-ep-test","type":"Microsoft.ServiceBus/Namespaces","location":"polandcentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"polandcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Disabled","disableLocalAuth":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-sb-prem-private-ep-test/privateEndpointConnections/9611890d-0920-4ebb-b6a0-0dc6a73437bb","name":"9611890d-0920-4ebb-b6a0-0dc6a73437bb","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"polandcentral","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.Network/privateEndpoints/kala-sb-prem-private-ep"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}],"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kala-sb-prem-private-ep-test","serviceBusEndpoint":"https://kala-sb-prem-private-ep-test.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-05T23:11:54.1313602Z","updatedAt":"2024-09-05T23:12:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgwiklflupjaz34l5qdwtajzgbpdugmzilw23kszwuz6phccvl7rfcc/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli37kpfecv","name":"sb-std-nscli37kpfecv","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli37kpfecv","serviceBusEndpoint":"https://clipostmigration7aa2.servicebus.windows.net:443/","alternateName":"clipostmigration7aa2","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T10:48:19.6021974Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f0152","name":"namespace9f0152","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f0152","serviceBusEndpoint":"https://namespace9f0152.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:27:21.7097807Z","updatedAt":"2024-09-29T05:27:41.0664585Z"},"identity":{"principalId":"aec57946-cae0-4252-9dd0-957abaca5fed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/secondaryNSw9rzma","name":"secondaryNSw9rzma","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsw9rzma","serviceBusEndpoint":"https://secondaryNSw9rzma.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-10T18:33:19.9474033Z","updatedAt":"2024-01-26T01:01:57.7309421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9012","name":"namespace9012","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9012","serviceBusEndpoint":"https://namespace9012.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:39:18.8924972Z","updatedAt":"2024-09-29T04:39:22.0645022Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgo64dh47qainaf7qucvghm77jfde5w4xzbtfkhpw4lg3h26hmovw6r/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli3d7brt2y","name":"sb-std-nscli3d7brt2y","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli3d7brt2y","serviceBusEndpoint":"https://clipostmigrationv4hd.servicebus.windows.net:443/","alternateName":"clipostmigrationv4hd","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T06:39:35.540099Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationwpmp3ndtkmeamgj2u26xlptka4h4qp7in7tp5ntcqfqijjme5s5c6g/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclix6xolgzk","name":"sb-pre-nsclix6xolgzk","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclix6xolgzk","serviceBusEndpoint":"https://clipostmigrationnmkz.servicebus.windows.net:443/","alternateName":"clipostmigrationnmkz","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T11:42:05.3361521Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SaglodhaRG/providers/Microsoft.ServiceBus/namespaces/BasicNS","name":"BasicNS","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:basicns","serviceBusEndpoint":"https://BasicNS.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-04-06T06:45:05.4396312Z","updatedAt":"2023-04-06T06:45:49.7716597Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bwpoc/providers/Microsoft.ServiceBus/namespaces/partitionedns1","name":"partitionedns1","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:partitionedns1","serviceBusEndpoint":"https://partitionedns1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-10T01:27:38.1853061Z","updatedAt":"2024-09-10T01:29:09.3520316Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace90152","name":"namespace90152","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace90152","serviceBusEndpoint":"https://namespace90152.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:59:19.4506791Z","updatedAt":"2024-09-29T04:59:38.7698153Z"},"identity":{"principalId":"6adf0e72-48f6-4d32-95bf-44ff92e00528","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationdoxqfkzqz3sd2v7dfkto6uiqf3uzbrozq36cx2lyrkf35qqjonsfvq/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclifmgwyxrh","name":"sb-pre-nsclifmgwyxrh","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclifmgwyxrh","serviceBusEndpoint":"https://clipostmigrationvres.servicebus.windows.net:443/","alternateName":"clipostmigrationvres","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T11:04:04.1255486Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgkxbhiyuychyewd4athlvz73tjjrf3e4ivqwm33jbpq5ztn3ed4jad/providers/Microsoft.ServiceBus/namespaces/sb-std-nsclit667brb7","name":"sb-std-nsclit667brb7","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nsclit667brb7","serviceBusEndpoint":"https://clipostmigrationn346.servicebus.windows.net:443/","alternateName":"clipostmigrationn346","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T09:06:34.8755023Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-8049","name":"ServiceBus-STDNamespace-8049","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-8049","serviceBusEndpoint":"https://PostMigration-Name-3646.servicebus.windows.net:443/","alternateName":"PostMigration-Name-3646","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-10T22:03:31.60737Z","updatedAt":"2024-01-26T01:01:57.7153189Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/secondaryNS4qrb17","name":"secondaryNS4qrb17","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondaryns4qrb17","serviceBusEndpoint":"https://secondaryNS4qrb17.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-23T12:03:35.3043089Z","updatedAt":"2024-01-26T01:01:57.5903136Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/secondaryNS6zn7s8","name":"secondaryNS6zn7s8","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondaryns6zn7s8","serviceBusEndpoint":"https://secondaryNS6zn7s8.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-13T06:16:33.0795294Z","updatedAt":"2024-01-26T01:01:57.7309421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-6102","name":"ServiceBus-STDNamespace-6102","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-6102","serviceBusEndpoint":"https://PostMigration-Name-8545.servicebus.windows.net:443/","alternateName":"PostMigration-Name-8545","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-15T04:47:52.2948676Z","updatedAt":"2024-01-26T01:01:57.7153189Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationsculekczk6rbzy3zn3er3z3nyjgxnqecgsdiwhyqmvbfaqgr2e4isn/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli6p7zx6uw","name":"sb-std-nscli6p7zx6uw","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli6p7zx6uw","serviceBusEndpoint":"https://clipostmigrationje2w.servicebus.windows.net:443/","alternateName":"clipostmigrationje2w","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T06:31:31.211383Z","updatedAt":"2024-01-26T01:01:57.7309421Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SaglodhaRG/providers/Microsoft.ServiceBus/namespaces/SBPremsaglodha","name":"SBPremsaglodha","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbpremsaglodha","serviceBusEndpoint":"https://SBPremsaglodha.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-28T13:24:30.8390277Z","updatedAt":"2024-08-30T07:34:55.4603004Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.ServiceBus/namespaces/ali-cmk-validation","name":"ali-cmk-validation","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ali-byok-kv.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/prod-by3-533-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ua1"}}],"requireInfrastructureEncryption":false},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ali-cmk-validation","serviceBusEndpoint":"https://ali-cmk-validation.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-20T22:56:03.0130166Z","updatedAt":"2024-09-24T16:05:36.2656948Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/prod-by3-533-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ua1":{"clientId":"6adfc838-7885-450c-ab76-90988ebcecbc","principalId":"ab77b41c-cf0a-449d-80bc-815cdf3c5637"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration2di4ymwkzkfj73xqtuuvx6s5la5chn57aqs346jyw4s6ap6hijc2cx/providers/Microsoft.ServiceBus/namespaces/sb-std-nscliahk23qf3","name":"sb-std-nscliahk23qf3","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscliahk23qf3","serviceBusEndpoint":"https://clipostmigrationgki6.servicebus.windows.net:443/","alternateName":"clipostmigrationgki6","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T10:27:37.4878936Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7874/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-81","name":"ServiceBus-STDNamespace-81","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-81","serviceBusEndpoint":"https://ServiceBus-STDNamespace-81.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T16:29:39.6742128Z","updatedAt":"2022-06-25T16:30:24.4041021Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/secondaryNSiqjvmr","name":"secondaryNSiqjvmr","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsiqjvmr","serviceBusEndpoint":"https://secondaryNSiqjvmr.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-22T17:41:18.69702Z","updatedAt":"2024-01-26T01:01:57.4028107Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationeqtoed6xgavneelsmwausqqhcvr24gcbjdxth6uopazwxilwdp3w7m/providers/Microsoft.ServiceBus/namespaces/sb-std-nsclifmrer52d","name":"sb-std-nsclifmrer52d","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nsclifmrer52d","serviceBusEndpoint":"https://clipostmigrationamhb.servicebus.windows.net:443/","alternateName":"clipostmigrationamhb","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T07:40:08.1293673Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-276","name":"ServiceBus-STDNamespace-276","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-276","serviceBusEndpoint":"https://PostMigration-Name-9658.servicebus.windows.net:443/","alternateName":"PostMigration-Name-9658","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-16T05:32:29.7527134Z","updatedAt":"2024-01-26T01:01:57.7153189Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5io3sa5ajwzrzqnvstbmaj6wk565ed4f3suvlf5arqkue7douc3ej5/providers/Microsoft.ServiceBus/namespaces/sb-std-nscliakx5upva","name":"sb-std-nscliakx5upva","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscliakx5upva","serviceBusEndpoint":"https://clipostmigration2xdu.servicebus.windows.net:443/","alternateName":"clipostmigration2xdu","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T10:40:55.8364218Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5eezamk36l5j3kz2ezhtesfz65sdngon5g4c5swqfmx5re5bx2imnf/providers/Microsoft.ServiceBus/namespaces/sb-std-nsclirfsecojc","name":"sb-std-nsclirfsecojc","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nsclirfsecojc","serviceBusEndpoint":"https://clipostmigrationwjzz.servicebus.windows.net:443/","alternateName":"clipostmigrationwjzz","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T07:02:15.6412169Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationh764zxsz7zmshbhevzjfxvdehgp5g2gc5eabpwdhy5rcqdwl6mgnks/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclidsadn7fx","name":"sb-pre-nsclidsadn7fx","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclidsadn7fx","serviceBusEndpoint":"https://clipostmigration35d7.servicebus.windows.net:443/","alternateName":"clipostmigration35d7","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T11:19:42.0696133Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-prem-1","name":"anqyan-prem-1","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-prem-1","serviceBusEndpoint":"https://anqyan-prem-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-11T18:04:25.7412653Z","updatedAt":"2024-09-11T18:35:16.5898898Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationti3pyun7wnva3zwii5kbvv2ykhzmjk2ehjbyd553r5a5c7cmjpn7m5/providers/Microsoft.ServiceBus/namespaces/sb-std-nscliaabalsds","name":"sb-std-nscliaabalsds","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: + value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscliaabalsds","serviceBusEndpoint":"https://clipostmigration3f65.servicebus.windows.net:443/","alternateName":"clipostmigration3f65","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T06:54:36.5997072Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaPremiumNamespace","name":"PrithaPremiumNamespace","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithapremiumnamespace","serviceBusEndpoint":"https://PrithaPremiumNamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.1484132Z","updatedAt":"2024-09-23T08:20:45Z"},"identity":{"principalId":"dd24dfdb-8366-426d-955f-7331d953a692","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaPremiumSBnamespace2","name":"PrithaPremiumSBnamespace2","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithapremiumsbnamespace2","serviceBusEndpoint":"https://PrithaPremiumSBnamespace2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.2092778Z","updatedAt":"2024-09-23T08:20:45Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaTestSBNamespace","name":"PrithaTestSBNamespace","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithatestsbnamespace","serviceBusEndpoint":"https://PrithaTestSBNamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.4140376Z","updatedAt":"2024-09-23T08:20:45Z"},"identity":{"principalId":"2df3939c-4419-4f76-83ee-8e36b9c42c22","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaTestNamespace","name":"PrithaTestNamespace","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithatestnamespace","serviceBusEndpoint":"https://PrithaTestNamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.525476Z","updatedAt":"2024-09-23T08:20:45Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaNamespacePremium","name":"PrithaNamespacePremium","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithanamespacepremium","serviceBusEndpoint":"https://PrithaNamespacePremium.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-25T11:27:55.5125162Z","updatedAt":"2024-09-25T11:29:04Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsgeorepdr","name":"jagsgeorepdr","type":"Microsoft.ServiceBus/Namespaces","location":"spaincentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"spaincentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagsgeorepdr","serviceBusEndpoint":"https://jagsgeorepdr.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-19T23:50:14.7256265Z","updatedAt":"2024-07-19T23:51:15Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsu58_rg/providers/Microsoft.ServiceBus/namespaces/testperfprodvinsu","name":"testperfprodvinsu","type":"Microsoft.ServiceBus/Namespaces","location":"swedencentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"swedencentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testperfprodvinsu","serviceBusEndpoint":"https://testperfprodvinsu.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-30T06:03:58.282936Z","updatedAt":"2024-08-30T06:03:58Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarri-cmk/providers/Microsoft.ServiceBus/namespaces/ukcxtest","name":"ukcxtest","type":"Microsoft.ServiceBus/Namespaces","location":"uksouth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"uksouth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ukcxtest","serviceBusEndpoint":"https://ukcxtest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-25T21:55:42.8939321Z","updatedAt":"2024-09-25T21:56:46Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6064","name":"sdk-Namespace-6064","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6064","serviceBusEndpoint":"https://sdk-PostMigration-4665.servicebus.windows.net:443/","alternateName":"sdk-PostMigration-4665","provisioningState":"Succeeded","status":"Active","createdAt":"2022-05-16T23:03:13.268341Z","updatedAt":"2024-09-24T00:26:35.6056738Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7912","name":"sdk-Namespace-7912","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7912","serviceBusEndpoint":"https://sdk-Namespace-7912.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-05-17T18:14:19.8230335Z","updatedAt":"2024-09-24T00:26:39.2775477Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/ardsouza-1-10-2024-namespaceskuvalidation","name":"ardsouza-1-10-2024-namespaceskuvalidation","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-1-10-2024-namespaceskuvalidation","serviceBusEndpoint":"https://ardsouza-1-10-2024-namespaceskuvalidation.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-11T02:01:03.5622177Z","updatedAt":"2024-01-11T02:01:07.5154051Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5506","name":"sdk-Namespace-5506","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5506","serviceBusEndpoint":"https://sdk-PostMigration-5506.servicebus.windows.net:443/","alternateName":"sdk-PostMigration-5506","provisioningState":"Succeeded","status":"Active","createdAt":"2022-05-16T23:03:13.2527129Z","updatedAt":"2022-05-19T17:14:23.9709598Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jfgSBRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgBscNmpsc1","name":"jfgBscNmpsc1","type":"Microsoft.ServiceBus/Namespaces","location":"westeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jfgbscnmpsc1","serviceBusEndpoint":"https://jfgBscNmpsc1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-03-22T18:14:12.8659366Z","updatedAt":"2023-03-22T18:15:04.1369302Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jfgSBRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgSBNmspc1","name":"jfgSBNmspc1","type":"Microsoft.ServiceBus/Namespaces","location":"westeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jfgsbnmspc1","serviceBusEndpoint":"https://jfgSBNmspc1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-03-09T22:57:08.592498Z","updatedAt":"2023-03-09T22:57:55.0779659Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/dlqtestfordavid","name":"dlqtestfordavid","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:dlqtestfordavid","serviceBusEndpoint":"https://dlqtestfordavid.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-04-11T16:48:22.7563558Z","updatedAt":"2023-04-11T16:58:13.9243033Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameSbusTest","name":"SuparameSbusTest","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparamesbustest","serviceBusEndpoint":"https://SuparameSbusTest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-10T02:29:57.3676953Z","updatedAt":"2022-06-10T02:29:57.3676953Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxwussbpremns-2","name":"kevxwussbpremns-2","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kevx-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kevxmi-wcus"}}],"requireInfrastructureEncryption":true},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxwussbpremns-2","serviceBusEndpoint":"https://kevxwussbpremns-2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T18:14:32.6827249Z","updatedAt":"2024-09-27T18:21:20.3068417Z"},"identity":{"principalId":"0e992b76-71d9-456b-ae95-e195ab0d010f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, + UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kevx-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kevxmi-wcus":{"clientId":"d07b99be-8faf-4798-b40d-343d7ef97ee6","principalId":"54518d54-4fd1-4b2e-962a-5e800f38f33a"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testSBARMTemplate","name":"testSBARMTemplate","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testsbarmtemplate","serviceBusEndpoint":"https://testSBARMTemplate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-14T09:01:24.7124833Z","updatedAt":"2024-02-23T01:23:46.7510623Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameNamespaceTest1","name":"SuparameNamespaceTest1","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparamenamespacetest1","serviceBusEndpoint":"https://SuparameNamespaceTest1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-12-16T05:52:15.1832564Z","updatedAt":"2022-12-16T05:53:00.183933Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/recreate","name":"recreate","type":"Microsoft.ServiceBus/Namespaces","location":"westus","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:recreate","serviceBusEndpoint":"https://recreate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-10T21:40:30.4945103Z","updatedAt":"2023-12-11T04:54:08.0288363Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsprempm","name":"jagsprempm","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagsprempm","serviceBusEndpoint":"https://jagsprempm.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-03T18:26:02.5410715Z","updatedAt":"2024-09-03T18:27:23.1169986Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription6m27zc5rufs7xp34pis2phf5wfu2j7kk7lqieysmclma6iytq4r/providers/Microsoft.ServiceBus/namespaces/sb-nsclizscx2ebag64z","name":"sb-nsclizscx2ebag64z","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: + value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nsclizscx2ebag64z","serviceBusEndpoint":"https://sb-nsclizscx2ebag64z.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-07T08:00:56.4710146Z","updatedAt":"2023-02-07T08:01:39.3967793Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxwussbpremns-4","name":"kevxwussbpremns-4","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxwussbpremns-4","serviceBusEndpoint":"https://kevxwussbpremns-4.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T21:34:28.050363Z","updatedAt":"2024-09-27T18:16:22.6524976Z"},"identity":{"principalId":"bc5015dd-fa7a-4e7b-a233-4a013f9921a9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/testvstsan3","name":"testvstsan3","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvstsan3","serviceBusEndpoint":"https://testvstsan3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-02-25T20:55:35.746222Z","updatedAt":"2024-02-25T20:56:52.3567074Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGName-2450/providers/Microsoft.ServiceBus/namespaces/Namespace-9959","name":"Namespace-9959","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace-9959","serviceBusEndpoint":"https://Namespace-9959.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-02T10:43:49.7401268Z","updatedAt":"2024-02-23T01:12:52.8670868Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.ServiceBus/namespaces/SBSDKv2NS0621","name":"SBSDKv2NS0621","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbsdkv2ns0621","serviceBusEndpoint":"https://SBSDKv2NS0621.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-21T22:44:45.3021513Z","updatedAt":"2024-08-08T02:47:51.3346007Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-basic","name":"sb-eldert-pg-basic","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-basic","serviceBusEndpoint":"https://sb-eldert-pg-basic.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-02-20T21:46:15.3387193Z","updatedAt":"2024-02-20T21:46:58.5912982Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EHPerformanceTestingFramework/providers/Microsoft.ServiceBus/namespaces/performanceframeworkbroker","name":"performanceframeworkbroker","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:performanceframeworkbroker","serviceBusEndpoint":"https://performanceframeworkbroker.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-09-19T07:56:44.692459Z","updatedAt":"2023-09-19T07:57:27.8038791Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/klam-rg/providers/Microsoft.ServiceBus/namespaces/klam-sb-namespace","name":"klam-sb-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:klam-sb-namespace","serviceBusEndpoint":"https://klam-sb-namespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-05-24T17:24:06.7846144Z","updatedAt":"2024-05-24T17:24:10.3471942Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/KarenTesting/providers/Microsoft.ServiceBus/namespaces/st2testpremVmss","name":"st2testpremVmss","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:st2testpremvmss","serviceBusEndpoint":"https://st2testpremVmss.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-04-18T23:21:14.6444569Z","updatedAt":"2024-04-24T07:05:10.6934365Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-implementing-an-event-sourcing-strategy-on-azure/providers/Microsoft.ServiceBus/namespaces/sb-implementing-event-sourcing-strategy","name":"sb-implementing-event-sourcing-strategy","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-implementing-event-sourcing-strategy","serviceBusEndpoint":"https://sb-implementing-event-sourcing-strategy.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-24T20:28:20.0617256Z","updatedAt":"2022-12-06T18:15:03.9465739Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-empower-your-azure-iac-with-bicep/providers/Microsoft.ServiceBus/namespaces/contoso-service-bus","name":"contoso-service-bus","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:contoso-service-bus","serviceBusEndpoint":"https://contoso-service-bus.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-24T20:28:22.4992557Z","updatedAt":"2022-06-24T20:28:22.4992557Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureServiceBusInDepth/providers/Microsoft.ServiceBus/namespaces/simplesbmessaging","name":"simplesbmessaging","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:simplesbmessaging","serviceBusEndpoint":"https://simplesbmessaging.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-28T23:16:58.4116898Z","updatedAt":"2023-12-28T23:17:43.5894886Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/v-carrue-powershelltest/providers/Microsoft.ServiceBus/namespaces/v-carrue-ns1","name":"v-carrue-ns1","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:v-carrue-ns1","serviceBusEndpoint":"https://v-carrue-ns1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-24T23:46:28.8715332Z","updatedAt":"2022-06-24T23:46:28.8715332Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/SBTestPagination06060129","name":"SBTestPagination06060129","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbtestpagination06060129","serviceBusEndpoint":"https://SBTestPagination06060129.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-29T23:28:16.2615671Z","updatedAt":"2024-04-10T20:14:32.7743468Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jupachol-rg/providers/Microsoft.ServiceBus/namespaces/jupachol-manyentities2","name":"jupachol-manyentities2","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jupachol-manyentities2","serviceBusEndpoint":"https://jupachol-manyentities2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T21:09:43.0686492Z","updatedAt":"2024-09-23T21:10:46.2483538Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-premium","name":"sb-eldert-pg-premium","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-premium","serviceBusEndpoint":"https://sb-eldert-pg-premium.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-19T19:49:27.5808727Z","updatedAt":"2024-05-09T00:13:59.4852492Z"},"identity":{"principalId":"150b1ab1-9538-451a-b4e6-9c8a68b41810","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/ServiceBusStandardNSSuparme","name":"ServiceBusStandardNSSuparme","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebusstandardnssuparme","serviceBusEndpoint":"https://ServiceBusStandardNSSuparme.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-01-31T18:38:27.5382008Z","updatedAt":"2023-09-18T19:02:02.0162724Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap","name":"ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap/privateEndpointConnections/b6864f23-00b1-4284-ae74-5531b896adef","name":"b6864f23-00b1-4284-ae74-5531b896adef","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"centraluseuap","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.Network/privateEndpoints/pve1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}],"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-nonaz-cuseuap","serviceBusEndpoint":"https://ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.0173441Z","updatedAt":"2024-09-13T20:29:06Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test6718","name":"test6718","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test6718","serviceBusEndpoint":"https://test6718.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.0775922Z","updatedAt":"2024-09-27T20:36:53Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/abhigarg-test-ns-2023-11-28-001","name":"abhigarg-test-ns-2023-11-28-001","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:abhigarg-test-ns-2023-11-28-001","serviceBusEndpoint":"https://abhigarg-test-ns-2023-11-28-001.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.1219649Z","updatedAt":"2024-06-04T06:46:30Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-CentralUSEUAP/providers/Microsoft.ServiceBus/namespaces/PROD-CDM-V00001-sb-std-test","name":"PROD-CDM-V00001-sb-std-test","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prod-cdm-v00001-sb-std-test","serviceBusEndpoint":"https://PROD-CDM-V00001-sb-std-test.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.2673502Z","updatedAt":"2024-07-25T01:50:12Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijayscalesetsloadtest/providers/Microsoft.ServiceBus/namespaces/vijaystandardaadtest","name":"vijaystandardaadtest","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vijaystandardaadtest","serviceBusEndpoint":"https://vijaystandardaadtest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.7819973Z","updatedAt":"2024-07-25T01:56:48Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarridatadrrg/providers/Microsoft.ServiceBus/namespaces/skarri-test-central-euap","name":"skarri-test-central-euap","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"centraluseuap","roleType":"Secondary","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarri-test-central-euap","serviceBusEndpoint":"https://skarri-test-central-euap.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-14T04:03:47.3716478Z","updatedAt":"2024-08-14T04:25:41Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxcuseuap-sbpremns-3","name":"kevxcuseuap-sbpremns-3","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{"t":"t"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxcuseuap-sbpremns-3","serviceBusEndpoint":"https://kevxcuseuap-sbpremns-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-13T18:19:46.2728027Z","updatedAt":"2024-09-27T18:26:17Z"},"identity":{"principalId":"5ffa658e-1bc1-424a-8876-d3089798f22e","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alitest/providers/Microsoft.ServiceBus/namespaces/ali-pe-lock-test-namespace","name":"ali-pe-lock-test-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ali-pe-lock-test-namespace","serviceBusEndpoint":"https://ali-pe-lock-test-namespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-19T17:34:25.9319507Z","updatedAt":"2024-09-19T17:35:36Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ","name":"ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-reallynonaz","serviceBusEndpoint":"https://ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-15T17:11:52.3250786Z","updatedAt":"2024-09-13T20:28:54.186495Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sharmavijay-la-verification/providers/Microsoft.ServiceBus/namespaces/sharmavijay-sb-std-la-verification","name":"sharmavijay-sb-std-la-verification","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sharmavijay-sb-std-la-verification","serviceBusEndpoint":"https://sharmavijay-sb-std-la-verification.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-01T11:00:10.0884419Z","updatedAt":"2023-02-01T11:00:57.0274208Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dsms-test-rg/providers/Microsoft.ServiceBus/namespaces/dsmstestsb1","name":"dsmstestsb1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:dsmstestsb1","serviceBusEndpoint":"https://dsmstestsb1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-22T17:15:28.4683589Z","updatedAt":"2023-11-14T10:34:31.0549Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxeus2euap-sbpremns-3","name":"kevxeus2euap-sbpremns-3","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{"u":"u"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxeus2euap-sbpremns-3","serviceBusEndpoint":"https://kevxeus2euap-sbpremns-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-13T18:18:40.0458811Z","updatedAt":"2024-09-27T18:26:23.8803299Z"},"identity":{"principalId":"82309214-f4f7-4132-81a6-5efcfdb8720f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/leandertestcanary/providers/Microsoft.ServiceBus/namespaces/leandertestgeodrmsi2","name":"leandertestgeodrmsi2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:leandertestgeodrmsi2","serviceBusEndpoint":"https://leandertestgeodrmsi2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-04-29T17:33:21.1148004Z","updatedAt":"2024-09-06T02:52:02.284835Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-MalaysiaSouth/providers/Microsoft.ServiceBus/namespaces/ardsouza-malaysia-sb-standard","name":"ardsouza-malaysia-sb-standard","type":"Microsoft.ServiceBus/Namespaces","location":"malaysiasouth","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"malaysiasouth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-malaysia-sb-standard","serviceBusEndpoint":"https://ardsouza-malaysia-sb-standard.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-30T06:03:30.5242517Z","updatedAt":"2024-08-30T06:03:30Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/framborg/providers/Microsoft.ServiceBus/namespaces/framborg-nzn-sbs2","name":"framborg-nzn-sbs2","type":"Microsoft.ServiceBus/Namespaces","location":"newzealandnorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"newzealandnorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:framborg-nzn-sbs2","serviceBusEndpoint":"https://framborg-nzn-sbs2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-02T21:46:58.0124397Z","updatedAt":"2024-07-02T21:47:08.2470018Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alitest/providers/Microsoft.ServiceBus/namespaces/ali-test-namespace","name":"ali-test-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"norwaywest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"norwaywest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ali-test-namespace","serviceBusEndpoint":"https://ali-test-namespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-12T05:52:08.8242238Z","updatedAt":"2024-07-12T05:52:08Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-namespace3","name":"ardsouza-namespace3","type":"Microsoft.ServiceBus/Namespaces","location":"norwaywest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"norwaywest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-namespace3","serviceBusEndpoint":"https://ardsouza-namespace3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-12T05:52:08.3689087Z","updatedAt":"2024-07-12T05:52:08Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-namespace1","name":"ardsouza-namespace1","type":"Microsoft.ServiceBus/Namespaces","location":"norwaywest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"norwaywest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-namespace1","serviceBusEndpoint":"https://ardsouza-namespace1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-12T05:52:09.813331Z","updatedAt":"2024-07-12T05:52:09Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/lmanickam-sb-cosmos-basic","name":"lmanickam-sb-cosmos-basic","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:lmanickam-sb-cosmos-basic","serviceBusEndpoint":"https://lmanickam-sb-cosmos-basic.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-05-31T11:40:46.4780932Z","updatedAt":"2024-06-05T13:01:52Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/framborg/providers/Microsoft.ServiceBus/namespaces/framborg-twn-sbs","name":"framborg-twn-sbs","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:framborg-twn-sbs","serviceBusEndpoint":"https://framborg-twn-sbs.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-05-31T11:50:41.6292866Z","updatedAt":"2024-05-31T11:50:41Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarridatadrrg/providers/Microsoft.ServiceBus/namespaces/skarritaiwantest1","name":"skarritaiwantest1","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"},{"locationName":"centraluseuap","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarritaiwantest1","serviceBusEndpoint":"https://skarritaiwantest1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-15T03:34:21.6921044Z","updatedAt":"2024-06-15T03:38:25Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-pu-pr","name":"anqyan-pu-pr","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"},{"locationName":"italynorth","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-pu-pr","serviceBusEndpoint":"https://anqyan-pu-pr.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-26T00:00:52.6685501Z","updatedAt":"2024-08-26T00:04:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namspace91vf21","name":"namspace91vf21","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namspace91vf21","serviceBusEndpoint":"https://namspace91vf21.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T19:21:05.8127004Z","updatedAt":"2024-09-26T19:22:09Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namspace91vfcx21","name":"namspace91vfcx21","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namspace91vfcx21","serviceBusEndpoint":"https://namspace91vfcx21.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T19:34:49.6613793Z","updatedAt":"2024-09-26T19:35:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namspace91vfcx22","name":"namspace91vfcx22","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"australiaeast","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namspace91vfcx22","serviceBusEndpoint":"https://namspace91vfcx22.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T19:59:44.1843374Z","updatedAt":"2024-09-26T20:03:53Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace7812","name":"namespace7812","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace7812","serviceBusEndpoint":"https://namespace7812.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:45:12.1312518Z","updatedAt":"2024-09-29T17:46:43Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/framborg/providers/Microsoft.ServiceBus/namespaces/framborg-twnw-sbs","name":"framborg-twnw-sbs","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorthwest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorthwest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:framborg-twnw-sbs","serviceBusEndpoint":"https://framborg-twnw-sbs.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T08:59:25.3863242Z","updatedAt":"2024-06-04T08:59:25Z"},"sku":{"name":"Standard","tier":"Standard"}}]}' + headers: + cache-control: + - no-cache + content-length: + - '187783' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:58:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-original-request-ids: + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + x-msedge-ref: + - 'Ref A: AA245B640DB844ABB219A16352D93791 Ref B: OSA221030115023 Ref C: 2024-09-29T17:57:58Z' + status: + code: 200 + message: OK +- request: + body: '{"location": "Australiaeast", "properties": {"geoDataReplication": {"locations": + [{"clusterArmId": "", "locationName": "Australiaeast", "roleType": "Primary"}, + {"clusterArmId": "", "locationName": "TaiwanNorth", "roleType": "Secondary"}]}}, + "sku": {"name": "Premium", "tier": "Premium"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + Content-Length: + - '287' + Content-Type: + - application/json + ParameterSetName: + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"InBuild"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T17:58:08Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1010' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:58:07 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - e2fbf3cf-10f9-492c-a081-2544a2165227 + x-ms-messaging-routing-id: + - AUSTRALIAEAST|AUSTRALIAEAST|G13|2024-09-29T17:58:08 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 0A678544E86B4C6CA53344427E9E57B7 Ref B: TYO201151004009 Ref C: 2024-09-29T17:58:02Z' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"InBuild"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T17:58:08Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1010' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:58:08 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 91b4d511-19a9-485f-99f0-078ce43871ca + x-ms-messaging-routing-id: + - AUSTRALIAEAST|AUSTRALIAEAST|G3|2024-09-29T17:58:09 + x-msedge-ref: + - 'Ref A: C5817CC6DF2144DB8FAF0FD164F9402E Ref B: TYO201151004009 Ref C: 2024-09-29T17:58:08Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"InBuild"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T17:58:08Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1010' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:58:39 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - b5b7d8c6-e6e0-4929-aa78-57e11a9f6a89 + x-ms-messaging-routing-id: + - AUSTRALIAEAST|AUSTRALIAEAST|G7|2024-09-29T17:58:39 + x-msedge-ref: + - 'Ref A: 598B57693CF24CFD8C868CEF8B596B26 Ref B: TYO201151004009 Ref C: 2024-09-29T17:58:39Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"InBuild"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T17:58:08Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1010' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:59:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 4b222e8d-7740-46a2-9423-60027210e7ec + x-ms-messaging-routing-id: + - AUSTRALIAEAST|AUSTRALIAEAST|G8|2024-09-29T17:59:10 + x-msedge-ref: + - 'Ref A: 7A5BF8ED38564B5AA0E249D4FC6891D3 Ref B: TYO201151004009 Ref C: 2024-09-29T17:59:09Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"InBuild"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T17:58:08Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1010' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 17:59:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 2b619c64-954d-41b1-8011-658669c9fd55 + x-ms-messaging-routing-id: + - AUSTRALIAEAST|AUSTRALIAEAST|G13|2024-09-29T17:59:41 + x-msedge-ref: + - 'Ref A: 52AE660B75CD47408431E8A3CA5FE200 Ref B: TYO201151004009 Ref C: 2024-09-29T17:59:40Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:00:10Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1008' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 18:00:11 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - fac7b1a2-0897-4e77-a15a-13779113bf8e + x-ms-messaging-routing-id: + - AUSTRALIAEAST|AUSTRALIAEAST|G7|2024-09-29T18:00:12 + x-msedge-ref: + - 'Ref A: 2949734805D9482C9622103177AD331A Ref B: TYO201151004009 Ref C: 2024-09-29T18:00:11Z' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace create + Connection: + - keep-alive + ParameterSetName: + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:00:10Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + headers: + cache-control: + - no-cache + content-length: + - '1008' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 29 Sep 2024 18:00:42 GMT expires: - '-1' pragma: @@ -533,11 +1760,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - b8cb8df5-bc1a-44b9-9ef8-d4a6b92367be + - db3c9226-cfc8-4417-bc89-8ce39f34bdf5 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G5|2024-09-29T06:44:00 + - AUSTRALIAEAST|AUSTRALIAEAST|G9|2024-09-29T18:00:42 x-msedge-ref: - - 'Ref A: 2F6FF43FF8A9435687EF1D521D277BF9 Ref B: TYO201151002036 Ref C: 2024-09-29T06:43:59Z' + - 'Ref A: F7D8CCF77115408292674F7DD7F11EAE Ref B: TYO201151004009 Ref C: 2024-09-29T18:00:42Z' status: code: 200 message: OK @@ -545,31 +1772,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace update + - servicebus namespace create Connection: - keep-alive ParameterSetName: - - --name --resource-group --capacity --tags + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:43:56.2469947Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:00:10Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '886' + - '1008' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:44:01 GMT + - Sun, 29 Sep 2024 18:01:13 GMT expires: - '-1' pragma: @@ -581,51 +1808,43 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - b87a619c-f5b9-41ae-bed6-9a2d7a396183 + - 7be393fa-419a-4b79-b0ad-6cf9f8851731 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G9|2024-09-29T06:44:01 + - AUSTRALIAEAST|AUSTRALIAEAST|G3|2024-09-29T18:01:13 x-msedge-ref: - - 'Ref A: DD9DBCCCECAA40D6B208E853E9A91D79 Ref B: OSA221030113049 Ref C: 2024-09-29T06:44:00Z' + - 'Ref A: CFA5E5AB99D04CBBA35C4E745731B7D4 Ref B: TYO201151004009 Ref C: 2024-09-29T18:01:13Z' status: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"disableLocalAuth": false, "geoDataReplication": - {"locations": [{"locationName": "eastus", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": - 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": - "Enabled", "zoneRedundant": false}, "sku": {"capacity": 4, "name": "Premium", - "tier": "Premium"}, "tags": {"tag1": "value1", "tag2": "value2"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace update + - servicebus namespace create Connection: - keep-alive - Content-Length: - - '423' - Content-Type: - - application/json ParameterSetName: - - --name --resource-group --capacity --tags + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:05.0441315Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:00:10Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '918' + - '1008' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:44:05 GMT + - Sun, 29 Sep 2024 18:01:43 GMT expires: - '-1' pragma: @@ -637,13 +1856,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - b80cfe9f-4679-408e-ac24-2ac47db04be7 + - aed120e6-4cde-4cb7-ad69-7ed06392c2b2 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G7|2024-09-29T06:44:05 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - AUSTRALIAEAST|AUSTRALIAEAST|G11|2024-09-29T18:01:44 x-msedge-ref: - - 'Ref A: 24413300FB3C49FEB32B547D0FDC5E9A Ref B: OSA221030113049 Ref C: 2024-09-29T06:44:01Z' + - 'Ref A: BC9F831C2F5242A3A7976AEB45FDC5B6 Ref B: TYO201151004009 Ref C: 2024-09-29T18:01:44Z' status: code: 200 message: OK @@ -655,27 +1872,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace update + - servicebus namespace create Connection: - keep-alive ParameterSetName: - - --name --resource-group --capacity --tags + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:05.0441315Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:00:10Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '918' + - '1008' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:44:06 GMT + - Sun, 29 Sep 2024 18:02:15 GMT expires: - '-1' pragma: @@ -687,11 +1904,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - ad382ba7-b9ed-4116-a813-f9e234f5470f + - dd71bca0-f008-44f2-b449-e5eddab344d7 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G10|2024-09-29T06:44:07 + - AUSTRALIAEAST|AUSTRALIAEAST|G6|2024-09-29T18:02:15 x-msedge-ref: - - 'Ref A: 32C125CF0E664422BA02CFCAD3F430FC Ref B: OSA221030113049 Ref C: 2024-09-29T06:44:06Z' + - 'Ref A: 6AC40B843E5D4C3F9AEB602A2ED048CF Ref B: TYO201151004009 Ref C: 2024-09-29T18:02:14Z' status: code: 200 message: OK @@ -703,27 +1920,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace update + - servicebus namespace create Connection: - keep-alive ParameterSetName: - - --name --resource-group --capacity --tags + - --resource-group --name --location --sku --geo-data-replication-config --geo-data-replication-config User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:19.0287362Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:02:17Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '917' + - '1005' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:44:37 GMT + - Sun, 29 Sep 2024 18:02:46 GMT expires: - '-1' pragma: @@ -735,11 +1952,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 0022be65-9615-4c78-b4fd-2e8aab7478ef + - 0be5c2cd-9d23-4f9c-b9c0-36bbf118e508 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G5|2024-09-29T06:44:38 + - AUSTRALIAEAST|AUSTRALIAEAST|G4|2024-09-29T18:02:46 x-msedge-ref: - - 'Ref A: 4BB75DA31854423B9E2B62AD511EE84D Ref B: OSA221030113049 Ref C: 2024-09-29T06:44:37Z' + - 'Ref A: 4DA2725D084340128C1FCF347E3B1093 Ref B: TYO201151004009 Ref C: 2024-09-29T18:02:45Z' status: code: 200 message: OK @@ -755,23 +1972,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --disable-local-auth + - --resource-group --name --max-replication-lag-duration-in-seconds User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:19.0287362Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:02:17Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '917' + - '1005' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:44:39 GMT + - Sun, 29 Sep 2024 18:06:06 GMT expires: - '-1' pragma: @@ -783,20 +2000,22 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 6d01b245-88c1-44f6-82f8-f616c28c856d + - 3a8cc5a5-2353-44a7-8728-a54c25999a3a x-ms-messaging-routing-id: - - EASTUS|EASTUS|G14|2024-09-29T06:44:39 + - AUSTRALIAEAST|AUSTRALIAEAST|G13|2024-09-29T18:06:07 x-msedge-ref: - - 'Ref A: 0DC9AF56C91740E394549FB200793C4A Ref B: OSA221030116047 Ref C: 2024-09-29T06:44:38Z' + - 'Ref A: B6002BE99A874CBAB973D5BC4A4592C3 Ref B: OSA221030116037 Ref C: 2024-09-29T18:06:06Z' status: code: 200 message: OK - request: - body: '{"location": "eastus", "properties": {"disableLocalAuth": true, "geoDataReplication": - {"locations": [{"locationName": "eastus", "roleType": "Primary"}], "maxReplicationLagDurationInSeconds": - 0}, "minimumTlsVersion": "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": - "Enabled", "zoneRedundant": false}, "sku": {"capacity": 4, "name": "Premium", - "tier": "Premium"}, "tags": {"tag1": "value1", "tag2": "value2"}}' + body: '{"location": "australiaeast", "properties": {"disableLocalAuth": false, + "geoDataReplication": {"locations": [{"clusterArmId": "", "locationName": "australiaeast", + "roleType": "Primary"}, {"clusterArmId": "", "locationName": "taiwannorth", + "roleType": "Secondary"}], "maxReplicationLagDurationInSeconds": 300}, "minimumTlsVersion": + "1.2", "premiumMessagingPartitions": 1, "publicNetworkAccess": "Enabled", "zoneRedundant": + false}, "sku": {"capacity": 1, "name": "Premium", "tier": "Premium"}, "tags": + {}}' headers: Accept: - application/json @@ -807,27 +2026,27 @@ interactions: Connection: - keep-alive Content-Length: - - '422' + - '503' Content-Type: - application/json ParameterSetName: - - --name --resource-group --disable-local-auth + - --resource-group --name --max-replication-lag-duration-in-seconds User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:43.2644396Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:06:10Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '917' + - '1008' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:44:47 GMT + - Sun, 29 Sep 2024 18:06:14 GMT expires: - '-1' pragma: @@ -839,13 +2058,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 33dc92cb-9955-4cec-b976-8fb6012a4a51 + - 9e63296c-5a6c-47f3-a51c-bec1e84c28da x-ms-messaging-routing-id: - - EASTUS|EASTUS|G12|2024-09-29T06:44:43 + - AUSTRALIAEAST|AUSTRALIAEAST|G7|2024-09-29T18:06:10 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-msedge-ref: - - 'Ref A: 8BD790E6E4F44F3DABF6D7B9AA833E83 Ref B: OSA221030116047 Ref C: 2024-09-29T06:44:40Z' + - 'Ref A: 1CB0F8BA59384ADE880F32091E53CF59 Ref B: OSA221030116037 Ref C: 2024-09-29T18:06:07Z' status: code: 200 message: OK @@ -861,23 +2080,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --disable-local-auth + - --resource-group --name --max-replication-lag-duration-in-seconds User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:44:43.2644396Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:06:10Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '917' + - '1008' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:44:48 GMT + - Sun, 29 Sep 2024 18:06:15 GMT expires: - '-1' pragma: @@ -889,11 +2108,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - cc3751e8-9b97-497e-9143-9c3c01a36d15 + - c2f22133-9260-47c6-807b-ab98b9dfc5af x-ms-messaging-routing-id: - - EASTUS|EASTUS|G1|2024-09-29T06:44:49 + - AUSTRALIAEAST|AUSTRALIAEAST|G13|2024-09-29T18:06:16 x-msedge-ref: - - 'Ref A: 6A9ADA5410674549905C11788B32C7AF Ref B: OSA221030116047 Ref C: 2024-09-29T06:44:47Z' + - 'Ref A: CCBEB2D7A9F8407D8EA5076295B714CF Ref B: OSA221030116037 Ref C: 2024-09-29T18:06:15Z' status: code: 200 message: OK @@ -909,23 +2128,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - --name --resource-group --disable-local-auth + - --resource-group --name --max-replication-lag-duration-in-seconds User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:45:00.1085662Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:06:10Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '916' + - '1008' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:45:20 GMT + - Sun, 29 Sep 2024 18:06:46 GMT expires: - '-1' pragma: @@ -937,53 +2156,43 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 07cc64fa-9285-46fe-8a92-0bdd4b9b34b4 + - 08c7a360-cc7b-4bc9-9781-3d417e200caf x-ms-messaging-routing-id: - - EASTUS|EASTUS|G8|2024-09-29T06:45:20 + - AUSTRALIAEAST|AUSTRALIAEAST|G4|2024-09-29T18:06:46 x-msedge-ref: - - 'Ref A: 039CD5F1393C4CE7AC0F662198C8FA10 Ref B: OSA221030116047 Ref C: 2024-09-29T06:45:19Z' + - 'Ref A: A448AB36621A49EEAA5DCC67FC223AE3 Ref B: OSA221030116037 Ref C: 2024-09-29T18:06:46Z' status: code: 200 message: OK - request: - body: '{"identity": {"type": "SystemAssigned, UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005": - {}, "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006": - {}}}, "location": "eastus", "properties": {"premiumMessagingPartitions": 2, - "zoneRedundant": true}, "sku": {"capacity": 2, "name": "Premium", "tier": "Premium"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive - Content-Length: - - '598' - Content-Type: - - application/json ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --resource-group --name --max-replication-lag-duration-in-seconds User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Updating","status":"Updating","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:06:10Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1627' + - '1008' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:45:28 GMT + - Sun, 29 Sep 2024 18:07:16 GMT expires: - '-1' pragma: @@ -995,16 +2204,14 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - e0f75a1c-b79f-4983-a781-c16745f6a94f + - e6bc6db3-f06d-4c1e-a638-06772db36c5e x-ms-messaging-routing-id: - - EASTUS|EASTUS|G11|2024-09-29T06:45:28 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - AUSTRALIAEAST|AUSTRALIAEAST|G0|2024-09-29T18:07:17 x-msedge-ref: - - 'Ref A: 5839A90E4ECB428C8E63304678A71EF6 Ref B: TYO201151006062 Ref C: 2024-09-29T06:45:20Z' + - 'Ref A: 0660D74C1CC14F63BD037C755FCECA5A Ref B: OSA221030116037 Ref C: 2024-09-29T18:07:17Z' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1013,29 +2220,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace update Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --resource-group --name --max-replication-lag-duration-in-seconds User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005?api-version=2023-01-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005","name":"sb-nscli3000005","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"australiaeast","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli3000005","serviceBusEndpoint":"https://sb-nscli3000005.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T17:58:08.0313009Z","updatedAt":"2024-09-29T18:07:30Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}}' headers: cache-control: - no-cache content-length: - - '1627' + - '1007' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:45:29 GMT + - Sun, 29 Sep 2024 18:07:47 GMT expires: - '-1' pragma: @@ -1047,14 +2252,68 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 5a613e09-ff8e-4fe8-8854-e3089efb216d + - 2280c440-1e06-4164-bebe-60c1a0bab709 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G10|2024-09-29T06:45:29 + - AUSTRALIAEAST|AUSTRALIAEAST|G7|2024-09-29T18:07:48 x-msedge-ref: - - 'Ref A: 90CC045576D745798ED8D8E7556B16CE Ref B: TYO201151006062 Ref C: 2024-09-29T06:45:28Z' + - 'Ref A: 1742E2CD75984CBAADF23DE3C1F57D57 Ref B: OSA221030116037 Ref C: 2024-09-29T18:07:47Z' status: code: 200 message: OK +- request: + body: '{"properties": {"primaryLocation": "TaiwanNorth"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - servicebus namespace failover + Connection: + - keep-alive + Content-Length: + - '50' + Content-Type: + - application/json + ParameterSetName: + - --name --resource-group --primary-location + User-Agent: + - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli3000005/failover?api-version=2023-01-01-preview + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/australiaeast/namespaceOperationResults/4a2e3fda-963d-4071-8cf0-39138b4afb91?isAsyncHeader=true&resourceName=sb-nscli3000005&resourceType=namespace&api-version=2023-01-01-preview&operationType=Active&t=638632306717723878&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=H08_Vw21ZEpkgjwf5S9rRIFHYI1HKbqhV0lvBqAi5EUVOCBHb9DjPI14-PxXR9EcUIwM7c0fzkxyFR64rq5AM9RDDeE-4J9bIzTNaklrbRvmSLaD06gQaq0GZjw2bSFwPRum2Bs3irL_XAcfpuhAO5VaCFZapgCPTJPPZZNimJETNXqFNlszXDKc_gbMEJHNJHi2KZMNqlnpZTS_zLfC8FjN-J3cMWiW4kF9ClpG0ujTSgGA_M4oexFoDVyQpk1OvltThXEb7VYi4FF3A_F_k6kFtqE9B2sWMrcnx7lqMKoWagVLnzT3ujWPl8RGOoZdGhImra8qqcm_qEaDilhTCw&h=PYjdzgoe-klA0ba0Hx7yzDP5wPWGSm1-hQpzTQMYjFA + cache-control: + - no-cache + content-length: + - '0' + date: + - Sun, 29 Sep 2024 18:17:51 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-cache: + - CONFIG_NOCACHE + x-content-type-options: + - nosniff + x-ms-messaging-activity-id: + - 00000001-0000-0000-0002-000000006364 + x-ms-messaging-routing-id: + - AUSTRALIAEAST|AUSTRALIAEAST|G5|2024-09-29T18:17:51 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-msedge-ref: + - 'Ref A: 8791C672D3A84CBE8204A6960EF707A8 Ref B: TYO201151005054 Ref C: 2024-09-29T18:17:49Z' + status: + code: 202 + message: Accepted - request: body: null headers: @@ -1063,29 +2322,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace failover Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --primary-location User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/australiaeast/namespaceOperationResults/4a2e3fda-963d-4071-8cf0-39138b4afb91?isAsyncHeader=true&resourceName=sb-nscli3000005&resourceType=namespace&api-version=2023-01-01-preview&operationType=Active&t=638632306717723878&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=H08_Vw21ZEpkgjwf5S9rRIFHYI1HKbqhV0lvBqAi5EUVOCBHb9DjPI14-PxXR9EcUIwM7c0fzkxyFR64rq5AM9RDDeE-4J9bIzTNaklrbRvmSLaD06gQaq0GZjw2bSFwPRum2Bs3irL_XAcfpuhAO5VaCFZapgCPTJPPZZNimJETNXqFNlszXDKc_gbMEJHNJHi2KZMNqlnpZTS_zLfC8FjN-J3cMWiW4kF9ClpG0ujTSgGA_M4oexFoDVyQpk1OvltThXEb7VYi4FF3A_F_k6kFtqE9B2sWMrcnx7lqMKoWagVLnzT3ujWPl8RGOoZdGhImra8qqcm_qEaDilhTCw&h=PYjdzgoe-klA0ba0Hx7yzDP5wPWGSm1-hQpzTQMYjFA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + string: '{"name":"4a2e3fda-963d-4071-8cf0-39138b4afb91","status":"Running"}' headers: cache-control: - no-cache content-length: - - '1627' + - '66' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:46:00 GMT + - Sun, 29 Sep 2024 18:17:52 GMT expires: - '-1' pragma: @@ -1097,11 +2354,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 447f8261-2faf-48bf-a99a-fae50ac30a7d + - f61d2275-12ff-42ce-bcb2-d3e86e368462 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G6|2024-09-29T06:46:00 + - AUSTRALIAEAST|AUSTRALIAEAST|G9|2024-09-29T18:17:52 x-msedge-ref: - - 'Ref A: EEA78EC394A34D7B81B7A9D2451F8F9A Ref B: TYO201151006062 Ref C: 2024-09-29T06:45:59Z' + - 'Ref A: AB2CC13A3FD54BEC8855502EF21C6917 Ref B: TYO201151005054 Ref C: 2024-09-29T18:17:51Z' status: code: 200 message: OK @@ -1113,29 +2370,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace failover Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --primary-location User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/australiaeast/namespaceOperationResults/4a2e3fda-963d-4071-8cf0-39138b4afb91?isAsyncHeader=true&resourceName=sb-nscli3000005&resourceType=namespace&api-version=2023-01-01-preview&operationType=Active&t=638632306717723878&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=H08_Vw21ZEpkgjwf5S9rRIFHYI1HKbqhV0lvBqAi5EUVOCBHb9DjPI14-PxXR9EcUIwM7c0fzkxyFR64rq5AM9RDDeE-4J9bIzTNaklrbRvmSLaD06gQaq0GZjw2bSFwPRum2Bs3irL_XAcfpuhAO5VaCFZapgCPTJPPZZNimJETNXqFNlszXDKc_gbMEJHNJHi2KZMNqlnpZTS_zLfC8FjN-J3cMWiW4kF9ClpG0ujTSgGA_M4oexFoDVyQpk1OvltThXEb7VYi4FF3A_F_k6kFtqE9B2sWMrcnx7lqMKoWagVLnzT3ujWPl8RGOoZdGhImra8qqcm_qEaDilhTCw&h=PYjdzgoe-klA0ba0Hx7yzDP5wPWGSm1-hQpzTQMYjFA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + string: '{"name":"4a2e3fda-963d-4071-8cf0-39138b4afb91","status":"Running"}' headers: cache-control: - no-cache content-length: - - '1627' + - '66' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:46:30 GMT + - Sun, 29 Sep 2024 18:18:22 GMT expires: - '-1' pragma: @@ -1147,11 +2402,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - b95f1e16-1f8c-4f77-b6e1-b669b7dea3bc + - 21bb25da-b033-4561-85e5-e18338311c89 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G2|2024-09-29T06:46:31 + - AUSTRALIAEAST|AUSTRALIAEAST|G11|2024-09-29T18:18:23 x-msedge-ref: - - 'Ref A: B6CFD58808544D5F91E866C6A8C575FD Ref B: TYO201151006062 Ref C: 2024-09-29T06:46:30Z' + - 'Ref A: 2BBF0AE559C14C30953E28A552F5155B Ref B: TYO201151005054 Ref C: 2024-09-29T18:18:22Z' status: code: 200 message: OK @@ -1163,29 +2418,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace failover Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --primary-location User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/australiaeast/namespaceOperationResults/4a2e3fda-963d-4071-8cf0-39138b4afb91?isAsyncHeader=true&resourceName=sb-nscli3000005&resourceType=namespace&api-version=2023-01-01-preview&operationType=Active&t=638632306717723878&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=H08_Vw21ZEpkgjwf5S9rRIFHYI1HKbqhV0lvBqAi5EUVOCBHb9DjPI14-PxXR9EcUIwM7c0fzkxyFR64rq5AM9RDDeE-4J9bIzTNaklrbRvmSLaD06gQaq0GZjw2bSFwPRum2Bs3irL_XAcfpuhAO5VaCFZapgCPTJPPZZNimJETNXqFNlszXDKc_gbMEJHNJHi2KZMNqlnpZTS_zLfC8FjN-J3cMWiW4kF9ClpG0ujTSgGA_M4oexFoDVyQpk1OvltThXEb7VYi4FF3A_F_k6kFtqE9B2sWMrcnx7lqMKoWagVLnzT3ujWPl8RGOoZdGhImra8qqcm_qEaDilhTCw&h=PYjdzgoe-klA0ba0Hx7yzDP5wPWGSm1-hQpzTQMYjFA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"InBuild"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Creating","status":"Creating","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:45:27.937444Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + string: '{"name":"4a2e3fda-963d-4071-8cf0-39138b4afb91","status":"Running"}' headers: cache-control: - no-cache content-length: - - '1627' + - '66' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:47:01 GMT + - Sun, 29 Sep 2024 18:18:53 GMT expires: - '-1' pragma: @@ -1197,11 +2450,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 509b20b5-1c49-40fe-adc1-00aa08529222 + - 697fc16d-0314-46df-b031-497fb4e10f8e x-ms-messaging-routing-id: - - EASTUS|EASTUS|G3|2024-09-29T06:47:01 + - AUSTRALIAEAST|AUSTRALIAEAST|G1|2024-09-29T18:18:53 x-msedge-ref: - - 'Ref A: 283796C3B7654EA5B43C1C7BA075C945 Ref B: TYO201151006062 Ref C: 2024-09-29T06:47:01Z' + - 'Ref A: 47A980A9B340418984527F389B86E409 Ref B: TYO201151005054 Ref C: 2024-09-29T18:18:53Z' status: code: 200 message: OK @@ -1213,29 +2466,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace create + - servicebus namespace failover Connection: - keep-alive ParameterSetName: - - --resource-group --name --location --sku --mi-system-assigned --mi-user-assigned - --capacity --zone-redundant --premium-messaging-partitions + - --name --resource-group --primary-location User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/australiaeast/namespaceOperationResults/4a2e3fda-963d-4071-8cf0-39138b4afb91?isAsyncHeader=true&resourceName=sb-nscli3000005&resourceType=namespace&api-version=2023-01-01-preview&operationType=Active&t=638632306717723878&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=H08_Vw21ZEpkgjwf5S9rRIFHYI1HKbqhV0lvBqAi5EUVOCBHb9DjPI14-PxXR9EcUIwM7c0fzkxyFR64rq5AM9RDDeE-4J9bIzTNaklrbRvmSLaD06gQaq0GZjw2bSFwPRum2Bs3irL_XAcfpuhAO5VaCFZapgCPTJPPZZNimJETNXqFNlszXDKc_gbMEJHNJHi2KZMNqlnpZTS_zLfC8FjN-J3cMWiW4kF9ClpG0ujTSgGA_M4oexFoDVyQpk1OvltThXEb7VYi4FF3A_F_k6kFtqE9B2sWMrcnx7lqMKoWagVLnzT3ujWPl8RGOoZdGhImra8qqcm_qEaDilhTCw&h=PYjdzgoe-klA0ba0Hx7yzDP5wPWGSm1-hQpzTQMYjFA response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:47:10.8619607Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}}' + string: '{"name":"4a2e3fda-963d-4071-8cf0-39138b4afb91","status":"Running"}' headers: cache-control: - no-cache content-length: - - '1625' + - '66' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:47:32 GMT + - Sun, 29 Sep 2024 18:19:24 GMT expires: - '-1' pragma: @@ -1247,11 +2498,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 5b309ed2-2738-43d2-a8f8-34178fafff80 + - cc9a8105-a2db-4c20-bf92-24352d40d4ec x-ms-messaging-routing-id: - - EASTUS|EASTUS|G12|2024-09-29T06:47:32 + - AUSTRALIAEAST|AUSTRALIAEAST|G4|2024-09-29T18:19:24 x-msedge-ref: - - 'Ref A: FCF381F7011142129CDBF978F4ED7CDB Ref B: TYO201151006062 Ref C: 2024-09-29T06:47:32Z' + - 'Ref A: 14DD53703EBC443BACEFB7F7CFD25C41 Ref B: TYO201151005054 Ref C: 2024-09-29T18:19:23Z' status: code: 200 message: OK @@ -1259,32 +2510,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace list + - servicebus namespace failover Connection: - keep-alive ParameterSetName: - - --resource-group + - --name --resource-group --primary-location User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/australiaeast/namespaceOperationResults/4a2e3fda-963d-4071-8cf0-39138b4afb91?isAsyncHeader=true&resourceName=sb-nscli3000005&resourceType=namespace&api-version=2023-01-01-preview&operationType=Active&t=638632306717723878&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=H08_Vw21ZEpkgjwf5S9rRIFHYI1HKbqhV0lvBqAi5EUVOCBHb9DjPI14-PxXR9EcUIwM7c0fzkxyFR64rq5AM9RDDeE-4J9bIzTNaklrbRvmSLaD06gQaq0GZjw2bSFwPRum2Bs3irL_XAcfpuhAO5VaCFZapgCPTJPPZZNimJETNXqFNlszXDKc_gbMEJHNJHi2KZMNqlnpZTS_zLfC8FjN-J3cMWiW4kF9ClpG0ujTSgGA_M4oexFoDVyQpk1OvltThXEb7VYi4FF3A_F_k6kFtqE9B2sWMrcnx7lqMKoWagVLnzT3ujWPl8RGOoZdGhImra8qqcm_qEaDilhTCw&h=PYjdzgoe-klA0ba0Hx7yzDP5wPWGSm1-hQpzTQMYjFA response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:47:10.8619607Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:24.5492204Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:45:00.1085662Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}}]}' + string: '{"name":"4a2e3fda-963d-4071-8cf0-39138b4afb91","status":"Running"}' headers: cache-control: - no-cache content-length: - - '3456' + - '66' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:47:33 GMT + - Sun, 29 Sep 2024 18:19:54 GMT expires: - '-1' pragma: @@ -1296,11 +2546,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - da506918-8089-4f40-b156-83de46f17642 + - 334b5eff-9181-4d2a-b2b6-65ec26b70670 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G11|2024-09-29T06:47:34 + - AUSTRALIAEAST|AUSTRALIAEAST|G1|2024-09-29T18:19:55 x-msedge-ref: - - 'Ref A: 2406175BB08A45598A2088CC638E7B8B Ref B: TYO201151003060 Ref C: 2024-09-29T06:47:33Z' + - 'Ref A: CD8AA11512824AC593CCD581F4FD88E1 Ref B: TYO201151005054 Ref C: 2024-09-29T18:19:54Z' status: code: 200 message: OK @@ -1308,57 +2558,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - servicebus namespace list + - servicebus namespace failover Connection: - keep-alive + ParameterSetName: + - --name --resource-group --primary-location User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/namespaces?api-version=2023-01-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/australiaeast/namespaceOperationResults/4a2e3fda-963d-4071-8cf0-39138b4afb91?isAsyncHeader=true&resourceName=sb-nscli3000005&resourceType=namespace&api-version=2023-01-01-preview&operationType=Active&t=638632306717723878&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=H08_Vw21ZEpkgjwf5S9rRIFHYI1HKbqhV0lvBqAi5EUVOCBHb9DjPI14-PxXR9EcUIwM7c0fzkxyFR64rq5AM9RDDeE-4J9bIzTNaklrbRvmSLaD06gQaq0GZjw2bSFwPRum2Bs3irL_XAcfpuhAO5VaCFZapgCPTJPPZZNimJETNXqFNlszXDKc_gbMEJHNJHi2KZMNqlnpZTS_zLfC8FjN-J3cMWiW4kF9ClpG0ujTSgGA_M4oexFoDVyQpk1OvltThXEb7VYi4FF3A_F_k6kFtqE9B2sWMrcnx7lqMKoWagVLnzT3ujWPl8RGOoZdGhImra8qqcm_qEaDilhTCw&h=PYjdzgoe-klA0ba0Hx7yzDP5wPWGSm1-hQpzTQMYjFA response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-cbr-sy-1","name":"anqyan-cbr-sy-1","type":"Microsoft.ServiceBus/Namespaces","location":"australiacentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiacentral","roleType":"Secondary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-cbr-sy-1","serviceBusEndpoint":"https://anqyan-cbr-sy-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-27T20:33:11.8291805Z","updatedAt":"2024-08-27T21:12:21Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-geo-replication-australia","name":"sb-eldert-pg-geo-replication-australia","type":"Microsoft.ServiceBus/Namespaces","location":"australiacentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-geo-replication-australia","serviceBusEndpoint":"https://sb-eldert-pg-geo-replication-australia.servicebus.windows.net:443/","provisioningState":"Failed","status":"Failed","createdAt":"2024-09-06T02:46:08.7528321Z","updatedAt":"2024-09-29T06:44:24Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testingSBTemplate","name":"testingSBTemplate","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testingsbtemplate","serviceBusEndpoint":"https://sbmigratepremium2.servicebus.windows.net:443/","alternateName":"sbmigratepremium2","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:21.3305984Z","updatedAt":"2024-08-06T08:55:21Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7033","name":"sdk-Namespace-7033","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7033","serviceBusEndpoint":"https://sdk-Namespace-7033.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:21.744817Z","updatedAt":"2024-08-06T08:55:21Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8973","name":"sdk-Namespace-8973","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8973","serviceBusEndpoint":"https://sdk-Namespace-8973.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:22.5747981Z","updatedAt":"2024-08-06T08:55:22Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSV2","name":"testPSV2","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpsv2","serviceBusEndpoint":"https://testPSV2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:22.9098135Z","updatedAt":"2024-08-06T08:55:22Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestingSDK20220101/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5025","name":"sdk-Namespace-5025","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5025","serviceBusEndpoint":"https://sdk-Namespace-5025.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:23.0746985Z","updatedAt":"2024-08-06T08:55:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SDK-ServiceBus-7854/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-8751","name":"sdk-Namespace-8751","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-8751","serviceBusEndpoint":"https://sdk-Namespace-8751.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T08:55:23.3363678Z","updatedAt":"2024-08-06T08:55:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-sy-3","name":"anqyan-sy-3","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"centraluseuap","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-sy-3","serviceBusEndpoint":"https://anqyan-sy-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-19T18:39:09.8117877Z","updatedAt":"2024-08-19T18:43:33Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-sy-yt-1","name":"anqyan-sy-yt-1","type":"Microsoft.ServiceBus/Namespaces","location":"australiaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"australiaeast","roleType":"Secondary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-sy-yt-1","serviceBusEndpoint":"https://anqyan-sy-yt-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-25T23:47:07.1336143Z","updatedAt":"2024-08-26T00:26:59Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/klam-rg/providers/Microsoft.ServiceBus/namespaces/klam-test-deleteme","name":"klam-test-deleteme","type":"Microsoft.ServiceBus/Namespaces","location":"brazilsouth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"brazilsouth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:klam-test-deleteme","serviceBusEndpoint":"https://klam-test-deleteme.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-12-12T18:00:25.5916408Z","updatedAt":"2022-12-12T18:01:10.0911441Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbcc","name":"test-davadhani-sbcc","type":"Microsoft.ServiceBus/Namespaces","location":"canadacentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadacentral","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadaeast","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbcc","serviceBusEndpoint":"https://test-davadhani-sbcc.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-08T09:48:13.0387393Z","updatedAt":"2024-08-21T06:07:46Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbce","name":"test-davadhani-sbce","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Secondary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbce","serviceBusEndpoint":"https://test-davadhani-sbce.servicebus.windows.net:443/","provisioningState":"Failed","status":"Failed","createdAt":"2024-08-08T09:48:57.5477841Z","updatedAt":"2024-09-29T06:43:07Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbcc2","name":"test-davadhani-sbcc2","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Secondary","replicaState":"InBuild"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbcc2","serviceBusEndpoint":"https://test-davadhani-sbcc2.servicebus.windows.net:443/","provisioningState":"Failed","status":"Failed","createdAt":"2024-08-09T07:17:00.1702511Z","updatedAt":"2024-09-29T06:43:07Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-yq-sy-1","name":"anqyan-yq-sy-1","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"australiaeast","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-yq-sy-1","serviceBusEndpoint":"https://anqyan-yq-sy-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-21T18:49:47.8413036Z","updatedAt":"2024-08-21T18:54:22Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test-davadhani-sbce2","name":"test-davadhani-sbce2","type":"Microsoft.ServiceBus/Namespaces","location":"canadaeast","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"canadaeast","roleType":"Primary","replicaState":"Ready"},{"locationName":"canadacentral","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test-davadhani-sbce2","serviceBusEndpoint":"https://test-davadhani-sbce2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-04T10:59:23.9371277Z","updatedAt":"2024-09-04T11:03:25Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusPremiumNonAzCreateAfter","name":"NamespaceServiceBusPremiumNonAzCreateAfter","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebuspremiumnonazcreateafter","serviceBusEndpoint":"https://NamespaceServiceBusPremiumNonAzCreateAfter.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:06.8035159Z","updatedAt":"2024-09-23T08:20:06Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusStandardNonAzCreateAfter","name":"NamespaceServiceBusStandardNonAzCreateAfter","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebusstandardnonazcreateafter","serviceBusEndpoint":"https://NamespaceServiceBusStandardNonAzCreateAfter.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:06.8291674Z","updatedAt":"2024-09-23T08:20:06Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusPremiumNonAzCreate","name":"NamespaceServiceBusPremiumNonAzCreate","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebuspremiumnonazcreate","serviceBusEndpoint":"https://NamespaceServiceBusPremiumNonAzCreate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:07.1416766Z","updatedAt":"2024-09-23T08:20:07Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouzazoneredundantbydetaulttest/providers/Microsoft.ServiceBus/namespaces/NamespaceServiceBusStandardNonAzCreate","name":"NamespaceServiceBusStandardNonAzCreate","type":"Microsoft.ServiceBus/Namespaces","location":"centralindia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralindia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespaceservicebusstandardnonazcreate","serviceBusEndpoint":"https://NamespaceServiceBusStandardNonAzCreate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:07.2153221Z","updatedAt":"2024-09-23T08:20:07Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-jms-geo-cus","name":"shsama-jms-geo-cus","type":"Microsoft.ServiceBus/Namespaces","location":"centralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-jms-geo-cus","serviceBusEndpoint":"https://shsama-jms-geo-cus.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:50:14.2539704Z","updatedAt":"2024-09-26T07:50:14Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkwrj55aatxlgxucsba6igeidap7hqov64fz6i6fhkxg2q66tsychlm5im/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclidurp","name":"servicebus-nsclidurp","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclidurp","serviceBusEndpoint":"https://servicebus-nsclidurp.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T01:13:23.2939303Z","updatedAt":"2022-07-01T18:31:51.371547Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsurg712/providers/Microsoft.ServiceBus/namespaces/testvinsunseastusstd1","name":"testvinsunseastusstd1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvinsunseastusstd1","serviceBusEndpoint":"https://testvinsunseastusstd1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-07-12T23:29:32.611628Z","updatedAt":"2023-07-12T23:30:16.5962022Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vinaygupta-test/providers/Microsoft.ServiceBus/namespaces/vinayguptatest","name":"vinayguptatest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vinayguptatest","serviceBusEndpoint":"https://vinayguptatest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-05T22:38:27.4596584Z","updatedAt":"2024-08-05T22:38:30.3503384Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d24","name":"namespace9f015d24","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d24","serviceBusEndpoint":"https://namespace9f015d24.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:33:24.562823Z","updatedAt":"2024-09-29T06:33:27.6410778Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/dsa-message-test","name":"dsa-message-test","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:dsa-message-test","serviceBusEndpoint":"https://dsa-message-test.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-06-01T23:06:41.351463Z","updatedAt":"2023-06-01T23:07:26.5942034Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxeussbpremns-2","name":"kevxeussbpremns-2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxeussbpremns-2","serviceBusEndpoint":"https://kevxeussbpremns-2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T18:15:27.558986Z","updatedAt":"2024-09-27T18:21:10.4409199Z"},"identity":{"principalId":"a73b1b17-4fa2-40fb-b0d9-be7190b254f3","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kevx-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kevxmi-wcus":{"clientId":"d07b99be-8faf-4798-b40d-343d7ef97ee6","principalId":"54518d54-4fd1-4b2e-962a-5e800f38f33a"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/woseibonsu-pm-playground/providers/Microsoft.ServiceBus/namespaces/wo-standard-migration-namespace","name":"wo-standard-migration-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:wo-standard-migration-namespace","serviceBusEndpoint":"https://wo-standard-namespace-finished-migration.servicebus.windows.net:443/","alternateName":"wo-standard-namespace-finished-migration","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-31T22:43:44.5125182Z","updatedAt":"2023-05-31T23:18:14.6185172Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscliq3wv","name":"servicebus-nscliq3wv","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscliq3wv","serviceBusEndpoint":"https://servicebus-nscliq3wv.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:08:13.3286527Z","updatedAt":"2024-09-29T04:09:12.5686577Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkb6dybi7i77qadmwp3x7qn4fsvzex5svqgkd23ljbqqekhpuqpewxl5ox/providers/Microsoft.ServiceBus/namespaces/servicebus-nsclimdvj","name":"servicebus-nsclimdvj","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nsclimdvj","serviceBusEndpoint":"https://servicebus-nsclimdvj.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-28T19:41:42.5700344Z","updatedAt":"2022-07-01T20:13:49.7569297Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsPMmintls","name":"jagsPMmintls","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagspmmintls","serviceBusEndpoint":"https://jagsPMmintls.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-28T19:42:35.786006Z","updatedAt":"2022-07-01T20:16:02.7964931Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli2000004","name":"sb-nscli2000004","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli2000004","serviceBusEndpoint":"https://sb-nscli2000004.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:45:27.937444Z","updatedAt":"2024-09-29T06:47:10.8619607Z"},"identity":{"principalId":"879d1c1e-edfc-471b-b6d2-ba63287f5e85","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity1000005":{"clientId":"cc274dd1-a6b1-483e-bb16-2a0be7cf2110","principalId":"0615a69e-35e2-45fe-a4ec-83ea1efaaa6b"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_sb_namespace000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sb-identity2000006":{"clientId":"01c9149a-17d8-4cff-ae87-deba45abc6aa","principalId":"2e1b03de-7af6-4528-99aa-07441aa0de3f"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d2","name":"namespace9f015d2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d2","serviceBusEndpoint":"https://namespace9f015d2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:27:09.9208018Z","updatedAt":"2024-09-29T06:27:13.1555134Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxsbns-1","name":"kevxsbns-1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxsbns-1","serviceBusEndpoint":"https://kevxsbns-1-alt-1.servicebus.windows.net:443/","alternateName":"kevxsbns-1-alt-1","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-24T00:24:32.6494816Z","updatedAt":"2024-09-24T00:35:45.7526013Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jbj-sb-testing/providers/Microsoft.ServiceBus/namespaces/jbj-sb-none","name":"jbj-sb-none","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jbj-sb-none","serviceBusEndpoint":"https://jbj-sb-none.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-04-20T00:02:37.5794792Z","updatedAt":"2023-04-20T00:03:21.1901226Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli000002","name":"sb-nscli000002","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli000002","serviceBusEndpoint":"https://sb-nscli000002.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:20.5804285Z","updatedAt":"2024-09-29T06:42:24.5492204Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/nitinnair/providers/Microsoft.ServiceBus/namespaces/nitinTest","name":"nitinTest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:nitintest","serviceBusEndpoint":"https://nitinTest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-12T00:37:45.7428123Z","updatedAt":"2024-06-12T00:37:48.5709927Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration/providers/Microsoft.ServiceBus/namespaces/servicebus-nscliamdo","name":"servicebus-nscliamdo","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscliamdo","serviceBusEndpoint":"https://servicebus-nscliamdo.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-28T19:41:22.4600773Z","updatedAt":"2024-09-28T19:42:35.5878274Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsurg712/providers/Microsoft.ServiceBus/namespaces/testvinsunseastusstd2","name":"testvinsunseastusstd2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvinsunseastusstd2","serviceBusEndpoint":"https://testvinsunseastusstd2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-07-13T00:05:21.8158731Z","updatedAt":"2023-07-13T00:06:04.5839459Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/cmktest","name":"cmktest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"cmkkey","keyVaultUri":"https://anwaykveus.vault.azure.net"}],"requireInfrastructureEncryption":false},"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:cmktest","serviceBusEndpoint":"https://cmktest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-04-04T20:43:51.2755663Z","updatedAt":"2024-04-18T20:47:31.4544353Z"},"identity":{"principalId":"73fe4c96-eb6a-4dc1-8f77-69243c4721a4","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/primaryNSut8xa0","name":"primaryNSut8xa0","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsut8xa0","serviceBusEndpoint":"https://postMigrationulz9q8.servicebus.windows.net:443/","alternateName":"postMigrationulz9q8","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-10T18:33:19.854114Z","updatedAt":"2024-02-16T01:27:22.8129171Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/ContosoSBusNS1","name":"ContosoSBusNS1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:contososbusns1","serviceBusEndpoint":"https://ContosoSBusNS1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-14T23:47:17.3402338Z","updatedAt":"2023-12-14T23:48:01.0284606Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-sb-basic","name":"shsama-sb-basic","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-sb-basic","serviceBusEndpoint":"https://shsama-sb-basic.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-07-14T17:21:51.2293166Z","updatedAt":"2023-07-14T17:22:33.9389723Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jakeschiller-synthetics/providers/Microsoft.ServiceBus/namespaces/synthetics-sb-ns","name":"synthetics-sb-ns","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"jms-for":"cache"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:synthetics-sb-ns","serviceBusEndpoint":"https://synthetics-sb-ns.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-29T12:40:40.3481843Z","updatedAt":"2022-07-08T18:29:10.8080802Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/primaryNSfjarv9","name":"primaryNSfjarv9","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsfjarv9","serviceBusEndpoint":"https://postMigration16it5x.servicebus.windows.net:443/","alternateName":"postMigration16it5x","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-13T06:16:32.4273613Z","updatedAt":"2024-02-16T01:27:22.8129171Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxsbpremns-1","name":"kevxsbpremns-1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxsbpremns-1","serviceBusEndpoint":"https://kevxsbpremns-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-24T00:26:56.4030811Z","updatedAt":"2024-09-24T00:35:47.6276401Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarri-cmk/providers/Microsoft.ServiceBus/namespaces/skarrisubtest-s","name":"skarrisubtest-s","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarrisubtest-s","serviceBusEndpoint":"https://skarrisubtest-s.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-10T22:31:44.1588201Z","updatedAt":"2024-06-10T22:34:37.0730266Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-vinaygupta/providers/Microsoft.ServiceBus/namespaces/mytest-vinaygupta","name":"mytest-vinaygupta","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:mytest-vinaygupta","serviceBusEndpoint":"https://mytest-vinaygupta.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-06T00:41:32.2656913Z","updatedAt":"2024-08-06T00:41:35.8126567Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SB-Intern2021ResourceGroup/providers/Microsoft.ServiceBus/namespaces/sophia-explore","name":"sophia-explore","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sophia-explore","serviceBusEndpoint":"https://sophia-explore.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-29T23:50:17.3775749Z","updatedAt":"2022-07-01T23:40:50.7777225Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxeussbpremns-3","name":"kevxeussbpremns-3","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxeussbpremns-3","serviceBusEndpoint":"https://kevxeussbpremns-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T21:31:40.644525Z","updatedAt":"2024-09-27T18:16:11.5702593Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/pablorod_new/providers/Microsoft.ServiceBus/namespaces/pablorod-suscription-rules-v2","name":"pablorod-suscription-rules-v2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:pablorod-suscription-rules-v2","serviceBusEndpoint":"https://pablorod-suscription-rules-v2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-12-28T21:24:03.9050498Z","updatedAt":"2022-12-28T21:24:47.2023828Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardregressiontest","name":"standardregressiontest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:standardregressiontest","serviceBusEndpoint":"https://standardregressiontest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-30T01:24:56.3582525Z","updatedAt":"2022-07-02T01:24:37.2031797Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f015d2xz","name":"namespace9f015d2xz","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value2","tag2":"tah3"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f015d2xz","serviceBusEndpoint":"https://namespace9f015d2xz.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:32:05.7125853Z","updatedAt":"2024-09-29T06:32:08.5720951Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/primaryNSn6fmhu","name":"primaryNSn6fmhu","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primarynsn6fmhu","serviceBusEndpoint":"https://postMigrationqt7hcd.servicebus.windows.net:443/","alternateName":"postMigrationqt7hcd","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-22T17:41:18.5773436Z","updatedAt":"2024-02-16T01:28:23.7255974Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_eh_networkteenbwgqgyyl2y6iy7uyajvcvzeffcawclhjplzvgypwqep53ptcz56k/providers/Microsoft.ServiceBus/namespaces/servicebus-nscligk4i","name":"servicebus-nscligk4i","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"{tag1":"value1}"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-nscligk4i","serviceBusEndpoint":"https://servicebus-nscligk4i.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-29T12:39:57.4290855Z","updatedAt":"2022-07-01T21:58:43.5950617Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vinsutestmigrationrg95/providers/Microsoft.ServiceBus/namespaces/vinsutestmigrationstd","name":"vinsutestmigrationstd","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vinsutestmigrationstd","serviceBusEndpoint":"https://vinsutestmigrationstdprev.servicebus.windows.net:443/","alternateName":"vinsutestmigrationstdprev","provisioningState":"Succeeded","status":"Active","createdAt":"2023-09-05T22:18:40.8601279Z","updatedAt":"2023-09-05T22:45:23.6464104Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/primaryNS6wbgdx","name":"primaryNS6wbgdx","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:primaryns6wbgdx","serviceBusEndpoint":"https://postMigrationajsixu.servicebus.windows.net:443/","alternateName":"postMigrationajsixu","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-23T12:03:35.2157047Z","updatedAt":"2024-02-16T01:28:23.7255974Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_namespace000001/providers/Microsoft.ServiceBus/namespaces/sb-nscli1000003","name":"sb-nscli1000003","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nscli1000003","serviceBusEndpoint":"https://sb-nscli1000003.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T06:42:57.6286627Z","updatedAt":"2024-09-29T06:45:00.1085662Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dorothytest/providers/Microsoft.ServiceBus/namespaces/standardnewapi","name":"standardnewapi","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:standardnewapi","serviceBusEndpoint":"https://standardnewapi.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T01:12:08.5491945Z","updatedAt":"2022-07-01T18:30:52.3241886Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shsama-rg/providers/Microsoft.ServiceBus/namespaces/shsama-jms-geo-eus","name":"shsama-jms-geo-eus","type":"Microsoft.ServiceBus/Namespaces","location":"eastus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:shsama-jms-geo-eus","serviceBusEndpoint":"https://shsama-jms-geo-eus.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-03-09T04:22:56.0943711Z","updatedAt":"2024-02-16T01:27:22.8285412Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/testpremiumns","name":"testpremiumns","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpremiumns","serviceBusEndpoint":"https://testpremiumns.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-12T22:57:06.4977445Z","updatedAt":"2023-12-12T22:57:51.6813107Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/prajaktaservicebusrg/providers/Microsoft.ServiceBus/namespaces/prajaktaprem1","name":"prajaktaprem1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prajaktaprem1","serviceBusEndpoint":"https://prajaktaprem1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-22T00:11:10.2537537Z","updatedAt":"2024-07-22T00:12:01.8377377Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg","name":"sb-eldert-pg","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg","serviceBusEndpoint":"https://sb-eldert-pg-standard.servicebus.windows.net:443/","alternateName":"sb-eldert-pg-standard","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-18T00:07:44.5054993Z","updatedAt":"2022-06-23T21:29:03.2119264Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/testingrestnamespace","name":"testingrestnamespace","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testingrestnamespace","serviceBusEndpoint":"https://testingrestnamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-12T01:32:10.0516954Z","updatedAt":"2023-12-12T01:32:52.9658514Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/TestSBSDK130108","name":"TestSBSDK130108","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testsbsdk130108","serviceBusEndpoint":"https://TestSBSDK130108.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-08T23:00:42.2506917Z","updatedAt":"2024-06-08T04:39:31.4672173Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-playground/providers/Microsoft.ServiceBus/namespaces/abhigarg-test-ns-2024-06-06-001","name":"abhigarg-test-ns-2024-06-06-001","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"my-super-secret-key-001","keyVaultUri":"https://abhigargkv-20240606-001.vault.azure.net"}],"requireInfrastructureEncryption":false},"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:abhigarg-test-ns-2024-06-06-001","serviceBusEndpoint":"https://abhigarg-test-ns-2024-06-06-001.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-07T00:22:49.6311194Z","updatedAt":"2024-06-07T01:12:37.5162967Z"},"identity":{"principalId":"a068a543-81d8-41a7-bd1e-1e95b0db33e0","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarri-cmk/providers/Microsoft.ServiceBus/namespaces/skarrisubtest","name":"skarrisubtest","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarrisubtest","serviceBusEndpoint":"https://skarrisubtest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-10T20:59:03.0740033Z","updatedAt":"2024-06-10T22:34:39.1889514Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicebuscrirg/providers/Microsoft.ServiceBus/namespaces/servicebuscritesting","name":"servicebuscritesting","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebuscritesting","serviceBusEndpoint":"https://servicebuscritesting.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-03-05T21:41:33.9884605Z","updatedAt":"2024-03-05T21:42:26.5791797Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGName-5648/providers/Microsoft.ServiceBus/namespaces/Namespace1-1879","name":"Namespace1-1879","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{"Tag1":"Tag1Value"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-1879","serviceBusEndpoint":"https://Namespace1-1879.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T18:02:09.9966098Z","updatedAt":"2022-06-25T18:02:53.6788809Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbmessagingrg/providers/Microsoft.ServiceBus/namespaces/sbmessaging-standard","name":"sbmessaging-standard","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbmessaging-standard","serviceBusEndpoint":"https://sbmessaging-standard.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-11-06T19:41:02.1548582Z","updatedAt":"2023-11-06T19:41:47.3489621Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/TestDataDRPPG/providers/Microsoft.ServiceBus/namespaces/TestPremSBDataDRNS0104","name":"TestPremSBDataDRNS0104","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpremsbdatadrns0104","serviceBusEndpoint":"https://TestPremSBDataDRNS0104.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-05T00:53:54.1066644Z","updatedAt":"2024-01-05T00:55:29.6885548Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-std-1","name":"anqyan-std-1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-std-1","serviceBusEndpoint":"https://anqyan-std-1-post.servicebus.windows.net:443/","alternateName":"anqyan-std-1-post","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-11T17:58:55.7827946Z","updatedAt":"2024-09-11T18:35:16.5463988Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-IsraelCentral/providers/Microsoft.ServiceBus/namespaces/fr-israel-sbstd","name":"fr-israel-sbstd","type":"Microsoft.ServiceBus/Namespaces","location":"israelcentral","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"israelcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:fr-israel-sbstd","serviceBusEndpoint":"https://fr-israel-sbstd.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T09:23:19.302291Z","updatedAt":"2024-09-17T09:23:19Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-ItalyNorth/providers/Microsoft.ServiceBus/namespaces/ardsouza-ITN-VAZ00001-1","name":"ardsouza-ITN-VAZ00001-1","type":"Microsoft.ServiceBus/Namespaces","location":"italynorth","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"italynorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-itn-vaz00001-1","serviceBusEndpoint":"https://ardsouza-ITN-VAZ00001-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-10T15:34:23.0687152Z","updatedAt":"2024-06-10T15:34:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/arunsgeodrdemonamespace-6-68","name":"arunsgeodrdemonamespace-6-68","type":"Microsoft.ServiceBus/Namespaces","location":"italynorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"italynorth","roleType":"Secondary","replicaState":"Ready"},{"locationName":"spaincentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:arunsgeodrdemonamespace-6-68","serviceBusEndpoint":"https://arunsgeodrdemonamespace-6-68.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-28T20:13:00.5994213Z","updatedAt":"2024-06-28T20:46:37Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagssbgeorep","name":"jagssbgeorep","type":"Microsoft.ServiceBus/Namespaces","location":"italynorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"italynorth","roleType":"Primary","replicaState":"Ready"},{"locationName":"spaincentral","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagssbgeorep","serviceBusEndpoint":"https://jagssbgeorep.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-05T15:14:22.4441529Z","updatedAt":"2024-08-05T15:18:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-JapanWest/providers/Microsoft.ServiceBus/namespaces/ardsouza-japanwest-repronamespace-deleteme","name":"ardsouza-japanwest-repronamespace-deleteme","type":"Microsoft.ServiceBus/Namespaces","location":"japanwest","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"japanwest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-japanwest-repronamespace-deleteme","serviceBusEndpoint":"https://ardsouza-japanwest-repronamespace-deleteme.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-11T10:20:34.2311855Z","updatedAt":"2024-09-11T10:20:34Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationeqtoed6xgavneelsmwausqqhcvr24gcbjdxth6uopazwxilwdp3w7m/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclikwlbpfe2","name":"sb-pre-nsclikwlbpfe2","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclikwlbpfe2","serviceBusEndpoint":"https://sb-pre-nsclikwlbpfe2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:55.4401526Z","updatedAt":"2024-09-26T07:48:55Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameEventTest","name":"SuparameEventTest","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparameeventtest","serviceBusEndpoint":"https://SuparameEventTest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:55.4584919Z","updatedAt":"2024-09-26T07:48:55Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationsculekczk6rbzy3zn3er3z3nyjgxnqecgsdiwhyqmvbfaqgr2e4isn/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliovi7tnfs","name":"sb-pre-nscliovi7tnfs","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliovi7tnfs","serviceBusEndpoint":"https://sb-pre-nscliovi7tnfs.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:55.4918071Z","updatedAt":"2024-09-26T07:48:55Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-9080","name":"ServiceBus-PRENamespace-9080","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-9080","serviceBusEndpoint":"https://ServiceBus-PRENamespace-9080.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.0440474Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgo64dh47qainaf7qucvghm77jfde5w4xzbtfkhpw4lg3h26hmovw6r/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliozip4wkh","name":"sb-pre-nscliozip4wkh","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliozip4wkh","serviceBusEndpoint":"https://sb-pre-nscliozip4wkh.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.1589083Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationh764zxsz7zmshbhevzjfxvdehgp5g2gc5eabpwdhy5rcqdwl6mgnks/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliv3edwnxd","name":"sb-pre-nscliv3edwnxd","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliv3edwnxd","serviceBusEndpoint":"https://sb-pre-nscliv3edwnxd.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.7052214Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgwiklflupjaz34l5qdwtajzgbpdugmzilw23kszwuz6phccvl7rfcc/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclisnu35eog","name":"sb-pre-nsclisnu35eog","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclisnu35eog","serviceBusEndpoint":"https://sb-pre-nsclisnu35eog.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:56.9069716Z","updatedAt":"2024-09-26T07:48:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgkxbhiyuychyewd4athlvz73tjjrf3e4ivqwm33jbpq5ztn3ed4jad/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliptizjoaa","name":"sb-pre-nscliptizjoaa","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliptizjoaa","serviceBusEndpoint":"https://sb-pre-nscliptizjoaa.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.0519803Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5io3sa5ajwzrzqnvstbmaj6wk565ed4f3suvlf5arqkue7douc3ej5/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclibwcbek2k","name":"sb-pre-nsclibwcbek2k","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclibwcbek2k","serviceBusEndpoint":"https://sb-pre-nsclibwcbek2k.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.1168258Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration2di4ymwkzkfj73xqtuuvx6s5la5chn57aqs346jyw4s6ap6hijc2cx/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclilfuzcmk2","name":"sb-pre-nsclilfuzcmk2","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclilfuzcmk2","serviceBusEndpoint":"https://sb-pre-nsclilfuzcmk2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.7785083Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationwpmp3ndtkmeamgj2u26xlptka4h4qp7in7tp5ntcqfqijjme5s5c6g/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclil4ikiywf","name":"sb-pre-nsclil4ikiywf","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclil4ikiywf","serviceBusEndpoint":"https://sb-pre-nsclil4ikiywf.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:57.9594113Z","updatedAt":"2024-09-26T07:48:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5eezamk36l5j3kz2ezhtesfz65sdngon5g4c5swqfmx5re5bx2imnf/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliwot7f2kb","name":"sb-pre-nscliwot7f2kb","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliwot7f2kb","serviceBusEndpoint":"https://sb-pre-nscliwot7f2kb.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:58.0211253Z","updatedAt":"2024-09-26T07:48:58Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationti3pyun7wnva3zwii5kbvv2ykhzmjk2ehjbyd553r5a5c7cmjpn7m5/providers/Microsoft.ServiceBus/namespaces/sb-pre-nscliixenlvu6","name":"sb-pre-nscliixenlvu6","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nscliixenlvu6","serviceBusEndpoint":"https://sb-pre-nscliixenlvu6.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:58.3566388Z","updatedAt":"2024-09-26T07:48:58Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-8744","name":"ServiceBus-PRENamespace-8744","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-8744","serviceBusEndpoint":"https://ServiceBus-PRENamespace-8744.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:59.2406892Z","updatedAt":"2024-09-26T07:48:59Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-PRENamespace-3686","name":"ServiceBus-PRENamespace-3686","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-prenamespace-3686","serviceBusEndpoint":"https://ServiceBus-PRENamespace-3686.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:48:59.9008027Z","updatedAt":"2024-09-26T07:48:59Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationdoxqfkzqz3sd2v7dfkto6uiqf3uzbrozq36cx2lyrkf35qqjonsfvq/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclihdqtn2m3","name":"sb-pre-nsclihdqtn2m3","type":"Microsoft.ServiceBus/Namespaces","location":"northcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclihdqtn2m3","serviceBusEndpoint":"https://sb-pre-nsclihdqtn2m3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T07:49:00.0158314Z","updatedAt":"2024-09-26T07:49:00Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-7974","name":"Namespace1-7974","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-7974","serviceBusEndpoint":"https://Namespace1-7974.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-25T08:01:39.9152083Z","updatedAt":"2022-09-25T08:07:58.3425988Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace1-6359","name":"Namespace1-6359","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key2","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}},{"keyName":"key1","keyVaultUri":"https://ps-test-kv2.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1"}}],"requireInfrastructureEncryption":false},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace1-6359","serviceBusEndpoint":"https://Namespace1-6359.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-25T08:17:21.9588872Z","updatedAt":"2024-01-31T19:07:54.7506401Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI1":{"clientId":"38a989a1-3fab-4015-b546-cbcf7a67aa89","principalId":"624205aa-192c-4303-9606-990d06cbd997"},"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/ps-testing/providers/Microsoft.ManagedIdentity/userAssignedIdentities/PS-Testing-MSI2":{"clientId":"440d7336-c408-4327-ad13-10a4e71aad64","principalId":"1bdb6af0-4284-47f4-b049-94aa2868d90b"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PS-Testing/providers/Microsoft.ServiceBus/namespaces/Namespace2-5304","name":"Namespace2-5304","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":""},{"keyName":"key2","keyVaultUri":"https://ps-test-kv1.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":false},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace2-5304","serviceBusEndpoint":"https://Namespace2-5304.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-25T08:08:42.699394Z","updatedAt":"2024-01-31T19:07:54.7194404Z"},"identity":{"principalId":"acb4ce9b-2730-494d-a18d-a8be0420bdcb","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-NorthEurope/providers/Microsoft.ServiceBus/namespaces/vmsscpu","name":"vmsscpu","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vmsscpu","serviceBusEndpoint":"https://vmsscpu.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-02-29T18:16:47.6173232Z","updatedAt":"2024-02-29T18:18:14.2399465Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/testPSStandard","name":"testPSStandard","type":"Microsoft.ServiceBus/Namespaces","location":"northeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"northeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testpsstandard","serviceBusEndpoint":"https://testSBPostMigrationName.servicebus.windows.net:443/","alternateName":"testSBPostMigrationName","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-17T12:29:23.1842017Z","updatedAt":"2024-01-31T19:10:33.7887309Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-SBNS-std-2-14-2023-p-1","name":"ardsouza-SBNS-std-2-14-2023-p-1","type":"Microsoft.ServiceBus/Namespaces","location":"polandcentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"polandcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-sbns-std-2-14-2023-p-1","serviceBusEndpoint":"https://ardsouza-SBNS-std-2-14-2023-p-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-13T07:28:23.787552Z","updatedAt":"2024-08-13T07:28:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-testrg1/providers/Microsoft.ServiceBus/namespaces/ardsouza-polandcentral-std-12-21-22","name":"ardsouza-polandcentral-std-12-21-22","type":"Microsoft.ServiceBus/Namespaces","location":"polandcentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"polandcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-polandcentral-std-12-21-22","serviceBusEndpoint":"https://ardsouza-polandcentral-std-12-21-22.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-13T07:28:23.7986681Z","updatedAt":"2024-08-13T07:28:23Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-sb-prem-private-ep-test","name":"kala-sb-prem-private-ep-test","type":"Microsoft.ServiceBus/Namespaces","location":"polandcentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"polandcentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Disabled","disableLocalAuth":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.ServiceBus/namespaces/kala-sb-prem-private-ep-test/privateEndpointConnections/9611890d-0920-4ebb-b6a0-0dc6a73437bb","name":"9611890d-0920-4ebb-b6a0-0dc6a73437bb","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"polandcentral","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Kala-test/providers/Microsoft.Network/privateEndpoints/kala-sb-prem-private-ep"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}],"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kala-sb-prem-private-ep-test","serviceBusEndpoint":"https://kala-sb-prem-private-ep-test.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-05T23:11:54.1313602Z","updatedAt":"2024-09-05T23:12:44Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgwiklflupjaz34l5qdwtajzgbpdugmzilw23kszwuz6phccvl7rfcc/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli37kpfecv","name":"sb-std-nscli37kpfecv","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli37kpfecv","serviceBusEndpoint":"https://clipostmigration7aa2.servicebus.windows.net:443/","alternateName":"clipostmigration7aa2","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T10:48:19.6021974Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9f0152","name":"namespace9f0152","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9f0152","serviceBusEndpoint":"https://namespace9f0152.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T05:27:21.7097807Z","updatedAt":"2024-09-29T05:27:41.0664585Z"},"identity":{"principalId":"aec57946-cae0-4252-9dd0-957abaca5fed","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest3gl8u0/providers/Microsoft.ServiceBus/namespaces/secondaryNSw9rzma","name":"secondaryNSw9rzma","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsw9rzma","serviceBusEndpoint":"https://secondaryNSw9rzma.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-10T18:33:19.9474033Z","updatedAt":"2024-01-26T01:01:57.7309421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace9012","name":"namespace9012","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace9012","serviceBusEndpoint":"https://namespace9012.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:39:18.8924972Z","updatedAt":"2024-09-29T04:39:22.0645022Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgo64dh47qainaf7qucvghm77jfde5w4xzbtfkhpw4lg3h26hmovw6r/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli3d7brt2y","name":"sb-std-nscli3d7brt2y","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli3d7brt2y","serviceBusEndpoint":"https://clipostmigrationv4hd.servicebus.windows.net:443/","alternateName":"clipostmigrationv4hd","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T06:39:35.540099Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationwpmp3ndtkmeamgj2u26xlptka4h4qp7in7tp5ntcqfqijjme5s5c6g/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclix6xolgzk","name":"sb-pre-nsclix6xolgzk","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclix6xolgzk","serviceBusEndpoint":"https://clipostmigrationnmkz.servicebus.windows.net:443/","alternateName":"clipostmigrationnmkz","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T11:42:05.3361521Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SaglodhaRG/providers/Microsoft.ServiceBus/namespaces/BasicNS","name":"BasicNS","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:basicns","serviceBusEndpoint":"https://BasicNS.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-04-06T06:45:05.4396312Z","updatedAt":"2023-04-06T06:45:49.7716597Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bwpoc/providers/Microsoft.ServiceBus/namespaces/partitionedns1","name":"partitionedns1","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":2,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:partitionedns1","serviceBusEndpoint":"https://partitionedns1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-10T01:27:38.1853061Z","updatedAt":"2024-09-10T01:29:09.3520316Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namespace90152","name":"namespace90152","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace90152","serviceBusEndpoint":"https://namespace90152.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-29T04:59:19.4506791Z","updatedAt":"2024-09-29T04:59:38.7698153Z"},"identity":{"principalId":"6adf0e72-48f6-4d32-95bf-44ff92e00528","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationdoxqfkzqz3sd2v7dfkto6uiqf3uzbrozq36cx2lyrkf35qqjonsfvq/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclifmgwyxrh","name":"sb-pre-nsclifmgwyxrh","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclifmgwyxrh","serviceBusEndpoint":"https://clipostmigrationvres.servicebus.windows.net:443/","alternateName":"clipostmigrationvres","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T11:04:04.1255486Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationgkxbhiyuychyewd4athlvz73tjjrf3e4ivqwm33jbpq5ztn3ed4jad/providers/Microsoft.ServiceBus/namespaces/sb-std-nsclit667brb7","name":"sb-std-nsclit667brb7","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nsclit667brb7","serviceBusEndpoint":"https://clipostmigrationn346.servicebus.windows.net:443/","alternateName":"clipostmigrationn346","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T09:06:34.8755023Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps8383/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-8049","name":"ServiceBus-STDNamespace-8049","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-8049","serviceBusEndpoint":"https://PostMigration-Name-3646.servicebus.windows.net:443/","alternateName":"PostMigration-Name-3646","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-10T22:03:31.60737Z","updatedAt":"2024-01-26T01:01:57.7153189Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorestel6pb5/providers/Microsoft.ServiceBus/namespaces/secondaryNS4qrb17","name":"secondaryNS4qrb17","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondaryns4qrb17","serviceBusEndpoint":"https://secondaryNS4qrb17.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-23T12:03:35.3043089Z","updatedAt":"2024-01-26T01:01:57.5903136Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutorest6a5ioc/providers/Microsoft.ServiceBus/namespaces/secondaryNS6zn7s8","name":"secondaryNS6zn7s8","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondaryns6zn7s8","serviceBusEndpoint":"https://secondaryNS6zn7s8.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-13T06:16:33.0795294Z","updatedAt":"2024-01-26T01:01:57.7309421Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps5206/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-6102","name":"ServiceBus-STDNamespace-6102","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-6102","serviceBusEndpoint":"https://PostMigration-Name-8545.servicebus.windows.net:443/","alternateName":"PostMigration-Name-8545","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-15T04:47:52.2948676Z","updatedAt":"2024-01-26T01:01:57.7153189Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationsculekczk6rbzy3zn3er3z3nyjgxnqecgsdiwhyqmvbfaqgr2e4isn/providers/Microsoft.ServiceBus/namespaces/sb-std-nscli6p7zx6uw","name":"sb-std-nscli6p7zx6uw","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscli6p7zx6uw","serviceBusEndpoint":"https://clipostmigrationje2w.servicebus.windows.net:443/","alternateName":"clipostmigrationje2w","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T06:31:31.211383Z","updatedAt":"2024-01-26T01:01:57.7309421Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SaglodhaRG/providers/Microsoft.ServiceBus/namespaces/SBPremsaglodha","name":"SBPremsaglodha","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbpremsaglodha","serviceBusEndpoint":"https://SBPremsaglodha.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-28T13:24:30.8390277Z","updatedAt":"2024-08-30T07:34:55.4603004Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.ServiceBus/namespaces/ali-cmk-validation","name":"ali-cmk-validation","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"key1","keyVaultUri":"https://ali-byok-kv.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/prod-by3-533-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ua1"}}],"requireInfrastructureEncryption":false},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ali-cmk-validation","serviceBusEndpoint":"https://ali-cmk-validation.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-20T22:56:03.0130166Z","updatedAt":"2024-09-24T16:05:36.2656948Z"},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/prod-by3-533-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ua1":{"clientId":"6adfc838-7885-450c-ab76-90988ebcecbc","principalId":"ab77b41c-cf0a-449d-80bc-815cdf3c5637"}}},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration2di4ymwkzkfj73xqtuuvx6s5la5chn57aqs346jyw4s6ap6hijc2cx/providers/Microsoft.ServiceBus/namespaces/sb-std-nscliahk23qf3","name":"sb-std-nscliahk23qf3","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscliahk23qf3","serviceBusEndpoint":"https://clipostmigrationgki6.servicebus.windows.net:443/","alternateName":"clipostmigrationgki6","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T10:27:37.4878936Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps7874/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-81","name":"ServiceBus-STDNamespace-81","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-81","serviceBusEndpoint":"https://ServiceBus-STDNamespace-81.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-25T16:29:39.6742128Z","updatedAt":"2022-06-25T16:30:24.4041021Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourceGroupAutoresto859up/providers/Microsoft.ServiceBus/namespaces/secondaryNSiqjvmr","name":"secondaryNSiqjvmr","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:secondarynsiqjvmr","serviceBusEndpoint":"https://secondaryNSiqjvmr.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-11-22T17:41:18.69702Z","updatedAt":"2024-01-26T01:01:57.4028107Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationeqtoed6xgavneelsmwausqqhcvr24gcbjdxth6uopazwxilwdp3w7m/providers/Microsoft.ServiceBus/namespaces/sb-std-nsclifmrer52d","name":"sb-std-nsclifmrer52d","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nsclifmrer52d","serviceBusEndpoint":"https://clipostmigrationamhb.servicebus.windows.net:443/","alternateName":"clipostmigrationamhb","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T07:40:08.1293673Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ps51/providers/Microsoft.ServiceBus/namespaces/ServiceBus-STDNamespace-276","name":"ServiceBus-STDNamespace-276","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-stdnamespace-276","serviceBusEndpoint":"https://PostMigration-Name-9658.servicebus.windows.net:443/","alternateName":"PostMigration-Name-9658","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-16T05:32:29.7527134Z","updatedAt":"2024-01-26T01:01:57.7153189Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5io3sa5ajwzrzqnvstbmaj6wk565ed4f3suvlf5arqkue7douc3ej5/providers/Microsoft.ServiceBus/namespaces/sb-std-nscliakx5upva","name":"sb-std-nscliakx5upva","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscliakx5upva","serviceBusEndpoint":"https://clipostmigration2xdu.servicebus.windows.net:443/","alternateName":"clipostmigration2xdu","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T10:40:55.8364218Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migration5eezamk36l5j3kz2ezhtesfz65sdngon5g4c5swqfmx5re5bx2imnf/providers/Microsoft.ServiceBus/namespaces/sb-std-nsclirfsecojc","name":"sb-std-nsclirfsecojc","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nsclirfsecojc","serviceBusEndpoint":"https://clipostmigrationwjzz.servicebus.windows.net:443/","alternateName":"clipostmigrationwjzz","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T07:02:15.6412169Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationh764zxsz7zmshbhevzjfxvdehgp5g2gc5eabpwdhy5rcqdwl6mgnks/providers/Microsoft.ServiceBus/namespaces/sb-pre-nsclidsadn7fx","name":"sb-pre-nsclidsadn7fx","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-pre-nsclidsadn7fx","serviceBusEndpoint":"https://clipostmigration35d7.servicebus.windows.net:443/","alternateName":"clipostmigration35d7","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T11:19:42.0696133Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-prem-1","name":"anqyan-prem-1","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-prem-1","serviceBusEndpoint":"https://anqyan-prem-1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-11T18:04:25.7412653Z","updatedAt":"2024-09-11T18:35:16.5898898Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_migrationti3pyun7wnva3zwii5kbvv2ykhzmjk2ehjbyd553r5a5c7cmjpn7m5/providers/Microsoft.ServiceBus/namespaces/sb-std-nscliaabalsds","name":"sb-std-nscliaabalsds","type":"Microsoft.ServiceBus/Namespaces","location":"southcentralus","tags":{"{tag2: - value2,":"","tag1: value1}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-std-nscliaabalsds","serviceBusEndpoint":"https://clipostmigration3f65.servicebus.windows.net:443/","alternateName":"clipostmigration3f65","provisioningState":"Succeeded","status":"Active","createdAt":"2023-05-30T06:54:36.5997072Z","updatedAt":"2024-01-26T01:01:57.6996904Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaPremiumNamespace","name":"PrithaPremiumNamespace","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithapremiumnamespace","serviceBusEndpoint":"https://PrithaPremiumNamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.1484132Z","updatedAt":"2024-09-23T08:20:45Z"},"identity":{"principalId":"dd24dfdb-8366-426d-955f-7331d953a692","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaPremiumSBnamespace2","name":"PrithaPremiumSBnamespace2","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithapremiumsbnamespace2","serviceBusEndpoint":"https://PrithaPremiumSBnamespace2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.2092778Z","updatedAt":"2024-09-23T08:20:45Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaTestSBNamespace","name":"PrithaTestSBNamespace","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithatestsbnamespace","serviceBusEndpoint":"https://PrithaTestSBNamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.4140376Z","updatedAt":"2024-09-23T08:20:45Z"},"identity":{"principalId":"2df3939c-4419-4f76-83ee-8e36b9c42c22","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaTestNamespace","name":"PrithaTestNamespace","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithatestnamespace","serviceBusEndpoint":"https://PrithaTestNamespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T08:20:45.525476Z","updatedAt":"2024-09-23T08:20:45Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PrithaTestResourceGroup/providers/Microsoft.ServiceBus/namespaces/PrithaNamespacePremium","name":"PrithaNamespacePremium","type":"Microsoft.ServiceBus/Namespaces","location":"southeastasia","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"southeastasia","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prithanamespacepremium","serviceBusEndpoint":"https://PrithaNamespacePremium.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-25T11:27:55.5125162Z","updatedAt":"2024-09-25T11:29:04Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsgeorepdr","name":"jagsgeorepdr","type":"Microsoft.ServiceBus/Namespaces","location":"spaincentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"spaincentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagsgeorepdr","serviceBusEndpoint":"https://jagsgeorepdr.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-19T23:50:14.7256265Z","updatedAt":"2024-07-19T23:51:15Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testvinsu58_rg/providers/Microsoft.ServiceBus/namespaces/testperfprodvinsu","name":"testperfprodvinsu","type":"Microsoft.ServiceBus/Namespaces","location":"swedencentral","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"swedencentral","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testperfprodvinsu","serviceBusEndpoint":"https://testperfprodvinsu.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-30T06:03:58.282936Z","updatedAt":"2024-08-30T06:03:58Z"},"sku":{"name":"Premium","tier":"Premium","capacity":4}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarri-cmk/providers/Microsoft.ServiceBus/namespaces/ukcxtest","name":"ukcxtest","type":"Microsoft.ServiceBus/Namespaces","location":"uksouth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"uksouth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ukcxtest","serviceBusEndpoint":"https://ukcxtest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-25T21:55:42.8939321Z","updatedAt":"2024-09-25T21:56:46Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-6064","name":"sdk-Namespace-6064","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-6064","serviceBusEndpoint":"https://sdk-PostMigration-4665.servicebus.windows.net:443/","alternateName":"sdk-PostMigration-4665","provisioningState":"Succeeded","status":"Active","createdAt":"2022-05-16T23:03:13.268341Z","updatedAt":"2024-09-24T00:26:35.6056738Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-7912","name":"sdk-Namespace-7912","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-7912","serviceBusEndpoint":"https://sdk-Namespace-7912.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-05-17T18:14:19.8230335Z","updatedAt":"2024-09-24T00:26:39.2775477Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/ardsouza-1-10-2024-namespaceskuvalidation","name":"ardsouza-1-10-2024-namespaceskuvalidation","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-1-10-2024-namespaceskuvalidation","serviceBusEndpoint":"https://ardsouza-1-10-2024-namespaceskuvalidation.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-11T02:01:03.5622177Z","updatedAt":"2024-01-11T02:01:07.5154051Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EventHubsVNETTestingRG/providers/Microsoft.ServiceBus/namespaces/sdk-Namespace-5506","name":"sdk-Namespace-5506","type":"Microsoft.ServiceBus/Namespaces","location":"westcentralus","tags":{"tag1":"value1","tag2":"value2"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westcentralus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sdk-namespace-5506","serviceBusEndpoint":"https://sdk-PostMigration-5506.servicebus.windows.net:443/","alternateName":"sdk-PostMigration-5506","provisioningState":"Succeeded","status":"Active","createdAt":"2022-05-16T23:03:13.2527129Z","updatedAt":"2022-05-19T17:14:23.9709598Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jfgSBRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgBscNmpsc1","name":"jfgBscNmpsc1","type":"Microsoft.ServiceBus/Namespaces","location":"westeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jfgbscnmpsc1","serviceBusEndpoint":"https://jfgBscNmpsc1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-03-22T18:14:12.8659366Z","updatedAt":"2023-03-22T18:15:04.1369302Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jfgSBRsrcGrp1/providers/Microsoft.ServiceBus/namespaces/jfgSBNmspc1","name":"jfgSBNmspc1","type":"Microsoft.ServiceBus/Namespaces","location":"westeurope","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westeurope","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jfgsbnmspc1","serviceBusEndpoint":"https://jfgSBNmspc1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-03-09T22:57:08.592498Z","updatedAt":"2023-03-09T22:57:55.0779659Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameSbusTest","name":"SuparameSbusTest","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparamesbustest","serviceBusEndpoint":"https://SuparameSbusTest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-10T02:29:57.3676953Z","updatedAt":"2022-06-10T02:29:57.3676953Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RGName-2450/providers/Microsoft.ServiceBus/namespaces/Namespace-9959","name":"Namespace-9959","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namespace-9959","serviceBusEndpoint":"https://Namespace-9959.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-02T10:43:49.7401268Z","updatedAt":"2024-02-23T01:12:52.8670868Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/EHPerformanceTestingFramework/providers/Microsoft.ServiceBus/namespaces/performanceframeworkbroker","name":"performanceframeworkbroker","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:performanceframeworkbroker","serviceBusEndpoint":"https://performanceframeworkbroker.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-09-19T07:56:44.692459Z","updatedAt":"2023-09-19T07:57:27.8038791Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-basic","name":"sb-eldert-pg-basic","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-basic","serviceBusEndpoint":"https://sb-eldert-pg-basic.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-02-20T21:46:15.3387193Z","updatedAt":"2024-02-20T21:46:58.5912982Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/SuparameNamespaceTest1","name":"SuparameNamespaceTest1","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:suparamenamespacetest1","serviceBusEndpoint":"https://SuparameNamespaceTest1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-12-16T05:52:15.1832564Z","updatedAt":"2022-12-16T05:53:00.183933Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AutomatedPowershellTesting/providers/Microsoft.ServiceBus/namespaces/testSBARMTemplate","name":"testSBARMTemplate","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testsbarmtemplate","serviceBusEndpoint":"https://testSBARMTemplate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-09-14T09:01:24.7124833Z","updatedAt":"2024-02-23T01:23:46.7510623Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxwussbpremns-2","name":"kevxwussbpremns-2","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":"","identity":{"userAssignedIdentity":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kevx-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kevxmi-wcus"}}],"requireInfrastructureEncryption":true},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxwussbpremns-2","serviceBusEndpoint":"https://kevxwussbpremns-2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T18:14:32.6827249Z","updatedAt":"2024-09-27T18:21:20.3068417Z"},"identity":{"principalId":"0e992b76-71d9-456b-ae95-e195ab0d010f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned, - UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/kevx-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/kevxmi-wcus":{"clientId":"d07b99be-8faf-4798-b40d-343d7ef97ee6","principalId":"54518d54-4fd1-4b2e-962a-5e800f38f33a"}}},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/dlqtestfordavid","name":"dlqtestfordavid","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:dlqtestfordavid","serviceBusEndpoint":"https://dlqtestfordavid.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-04-11T16:48:22.7563558Z","updatedAt":"2023-04-11T16:58:13.9243033Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sb_subscription6m27zc5rufs7xp34pis2phf5wfu2j7kk7lqieysmclma6iytq4r/providers/Microsoft.ServiceBus/namespaces/sb-nsclizscx2ebag64z","name":"sb-nsclizscx2ebag64z","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{"{tag1: - value1,":"","tag2: value2}":""},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-nsclizscx2ebag64z","serviceBusEndpoint":"https://sb-nsclizscx2ebag64z.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-07T08:00:56.4710146Z","updatedAt":"2023-02-07T08:01:39.3967793Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jagstest/providers/Microsoft.ServiceBus/namespaces/jagsprempm","name":"jagsprempm","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jagsprempm","serviceBusEndpoint":"https://jagsprempm.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-03T18:26:02.5410715Z","updatedAt":"2024-09-03T18:27:23.1169986Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxwussbpremns-4","name":"kevxwussbpremns-4","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxwussbpremns-4","serviceBusEndpoint":"https://kevxwussbpremns-4.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-17T21:34:28.050363Z","updatedAt":"2024-09-27T18:16:22.6524976Z"},"identity":{"principalId":"bc5015dd-fa7a-4e7b-a233-4a013f9921a9","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-WestUS/providers/Microsoft.ServiceBus/namespaces/recreate","name":"recreate","type":"Microsoft.ServiceBus/Namespaces","location":"westus","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:recreate","serviceBusEndpoint":"https://recreate.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-10T21:40:30.4945103Z","updatedAt":"2023-12-11T04:54:08.0288363Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anway/providers/Microsoft.ServiceBus/namespaces/testvstsan3","name":"testvstsan3","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:testvstsan3","serviceBusEndpoint":"https://testvstsan3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-02-25T20:55:35.746222Z","updatedAt":"2024-02-25T20:56:52.3567074Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.ServiceBus/namespaces/SBSDKv2NS0621","name":"SBSDKv2NS0621","type":"Microsoft.ServiceBus/Namespaces","location":"westus","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbsdkv2ns0621","serviceBusEndpoint":"https://SBSDKv2NS0621.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-21T22:44:45.3021513Z","updatedAt":"2024-08-08T02:47:51.3346007Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/klam-rg/providers/Microsoft.ServiceBus/namespaces/klam-sb-namespace","name":"klam-sb-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:klam-sb-namespace","serviceBusEndpoint":"https://klam-sb-namespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-05-24T17:24:06.7846144Z","updatedAt":"2024-05-24T17:24:10.3471942Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/KarenTesting/providers/Microsoft.ServiceBus/namespaces/st2testpremVmss","name":"st2testpremVmss","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:st2testpremvmss","serviceBusEndpoint":"https://st2testpremVmss.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-04-18T23:21:14.6444569Z","updatedAt":"2024-04-24T07:05:10.6934365Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-implementing-an-event-sourcing-strategy-on-azure/providers/Microsoft.ServiceBus/namespaces/sb-implementing-event-sourcing-strategy","name":"sb-implementing-event-sourcing-strategy","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-implementing-event-sourcing-strategy","serviceBusEndpoint":"https://sb-implementing-event-sourcing-strategy.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-24T20:28:20.0617256Z","updatedAt":"2022-12-06T18:15:03.9465739Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-empower-your-azure-iac-with-bicep/providers/Microsoft.ServiceBus/namespaces/contoso-service-bus","name":"contoso-service-bus","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:contoso-service-bus","serviceBusEndpoint":"https://contoso-service-bus.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-24T20:28:22.4992557Z","updatedAt":"2022-06-24T20:28:22.4992557Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzureServiceBusInDepth/providers/Microsoft.ServiceBus/namespaces/simplesbmessaging","name":"simplesbmessaging","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:simplesbmessaging","serviceBusEndpoint":"https://simplesbmessaging.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-12-28T23:16:58.4116898Z","updatedAt":"2023-12-28T23:17:43.5894886Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/v-carrue-powershelltest/providers/Microsoft.ServiceBus/namespaces/v-carrue-ns1","name":"v-carrue-ns1","type":"Microsoft.ServiceBus/Namespaces","location":"westus2","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus2","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:v-carrue-ns1","serviceBusEndpoint":"https://v-carrue-ns1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-06-24T23:46:28.8715332Z","updatedAt":"2022-06-24T23:46:28.8715332Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/PPGTest/providers/Microsoft.ServiceBus/namespaces/SBTestPagination06060129","name":"SBTestPagination06060129","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sbtestpagination06060129","serviceBusEndpoint":"https://SBTestPagination06060129.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-29T23:28:16.2615671Z","updatedAt":"2024-04-10T20:14:32.7743468Z"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jupachol-rg/providers/Microsoft.ServiceBus/namespaces/jupachol-manyentities2","name":"jupachol-manyentities2","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:jupachol-manyentities2","serviceBusEndpoint":"https://jupachol-manyentities2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-23T21:09:43.0686492Z","updatedAt":"2024-09-23T21:10:46.2483538Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-eldert-pg/providers/Microsoft.ServiceBus/namespaces/sb-eldert-pg-premium","name":"sb-eldert-pg-premium","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sb-eldert-pg-premium","serviceBusEndpoint":"https://sb-eldert-pg-premium.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-01-19T19:49:27.5808727Z","updatedAt":"2024-05-09T00:13:59.4852492Z"},"identity":{"principalId":"150b1ab1-9538-451a-b4e6-9c8a68b41810","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/suparame-rg/providers/Microsoft.ServiceBus/namespaces/ServiceBusStandardNSSuparme","name":"ServiceBusStandardNSSuparme","type":"Microsoft.ServiceBus/Namespaces","location":"westus3","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"westus3","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebusstandardnssuparme","serviceBusEndpoint":"https://ServiceBusStandardNSSuparme.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-01-31T18:38:27.5382008Z","updatedAt":"2023-09-18T19:02:02.0162724Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap","name":"ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap/privateEndpointConnections/b6864f23-00b1-4284-ae74-5531b896adef","name":"b6864f23-00b1-4284-ae74-5531b896adef","type":"Microsoft.ServiceBus/Namespaces/PrivateEndpointConnections","location":"centraluseuap","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.Network/privateEndpoints/pve1"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"},"groupIds":["namespace"]}}],"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-nonaz-cuseuap","serviceBusEndpoint":"https://ServiceBus-DRDrill-August-2022-SB-NonAZ-cuseuap.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.0173441Z","updatedAt":"2024-09-13T20:29:06Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/damorg/providers/Microsoft.ServiceBus/namespaces/test6718","name":"test6718","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:test6718","serviceBusEndpoint":"https://test6718.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.0775922Z","updatedAt":"2024-09-27T20:36:53Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/abhigarg-publicnetworkaccess-cbn/providers/Microsoft.ServiceBus/namespaces/abhigarg-test-ns-2023-11-28-001","name":"abhigarg-test-ns-2023-11-28-001","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:abhigarg-test-ns-2023-11-28-001","serviceBusEndpoint":"https://abhigarg-test-ns-2023-11-28-001.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.1219649Z","updatedAt":"2024-06-04T06:46:30Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-CentralUSEUAP/providers/Microsoft.ServiceBus/namespaces/PROD-CDM-V00001-sb-std-test","name":"PROD-CDM-V00001-sb-std-test","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:prod-cdm-v00001-sb-std-test","serviceBusEndpoint":"https://PROD-CDM-V00001-sb-std-test.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.2673502Z","updatedAt":"2024-07-25T01:50:12Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/vijayscalesetsloadtest/providers/Microsoft.ServiceBus/namespaces/vijaystandardaadtest","name":"vijaystandardaadtest","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:vijaystandardaadtest","serviceBusEndpoint":"https://vijaystandardaadtest.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T06:46:30.7819973Z","updatedAt":"2024-07-25T01:56:48Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarridatadrrg/providers/Microsoft.ServiceBus/namespaces/skarri-test-central-euap","name":"skarri-test-central-euap","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":300,"locations":[{"locationName":"centraluseuap","roleType":"Secondary","replicaState":"Ready"},{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarri-test-central-euap","serviceBusEndpoint":"https://skarri-test-central-euap.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-14T04:03:47.3716478Z","updatedAt":"2024-08-14T04:25:41Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxcuseuap-sbpremns-3","name":"kevxcuseuap-sbpremns-3","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{"t":"t"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxcuseuap-sbpremns-3","serviceBusEndpoint":"https://kevxcuseuap-sbpremns-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-13T18:19:46.2728027Z","updatedAt":"2024-09-27T18:26:17Z"},"identity":{"principalId":"5ffa658e-1bc1-424a-8876-d3089798f22e","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alitest/providers/Microsoft.ServiceBus/namespaces/ali-pe-lock-test-namespace","name":"ali-pe-lock-test-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"centraluseuap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"centraluseuap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ali-pe-lock-test-namespace","serviceBusEndpoint":"https://ali-pe-lock-test-namespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-19T17:34:25.9319507Z","updatedAt":"2024-09-19T17:35:36Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ServiceBus-DRDrill-August-2022/providers/Microsoft.ServiceBus/namespaces/ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ","name":"ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:servicebus-drdrill-august-2022-sb-reallynonaz","serviceBusEndpoint":"https://ServiceBus-DRDrill-August-2022-SB-ReallyNonAZ.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-15T17:11:52.3250786Z","updatedAt":"2024-09-13T20:28:54.186495Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sharmavijay-la-verification/providers/Microsoft.ServiceBus/namespaces/sharmavijay-sb-std-la-verification","name":"sharmavijay-sb-std-la-verification","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:sharmavijay-sb-std-la-verification","serviceBusEndpoint":"https://sharmavijay-sb-std-la-verification.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2023-02-01T11:00:10.0884419Z","updatedAt":"2023-02-01T11:00:57.0274208Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dsms-test-rg/providers/Microsoft.ServiceBus/namespaces/dsmstestsb1","name":"dsmstestsb1","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:dsmstestsb1","serviceBusEndpoint":"https://dsmstestsb1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2022-08-22T17:15:28.4683589Z","updatedAt":"2023-11-14T10:34:31.0549Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/kevx-rg/providers/Microsoft.ServiceBus/namespaces/kevxeus2euap-sbpremns-3","name":"kevxeus2euap-sbpremns-3","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{"u":"u"},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":true,"encryption":{"keySource":"Microsoft.KeyVault","keyVaultProperties":[{"keyName":"kevxkey","keyVaultUri":"https://kevxkeyvault.vault.azure.net","keyVersion":""}],"requireInfrastructureEncryption":true},"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:kevxeus2euap-sbpremns-3","serviceBusEndpoint":"https://kevxeus2euap-sbpremns-3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-13T18:18:40.0458811Z","updatedAt":"2024-09-27T18:26:23.8803299Z"},"identity":{"principalId":"82309214-f4f7-4132-81a6-5efcfdb8720f","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"sku":{"name":"Premium","tier":"Premium","capacity":2}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/leandertestcanary/providers/Microsoft.ServiceBus/namespaces/leandertestgeodrmsi2","name":"leandertestgeodrmsi2","type":"Microsoft.ServiceBus/Namespaces","location":"eastus2euap","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"eastus2euap","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:leandertestgeodrmsi2","serviceBusEndpoint":"https://leandertestgeodrmsi2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-04-29T17:33:21.1148004Z","updatedAt":"2024-09-06T02:52:02.284835Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/Default-ServiceBus-MalaysiaSouth/providers/Microsoft.ServiceBus/namespaces/ardsouza-malaysia-sb-standard","name":"ardsouza-malaysia-sb-standard","type":"Microsoft.ServiceBus/Namespaces","location":"malaysiasouth","properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"malaysiasouth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-malaysia-sb-standard","serviceBusEndpoint":"https://ardsouza-malaysia-sb-standard.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-30T06:03:30.5242517Z","updatedAt":"2024-08-30T06:03:30Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/framborg/providers/Microsoft.ServiceBus/namespaces/framborg-nzn-sbs2","name":"framborg-nzn-sbs2","type":"Microsoft.ServiceBus/Namespaces","location":"newzealandnorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"newzealandnorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":true,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:framborg-nzn-sbs2","serviceBusEndpoint":"https://framborg-nzn-sbs2.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-02T21:46:58.0124397Z","updatedAt":"2024-07-02T21:47:08.2470018Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alitest/providers/Microsoft.ServiceBus/namespaces/ali-test-namespace","name":"ali-test-namespace","type":"Microsoft.ServiceBus/Namespaces","location":"norwaywest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"norwaywest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ali-test-namespace","serviceBusEndpoint":"https://ali-test-namespace.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-12T05:52:08.8242238Z","updatedAt":"2024-07-12T05:52:08Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-namespace3","name":"ardsouza-namespace3","type":"Microsoft.ServiceBus/Namespaces","location":"norwaywest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"norwaywest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-namespace3","serviceBusEndpoint":"https://ardsouza-namespace3.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-12T05:52:08.3689087Z","updatedAt":"2024-07-12T05:52:08Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/ardsouza-namespace1","name":"ardsouza-namespace1","type":"Microsoft.ServiceBus/Namespaces","location":"norwaywest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"norwaywest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:ardsouza-namespace1","serviceBusEndpoint":"https://ardsouza-namespace1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-07-12T05:52:09.813331Z","updatedAt":"2024-07-12T05:52:09Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ardsouza-test/providers/Microsoft.ServiceBus/namespaces/lmanickam-sb-cosmos-basic","name":"lmanickam-sb-cosmos-basic","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:lmanickam-sb-cosmos-basic","serviceBusEndpoint":"https://lmanickam-sb-cosmos-basic.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-05-31T11:40:46.4780932Z","updatedAt":"2024-06-05T13:01:52Z"},"sku":{"name":"Basic","tier":"Basic"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/framborg/providers/Microsoft.ServiceBus/namespaces/framborg-twn-sbs","name":"framborg-twn-sbs","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:framborg-twn-sbs","serviceBusEndpoint":"https://framborg-twn-sbs.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-05-31T11:50:41.6292866Z","updatedAt":"2024-05-31T11:50:41Z"},"sku":{"name":"Standard","tier":"Standard"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/skarridatadrrg/providers/Microsoft.ServiceBus/namespaces/skarritaiwantest1","name":"skarritaiwantest1","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"},{"locationName":"centraluseuap","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:skarritaiwantest1","serviceBusEndpoint":"https://skarritaiwantest1.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-15T03:34:21.6921044Z","updatedAt":"2024-06-15T03:38:25Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/anqyan-rg/providers/Microsoft.ServiceBus/namespaces/anqyan-pu-pr","name":"anqyan-pu-pr","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"},{"locationName":"italynorth","roleType":"Secondary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:anqyan-pu-pr","serviceBusEndpoint":"https://anqyan-pu-pr.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-08-26T00:00:52.6685501Z","updatedAt":"2024-08-26T00:04:57Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namspace91vf21","name":"namspace91vf21","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namspace91vf21","serviceBusEndpoint":"https://namspace91vf21.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T19:21:05.8127004Z","updatedAt":"2024-09-26T19:22:09Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namspace91vfcx21","name":"namspace91vfcx21","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namspace91vfcx21","serviceBusEndpoint":"https://namspace91vfcx21.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T19:34:49.6613793Z","updatedAt":"2024-09-26T19:35:56Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-migration21/providers/Microsoft.ServiceBus/namespaces/namspace91vfcx22","name":"namspace91vfcx22","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorth","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorth","roleType":"Primary","clusterArmId":"","replicaState":"Ready"},{"locationName":"australiaeast","roleType":"Secondary","clusterArmId":"","replicaState":"Ready"}]},"premiumMessagingPartitions":1,"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:namspace91vfcx22","serviceBusEndpoint":"https://namspace91vfcx22.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-09-26T19:59:44.1843374Z","updatedAt":"2024-09-26T20:03:53Z"},"sku":{"name":"Premium","tier":"Premium","capacity":1}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/framborg/providers/Microsoft.ServiceBus/namespaces/framborg-twnw-sbs","name":"framborg-twnw-sbs","type":"Microsoft.ServiceBus/Namespaces","location":"taiwannorthwest","tags":{},"properties":{"geoDataReplication":{"maxReplicationLagDurationInSeconds":0,"locations":[{"locationName":"taiwannorthwest","roleType":"Primary","replicaState":"Ready"}]},"premiumMessagingPartitions":0,"minimumTlsVersion":"1.0","publicNetworkAccess":"Enabled","disableLocalAuth":false,"zoneRedundant":false,"metricId":"326100e2-f69d-4268-8503-075374f62b6e:framborg-twnw-sbs","serviceBusEndpoint":"https://framborg-twnw-sbs.servicebus.windows.net:443/","provisioningState":"Succeeded","status":"Active","createdAt":"2024-06-04T08:59:25.3863242Z","updatedAt":"2024-06-04T08:59:25Z"},"sku":{"name":"Standard","tier":"Standard"}}]}' + string: '{"name":"4a2e3fda-963d-4071-8cf0-39138b4afb91","status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '185996' + - '68' content-type: - application/json; charset=utf-8 date: - - Sun, 29 Sep 2024 06:47:37 GMT + - Sun, 29 Sep 2024 18:20:25 GMT expires: - '-1' pragma: @@ -1369,59 +2593,12 @@ interactions: - CONFIG_NOCACHE x-content-type-options: - nosniff - x-ms-original-request-ids: - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' - - '' + x-ms-messaging-activity-id: + - b497da6c-9909-4b87-a295-71b744e9314e + x-ms-messaging-routing-id: + - AUSTRALIAEAST|AUSTRALIAEAST|G2|2024-09-29T18:20:25 x-msedge-ref: - - 'Ref A: B0F63ADAEC9C44FFBA6C166A05F3107F Ref B: TYO201100117051 Ref C: 2024-09-29T06:47:34Z' + - 'Ref A: BA35FD2F731D47CC9B416A21E8BA3A01 Ref B: TYO201151005054 Ref C: 2024-09-29T18:20:25Z' status: code: 200 message: OK @@ -1453,11 +2630,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:47:41 GMT + - Sun, 29 Sep 2024 18:20:28 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892619900741&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=UXu_0Y-Rsld0_-FZlHMJd67yFSVyja5XMfgKsANnMaZFtvsIXqIf-lSqcE5Db3gjHoGpbuR9SUrvmbFyfMn_XbpxYFH53RcqhzmMMvSgn44VP8gbptA4NKocjhf3PeJMgSoEACxnp51kHIAoj6XVLLkdmzSU-GibKEQ7Za8Xv_8ZCW5y2R8KWeVMn7mR1ahA8_21RbiGiRn84ym4TligvlF_CceJzMpn0ttWkqotNbeCsMJdVDnON6YVaUxzQvK8Ef7B_02v-FA-MlmYMdwe7gSK3pCB1jPHJxcdhP-7BcR_XNduyAB02wvt8X2nl4VfboZTYzJ-yV8VImNCMTKeew&h=9zm5ZU_MD4BWOhVQDuE18vVTq3_NFfFHtvByZkiMAIY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/a4a6302e-219b-4eff-a323-03e41322e966?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308287607877&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=pwE3ZnWPglIsD7_OJppDylx3V9JnTg9vFZnENf89-jJOlaKUn67QWqQqnfxFH4H2KWh6trGqq7bqMTHrdIhLSMhidmTGBp06djyfzMefoFdoyH93TchM5J7C3685HE5P-qfjo02liKognUXFhHr9i5KLjq2UpKbuz_Pmd0yOTugZ6TiLnk7v2T2LBBMVYRhVGv6ng3THjEJZ7g69nATeNZFjpD7nNIR8IhJw37JR05fLHRbmB0Ky4P6a8ORwix0UNogzzY7XQeURBOF5nNt4xbG4qNkK4AY7j9BEVqqfngOGJ6RChDzedRbot-QNYP8mSb4pzw7Ipa-XVr-UnG76aw&h=8mQGxwcJPMp6NJST9cH2kK_idNM6dyGuqu_ux1Aazp8 pragma: - no-cache strict-transport-security: @@ -1467,13 +2644,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000003976 + - 00000001-0000-0000-0002-000000001056 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G13|2024-09-29T06:47:41 + - EASTUS|EASTUS|G3|2024-09-29T18:20:28 x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-msedge-ref: - - 'Ref A: 645B7F91FDC94D37A7EF61A440F7FEAC Ref B: OSA221030115039 Ref C: 2024-09-29T06:47:38Z' + - 'Ref A: 885B6BE22D3B40E0B08225E9C38C3ECF Ref B: TYO201151001062 Ref C: 2024-09-29T18:20:26Z' status: code: 202 message: Accepted @@ -1493,7 +2670,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892619900741&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=UXu_0Y-Rsld0_-FZlHMJd67yFSVyja5XMfgKsANnMaZFtvsIXqIf-lSqcE5Db3gjHoGpbuR9SUrvmbFyfMn_XbpxYFH53RcqhzmMMvSgn44VP8gbptA4NKocjhf3PeJMgSoEACxnp51kHIAoj6XVLLkdmzSU-GibKEQ7Za8Xv_8ZCW5y2R8KWeVMn7mR1ahA8_21RbiGiRn84ym4TligvlF_CceJzMpn0ttWkqotNbeCsMJdVDnON6YVaUxzQvK8Ef7B_02v-FA-MlmYMdwe7gSK3pCB1jPHJxcdhP-7BcR_XNduyAB02wvt8X2nl4VfboZTYzJ-yV8VImNCMTKeew&h=9zm5ZU_MD4BWOhVQDuE18vVTq3_NFfFHtvByZkiMAIY + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/a4a6302e-219b-4eff-a323-03e41322e966?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308287607877&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=pwE3ZnWPglIsD7_OJppDylx3V9JnTg9vFZnENf89-jJOlaKUn67QWqQqnfxFH4H2KWh6trGqq7bqMTHrdIhLSMhidmTGBp06djyfzMefoFdoyH93TchM5J7C3685HE5P-qfjo02liKognUXFhHr9i5KLjq2UpKbuz_Pmd0yOTugZ6TiLnk7v2T2LBBMVYRhVGv6ng3THjEJZ7g69nATeNZFjpD7nNIR8IhJw37JR05fLHRbmB0Ky4P6a8ORwix0UNogzzY7XQeURBOF5nNt4xbG4qNkK4AY7j9BEVqqfngOGJ6RChDzedRbot-QNYP8mSb4pzw7Ipa-XVr-UnG76aw&h=8mQGxwcJPMp6NJST9cH2kK_idNM6dyGuqu_ux1Aazp8 response: body: string: '' @@ -1503,11 +2680,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:47:42 GMT + - Sun, 29 Sep 2024 18:20:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892629359046&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=IRyBMpQDi4NFd1v7MklAFQ4pEX1tnOV-3DF5xGOs2Tejo9I9jQoe1FR8VGgF-68IbOCAkRrPdA1LCWyYIbdnN5LEUPvUSjFNEMu8eD8r42L-nANr7P1t-EcUOSs-HVM2d-RJQuSIT8PoksdxQSs2dhBc5cA8hK_ubiY0VU72l8TKFn4xLiROtTJxepi0X5ng3BiABoqObZABng_tzfXMW0AB1hrpFiHOEAzxeUUYgy_Fb-rjWxriNRa82neEA2tS0L7oOItcZ-1tUbkNVOD3MAsvIdY6C3dg3zdp2MD_wi1I-hHoPjSC3w2l3jQ0POC2GMt31539vh6oojVLSJ-85w&h=UqwlQpIETn5eLqeWlUbr26J9UGezjtMAlbKMrjuMzmM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/a4a6302e-219b-4eff-a323-03e41322e966?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308298701572&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=H8YxB510TiHIxtP4d_btNOaejm82YDz3lI0OutavtZ3EP_nY_-fTs97Hl7LcFnl0CQ2XWkAIW9KbQjS3WpUiICKsh50OIPiXA3Oj_jphAu6O5hyuGUS987ZnU8Dfz_RzFJLy9J8hgz1AIb6qOplTxOoIUOEbOAyrY-Lvapq1xM59PiGisww2IqiDWiMlBvdFZ8SJVx8nrsF18cJeyxzqfxbLVQJu01F4ZGKhw-hdoKguX36rg7ytYOdMGBAzhcLdsRkZzp5Xym083neTJr4VBiC096AIHudd5uQxIbMliQoFtbD6nOx_1sIT7974RlRXWT-Mbqr3Mq8sQ6YDxupm5g&h=y-O_4PbxiJSAFTmZqpxd8dHAggWP7hNUn0CdXmrq9qo pragma: - no-cache strict-transport-security: @@ -1517,11 +2694,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000003760 + - 00000001-0000-0000-0002-000000006456 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G11|2024-09-29T06:47:42 + - EASTUS|EASTUS|G9|2024-09-29T18:20:29 x-msedge-ref: - - 'Ref A: FAB8AE4508254E719701356709594AA6 Ref B: OSA221030115039 Ref C: 2024-09-29T06:47:42Z' + - 'Ref A: 6124EDCAC0E745B996B760CD2196A00E Ref B: TYO201151001062 Ref C: 2024-09-29T18:20:28Z' status: code: 202 message: Accepted @@ -1541,7 +2718,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892629359046&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=IRyBMpQDi4NFd1v7MklAFQ4pEX1tnOV-3DF5xGOs2Tejo9I9jQoe1FR8VGgF-68IbOCAkRrPdA1LCWyYIbdnN5LEUPvUSjFNEMu8eD8r42L-nANr7P1t-EcUOSs-HVM2d-RJQuSIT8PoksdxQSs2dhBc5cA8hK_ubiY0VU72l8TKFn4xLiROtTJxepi0X5ng3BiABoqObZABng_tzfXMW0AB1hrpFiHOEAzxeUUYgy_Fb-rjWxriNRa82neEA2tS0L7oOItcZ-1tUbkNVOD3MAsvIdY6C3dg3zdp2MD_wi1I-hHoPjSC3w2l3jQ0POC2GMt31539vh6oojVLSJ-85w&h=UqwlQpIETn5eLqeWlUbr26J9UGezjtMAlbKMrjuMzmM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/a4a6302e-219b-4eff-a323-03e41322e966?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308298701572&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=H8YxB510TiHIxtP4d_btNOaejm82YDz3lI0OutavtZ3EP_nY_-fTs97Hl7LcFnl0CQ2XWkAIW9KbQjS3WpUiICKsh50OIPiXA3Oj_jphAu6O5hyuGUS987ZnU8Dfz_RzFJLy9J8hgz1AIb6qOplTxOoIUOEbOAyrY-Lvapq1xM59PiGisww2IqiDWiMlBvdFZ8SJVx8nrsF18cJeyxzqfxbLVQJu01F4ZGKhw-hdoKguX36rg7ytYOdMGBAzhcLdsRkZzp5Xym083neTJr4VBiC096AIHudd5uQxIbMliQoFtbD6nOx_1sIT7974RlRXWT-Mbqr3Mq8sQ6YDxupm5g&h=y-O_4PbxiJSAFTmZqpxd8dHAggWP7hNUn0CdXmrq9qo response: body: string: '' @@ -1549,11 +2726,11 @@ interactions: cache-control: - no-cache date: - - Sun, 29 Sep 2024 06:48:13 GMT + - Sun, 29 Sep 2024 18:21:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/73af978e-8634-4343-abb7-718bb319840b?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892940210066&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=Q0Oemhao6pSxPGFBYiNeb9_CjSzjKRr4mOpywula2V_vcpzZl3t8VOeka0yBuRYlJDF3KRaXttUjFfP5rK0nBY8mT5Ly_R_pk_dr55UWtufz8M39xBkuJx-8enJY-K-kC8QQFdRJrzZa8fzcYWcSb3EinKJQVUKmeMK06lLIxDWzIo3S6ycD2YVFHWSiT9ZqlIGtc9qR7_yOTWVHBMCjBW748F5i0miRCYYefCYRDq2sxTKrUxBXjtDfXUzVYiKiQFE7artLYV1l_DjB6olG6judH_VD9Z2v8ptL0NtaGiA_8YBXyj8-Har1nBAOg-6bYlWTu0_XOTuAqYvCUYUH5g&h=B3sEJ0P_AQpUuVxSu5QLY_ZYlVD9HQUNTsKhhOPmK7g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/a4a6302e-219b-4eff-a323-03e41322e966?isAsyncHeader=false&resourceName=sb-nscli000002&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308609112138&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=XTYObocCwE4RLR_RCdtTz0SsY1evTsXcAdOBgj6FFmtYUN8tIAMwECgwfD0VKeVgdJA6VU6b8MwyMZA3nWV0oC1WgHVqdwe3lGMo3SUYHkb3NRcNYHRcSezv1KQNJPPgox22jGVFLV1PofdbtWNa95WZUmABd5MVf6ccFlQrP7D81I-8txOrz34EdYGxTEjRUmgBDIFX9BqJqf1rbMoDJvkqyQlIzV9M4X-n5oTZKmPfBtOCRJcsUh2N5ui29OnzN06PbYQ-LCYka3IsSn2rR52oGc-X9fQq3mnIP_EdkXLne85b37YM-Q81QDCjdTAdVtFDc5XLYx8NhJL98264bw&h=Y-YIDCmy7B5nQeQMvn_eNG_3Xa0wkq7MSOyeBV54jAM pragma: - no-cache strict-transport-security: @@ -1563,11 +2740,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000003760 + - 00000001-0000-0000-0002-000000004360 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G11|2024-09-29T06:48:13 + - EASTUS|EASTUS|G8|2024-09-29T18:21:00 x-msedge-ref: - - 'Ref A: C2537CD12A194F1DB2B7A5208C32A1DB Ref B: OSA221030115039 Ref C: 2024-09-29T06:48:13Z' + - 'Ref A: 97B41AD2767048F2A96D60DA2B52867A Ref B: TYO201151001062 Ref C: 2024-09-29T18:20:59Z' status: code: 204 message: No Content @@ -1599,11 +2776,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:48:17 GMT + - Sun, 29 Sep 2024 18:21:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892982152748&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=JDrqk7mCTJjhGrLzXpDPt5QgTWjyltdcOjpMQk-Cta8Dns-FiUWgdjD2ZcU-UDn4xUkfNEyUo5q7cyaUmSQxH2Dv8-mF5JXiYXMdWn28CyOB4OhYc2LvjjqsNiMPBLndppjfPKpnFlmmKGSrbmk3FRsZFnFqf2sfyOA9qX4sPMe1naRc9bpGyLPCZG0aYMa0bbhCwdCt13DlqzCZ--5lep4VehpWzPMh05XLqgyCqzYiMc17xXIvs813NbItqzB-9y8xVisXGMWEJXIDWw_jj1IdrnIyK9uz7yd-ufuucrrkLYScnWn8RKdSrilyQ3OUdbjx5QktjHfw9nz_wqn5zg&h=N6h39wF5AKboCsUxQ3LNr8YEXMOPXJzlN-hkM_uhN2I + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/61031fdb-15cf-4fd5-b5f1-991655ceeb18?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308635988929&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=Q0tm3gashPm3le4brdJsewYG53EZN5WiVqr51VtuHcJOUJv5qLbELnXFWTXkxR1MTJA1JOG39XyAH8HV9O6b9XJUYlqgJXPEcvNtISuWz7PaDmdXqQjF-ykqWNWcuPfiBRHNaTAcxqder01Ank-NolG4OBJxGFVngXdb3_TgHeRGJxzAbSM-cKfGTxiHhKaUNnXUg01sl9r4vo2D9rzDFHkRmHg8E3wAyBXi3mRDbH95ZuNqRW2jLA48dvY01mYIMaDw_g5RqeKz0i5e5pNYmL0mBkWZj9AnePson02bfLr7Fee1XjOjTK_ul7Fm8_k6SNxWwx0uUMdDPp97d1hHGQ&h=XVLa8Y96-ecY2dDhqcFpKWyVnwiZI1sICNQ-iL6emKk pragma: - no-cache strict-transport-security: @@ -1613,13 +2790,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000009732 + - 00000001-0000-0000-0002-000000005052 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G1|2024-09-29T06:48:18 + - EASTUS|EASTUS|G6|2024-09-29T18:21:03 x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-msedge-ref: - - 'Ref A: F560D564BB1B4B30ACFC906072E138B5 Ref B: OSA221030116037 Ref C: 2024-09-29T06:48:14Z' + - 'Ref A: 790E689803074261A46F9EFF90234A98 Ref B: TYO201151006023 Ref C: 2024-09-29T18:21:01Z' status: code: 202 message: Accepted @@ -1639,7 +2816,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892982152748&c=MIIHhzCCBm-gAwIBAgITHgTUiK_KKnJ-Y9Hy-QAABNSIrzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwNjI5MDUxODAyWhcNMjUwNjI0MDUxODAyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOIcHIlyl-Z-Pp1TjLsbxip8TSrYzTQw7yK6OgjrbfvM1Y5esIcmClzfH6Aw85Tn5tKJ_RLv93jYz0TAOYkYP2Z1aiSaPTEJwiRRTN73nzQMuq7BryAH7NnxVU7SYJLx7jMWXQCOOVKy88BUeLpJ_hEZ0fwabVOfGZTbbWcTzR1ayh-ymnN1l5PVRKzcVaOqVD-PqW9ZeRFRMgYhXBkaiw2Eas35Rrk0muGK6r_D2IrP3J212cEsSPAK4HlkigAUFBs4vjba7AdpRXx8EoPQvc00Ha7WSjcPINZiQK3aO9J4iEfWz8UlJb9A5Z_YaSuwyRk083vQOeGV8ztSH1_Bk70CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBSiC-VhhV87Os-V4LqV6jKqmNsxazAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABSYebz8P2KAo8xDRoFmH3Fhu7okjfAuzSQisY5-5OJ3paVrDa7zsI38OLxXwPXgOsk0fItETlTm-CxX60dyLOs-9EQ6DakaZ2ef7r5dvGojGvWwOunM_OHQZS5YysPO2xzhJqFXJXcGa3UYF0JyioUQTBvWq9TgN-hdq_A1vltpo6_JOR973U1mnAZYjeEuFdlZLOukRrWE4dl1gj0CthV_n0xLO1cEs0kM_hnf7Rs3P5eorueZjUA_IGSTiU-L48yYAXnsywtyC5x7Ucl6MH5W7h0KUne51Xd1YB2SIAbkv8eJoRgGv4nXsBWD5JFfgZN9p7doiZcgmo2UiBa2xh8&s=JDrqk7mCTJjhGrLzXpDPt5QgTWjyltdcOjpMQk-Cta8Dns-FiUWgdjD2ZcU-UDn4xUkfNEyUo5q7cyaUmSQxH2Dv8-mF5JXiYXMdWn28CyOB4OhYc2LvjjqsNiMPBLndppjfPKpnFlmmKGSrbmk3FRsZFnFqf2sfyOA9qX4sPMe1naRc9bpGyLPCZG0aYMa0bbhCwdCt13DlqzCZ--5lep4VehpWzPMh05XLqgyCqzYiMc17xXIvs813NbItqzB-9y8xVisXGMWEJXIDWw_jj1IdrnIyK9uz7yd-ufuucrrkLYScnWn8RKdSrilyQ3OUdbjx5QktjHfw9nz_wqn5zg&h=N6h39wF5AKboCsUxQ3LNr8YEXMOPXJzlN-hkM_uhN2I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/61031fdb-15cf-4fd5-b5f1-991655ceeb18?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308635988929&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=Q0tm3gashPm3le4brdJsewYG53EZN5WiVqr51VtuHcJOUJv5qLbELnXFWTXkxR1MTJA1JOG39XyAH8HV9O6b9XJUYlqgJXPEcvNtISuWz7PaDmdXqQjF-ykqWNWcuPfiBRHNaTAcxqder01Ank-NolG4OBJxGFVngXdb3_TgHeRGJxzAbSM-cKfGTxiHhKaUNnXUg01sl9r4vo2D9rzDFHkRmHg8E3wAyBXi3mRDbH95ZuNqRW2jLA48dvY01mYIMaDw_g5RqeKz0i5e5pNYmL0mBkWZj9AnePson02bfLr7Fee1XjOjTK_ul7Fm8_k6SNxWwx0uUMdDPp97d1hHGQ&h=XVLa8Y96-ecY2dDhqcFpKWyVnwiZI1sICNQ-iL6emKk response: body: string: '' @@ -1649,11 +2826,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:48:18 GMT + - Sun, 29 Sep 2024 18:21:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892992291588&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=lE8JnWmdG4TVu8ktXz9vvhFyVC_E7zANkjkBEc3M2qyzODB1B_jJNF1DXqjpVxLU0aXeIBp_ghGkzNBNvlG5NFcAduzT9p7Vvp1EXPk-8Va5sCx5sDA8Q4Jno0ouiBnlSvIQCZzXg8jOEv10lZVN-zzrDH-X3Gw4JBHG1JZxu0fH_PVFIELpMtsrCf4V7rHQRIfNC2Rv5iricVs8i1poSWJH9x983hPGmWyhMiEoqvZTCDSWcHNQrfigiO5fsgtftdufImKDC5LZojU22OmmiSYJvhhn4NkoPVllYB-I3UCLX18W1eH9mug0zlN6DsTT6zGaLQmWSkd2rYy7SrRWLw&h=6nTRisdeG581n04yAaJGcyi4t8R56J0yb8kv_-Ip2Wk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/61031fdb-15cf-4fd5-b5f1-991655ceeb18?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308646273680&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=JiFCTh0UIktbsySL--TXOHGP6QtxMjRxuLLLr5T0YftK3KjBNaJwcDQI5NupdOv5D3wdJOQtbA9-qfRLjDDOQT-kbdqRvg2mlkYFyuGiEEHrZESrf8z3pSGMY5bA9kfm9OftKLMIrMvTea85NnZeEHCzl_qFTv4KFUPMKjtKnc_s57xxIOV9P8zudohc-ajMMs-rvL8d3k-52v6Tu4lGosmfk9sHMKrfD-fD2X3EL_seOhgkQ-b8HaD2uumj6l_fjgLjtyF0pTgKIbEPbROYhUmGWu7Ghdnj7ODCr5QPFXbgbx3GYFkRq92jr98A7EXo_DK7fx4KKg5dFOqsdD6gFg&h=TYeFNMYcSH9eZyjrTCZF4YVLg217iZcaFjhBKsvgKCo pragma: - no-cache strict-transport-security: @@ -1665,9 +2842,9 @@ interactions: x-ms-messaging-activity-id: - 00000001-0000-0000-0002-000000006456 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G9|2024-09-29T06:48:19 + - EASTUS|EASTUS|G9|2024-09-29T18:21:04 x-msedge-ref: - - 'Ref A: 8D96910B9F98462CBDB41B2D4DD89ED3 Ref B: OSA221030116037 Ref C: 2024-09-29T06:48:18Z' + - 'Ref A: 5505109BF1CF413AA12EE59F229AF7DD Ref B: TYO201151006023 Ref C: 2024-09-29T18:21:03Z' status: code: 202 message: Accepted @@ -1687,7 +2864,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631892992291588&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=lE8JnWmdG4TVu8ktXz9vvhFyVC_E7zANkjkBEc3M2qyzODB1B_jJNF1DXqjpVxLU0aXeIBp_ghGkzNBNvlG5NFcAduzT9p7Vvp1EXPk-8Va5sCx5sDA8Q4Jno0ouiBnlSvIQCZzXg8jOEv10lZVN-zzrDH-X3Gw4JBHG1JZxu0fH_PVFIELpMtsrCf4V7rHQRIfNC2Rv5iricVs8i1poSWJH9x983hPGmWyhMiEoqvZTCDSWcHNQrfigiO5fsgtftdufImKDC5LZojU22OmmiSYJvhhn4NkoPVllYB-I3UCLX18W1eH9mug0zlN6DsTT6zGaLQmWSkd2rYy7SrRWLw&h=6nTRisdeG581n04yAaJGcyi4t8R56J0yb8kv_-Ip2Wk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/61031fdb-15cf-4fd5-b5f1-991655ceeb18?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308646273680&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=JiFCTh0UIktbsySL--TXOHGP6QtxMjRxuLLLr5T0YftK3KjBNaJwcDQI5NupdOv5D3wdJOQtbA9-qfRLjDDOQT-kbdqRvg2mlkYFyuGiEEHrZESrf8z3pSGMY5bA9kfm9OftKLMIrMvTea85NnZeEHCzl_qFTv4KFUPMKjtKnc_s57xxIOV9P8zudohc-ajMMs-rvL8d3k-52v6Tu4lGosmfk9sHMKrfD-fD2X3EL_seOhgkQ-b8HaD2uumj6l_fjgLjtyF0pTgKIbEPbROYhUmGWu7Ghdnj7ODCr5QPFXbgbx3GYFkRq92jr98A7EXo_DK7fx4KKg5dFOqsdD6gFg&h=TYeFNMYcSH9eZyjrTCZF4YVLg217iZcaFjhBKsvgKCo response: body: string: '' @@ -1697,11 +2874,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:48:49 GMT + - Sun, 29 Sep 2024 18:21:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893302414628&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OPqx9X60P-II3px4IG3XmUEV-plnwZTUxpn24jgfeqhrMXtLn-zWBXJ9RU6633KVaXng26c7nWWhmEBBXwC2Mx-YJhqlFiZCjBQi-0eSKOqZx8Dhz2cIaqeJ1ddB8xzvJly6idlCe7FeVuKD50CU4YDfdpZ2fcVcphAcT1zkhECCpyXeTMAESxKSlnRYHg7JVNW1X1IcDBPBXByPIr7SRsXyg5RxfQ_QX0F3rDIQGMGdUcjsr275BGCvTuB4uttcN4p--WVApxv-Qhfz6-vfx_SmWYz_pW48wl2KNcRUg2yJ3BRNa8wQk5TKRWDwz0fze7Es-k_TVO1IX3WUYMCl7g&h=QdZevyCPy2VG16DG0SjWneuefWJE3qo0C3Hu-va45bg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/61031fdb-15cf-4fd5-b5f1-991655ceeb18?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308956164793&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=FN0yYDZ2Z3p7exO3zQo_47LnK71L8syEM354QOaPFnMi1TWYH-HrTDet_jXoQ5trQvm0UlZ3BVvAwvTyU17Xv0IhJICtzeTp87ZZ-p2T47cNAJItHehjFDZErMAdOiF5Hb2Y_S4KoLJ4blYz7NLFsWclk-Mzez5dszgQ6AVRa_LJnkJ13tx7kqN_txZVxLJoeA-H3a9ZvRjIhMUrW2v8rXDVYMfQjqnh_Izyf6UuDpxW_k1jQV6dqJ3jneUStDsKnCn-zwm_ZLufRZa5_oTPy20PWPqirLTuPScz9XmqN9Ei_n0QNmhrLooGbilK7YBCH-wMFt3-qbrcp3hMriNaWA&h=6vYkQQWdoMpHu5zQZ01pyxm-mApcbdVuefZPLiTS16c pragma: - no-cache strict-transport-security: @@ -1711,11 +2888,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000002560 + - 00000001-0000-0000-0002-000000008092 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G4|2024-09-29T06:48:50 + - EASTUS|EASTUS|G2|2024-09-29T18:21:35 x-msedge-ref: - - 'Ref A: CA38990B94C6405DA998E61022CC91E7 Ref B: OSA221030116037 Ref C: 2024-09-29T06:48:49Z' + - 'Ref A: 712E89F47B604E98BD1DF74CAE694462 Ref B: TYO201151006023 Ref C: 2024-09-29T18:21:34Z' status: code: 202 message: Accepted @@ -1735,7 +2912,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893302414628&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OPqx9X60P-II3px4IG3XmUEV-plnwZTUxpn24jgfeqhrMXtLn-zWBXJ9RU6633KVaXng26c7nWWhmEBBXwC2Mx-YJhqlFiZCjBQi-0eSKOqZx8Dhz2cIaqeJ1ddB8xzvJly6idlCe7FeVuKD50CU4YDfdpZ2fcVcphAcT1zkhECCpyXeTMAESxKSlnRYHg7JVNW1X1IcDBPBXByPIr7SRsXyg5RxfQ_QX0F3rDIQGMGdUcjsr275BGCvTuB4uttcN4p--WVApxv-Qhfz6-vfx_SmWYz_pW48wl2KNcRUg2yJ3BRNa8wQk5TKRWDwz0fze7Es-k_TVO1IX3WUYMCl7g&h=QdZevyCPy2VG16DG0SjWneuefWJE3qo0C3Hu-va45bg + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/61031fdb-15cf-4fd5-b5f1-991655ceeb18?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632308956164793&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=FN0yYDZ2Z3p7exO3zQo_47LnK71L8syEM354QOaPFnMi1TWYH-HrTDet_jXoQ5trQvm0UlZ3BVvAwvTyU17Xv0IhJICtzeTp87ZZ-p2T47cNAJItHehjFDZErMAdOiF5Hb2Y_S4KoLJ4blYz7NLFsWclk-Mzez5dszgQ6AVRa_LJnkJ13tx7kqN_txZVxLJoeA-H3a9ZvRjIhMUrW2v8rXDVYMfQjqnh_Izyf6UuDpxW_k1jQV6dqJ3jneUStDsKnCn-zwm_ZLufRZa5_oTPy20PWPqirLTuPScz9XmqN9Ei_n0QNmhrLooGbilK7YBCH-wMFt3-qbrcp3hMriNaWA&h=6vYkQQWdoMpHu5zQZ01pyxm-mApcbdVuefZPLiTS16c response: body: string: '' @@ -1745,11 +2922,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:49:20 GMT + - Sun, 29 Sep 2024 18:22:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893612331688&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=WghMse-u7Nt_c78crZRXdC7XkdHbbJScYlV3yv8MCa9bB7Jg4qhyCEBaPhLh0tm-BjO15AGtmEr-Opv4q0MZe5bmx6bJp1yr6QMWQFbqEfvYKyp68ck-xAFwS4_LKjFD_C_kJejzOJzuFPRm2fgl0WQmM_2Eni9X-wPure-lkKzUQm_kZn9j-RzGI5z5WDxqlU0wUucY0v3jzEIwL4TezA_3Nxu0WLlK8YsrdrDyDEpMdV7qF7ONBgAfgiFpd3NxMqkqa87uNSf0bqkkeC-jMhdPHTkCf8V0HJ72gdZB5KDlSd5Z53R_nyRjXmfhYSfzAdiq3-go9jKAWwfE0D8RDQ&h=ZSt_ZBBK1cfiBTm0ttnFxOKLgccgtTl8zPsocVuQH2U + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/61031fdb-15cf-4fd5-b5f1-991655ceeb18?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632309266002024&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=gabTuqosPTI0LKzMYEhm87RBHgj_xOGh9Z8dX_UVLWbMOtoluMMVP66_UMGTFO92qRPDIG_fUILPGpCyxFnIyy4saxPKvyDxQS0Cc_NfxPa8BeYTGE1A4Woo_G_nNevHRDZvEyqVoWrnhnWYsZ_MfusEeBsRSSBPtP-6_ccNH3RnuRs0iKVW5AAQViW-svD01h8qni-Q2yqLZGXpLpmcbHrnfbDRsd5UiX3lXBX0XDdz_gqWAJ3BFW87Aoyy3Wf7ySsDRURzQyWTLxklWtjQD0tTinUxDzgqtZQ6SnF4Sqky7cm8AwJnkyLOdAQtbCYq2j9vIxpuWWKMsycFLVIyJw&h=wUWKJwsFIQHCTvjDSkeV7uSQCmbeZVoSL_vJK2pDICE pragma: - no-cache strict-transport-security: @@ -1759,11 +2936,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000006996 + - 00000001-0000-0000-0002-000000009732 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G12|2024-09-29T06:49:21 + - EASTUS|EASTUS|G1|2024-09-29T18:22:06 x-msedge-ref: - - 'Ref A: 384277E6B1154E09A5B5BEA2EB0389D0 Ref B: OSA221030116037 Ref C: 2024-09-29T06:49:20Z' + - 'Ref A: 605446CFA35F4371A37C605BE37F5624 Ref B: TYO201151006023 Ref C: 2024-09-29T18:22:05Z' status: code: 202 message: Accepted @@ -1783,7 +2960,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893612331688&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=WghMse-u7Nt_c78crZRXdC7XkdHbbJScYlV3yv8MCa9bB7Jg4qhyCEBaPhLh0tm-BjO15AGtmEr-Opv4q0MZe5bmx6bJp1yr6QMWQFbqEfvYKyp68ck-xAFwS4_LKjFD_C_kJejzOJzuFPRm2fgl0WQmM_2Eni9X-wPure-lkKzUQm_kZn9j-RzGI5z5WDxqlU0wUucY0v3jzEIwL4TezA_3Nxu0WLlK8YsrdrDyDEpMdV7qF7ONBgAfgiFpd3NxMqkqa87uNSf0bqkkeC-jMhdPHTkCf8V0HJ72gdZB5KDlSd5Z53R_nyRjXmfhYSfzAdiq3-go9jKAWwfE0D8RDQ&h=ZSt_ZBBK1cfiBTm0ttnFxOKLgccgtTl8zPsocVuQH2U + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/61031fdb-15cf-4fd5-b5f1-991655ceeb18?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632309266002024&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=gabTuqosPTI0LKzMYEhm87RBHgj_xOGh9Z8dX_UVLWbMOtoluMMVP66_UMGTFO92qRPDIG_fUILPGpCyxFnIyy4saxPKvyDxQS0Cc_NfxPa8BeYTGE1A4Woo_G_nNevHRDZvEyqVoWrnhnWYsZ_MfusEeBsRSSBPtP-6_ccNH3RnuRs0iKVW5AAQViW-svD01h8qni-Q2yqLZGXpLpmcbHrnfbDRsd5UiX3lXBX0XDdz_gqWAJ3BFW87Aoyy3Wf7ySsDRURzQyWTLxklWtjQD0tTinUxDzgqtZQ6SnF4Sqky7cm8AwJnkyLOdAQtbCYq2j9vIxpuWWKMsycFLVIyJw&h=wUWKJwsFIQHCTvjDSkeV7uSQCmbeZVoSL_vJK2pDICE response: body: string: '' @@ -1791,11 +2968,11 @@ interactions: cache-control: - no-cache date: - - Sun, 29 Sep 2024 06:49:51 GMT + - Sun, 29 Sep 2024 18:22:36 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5a9df604-5919-4605-8c1f-b302153a8a5d?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893922116821&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=D3nLpTHgMgGW8-kNjWl-PMPGy8-8jRmG9kAXidRQ8FV-OhtLz2iPhTgzj_P5xX5GvLS_f-ibm803w1s2SW5kwxbwM7DFFt9WAHJHt10vq91hWx-RvSGgUc8ENeYsVgWh9i1itfzGcZG64yD7p0Fzqip9UR7VwpP8Z04q90XvWZ8rv37JbDSuSUTfV0oZ_zB-7T1ZVdknuG8CC9j8teu4Gd-GcRNRVbirPAczXw5-lUwmBrU6NaibmPh1fyUiD5KCkDtp0e0bYTXz4jdllx96reqe7DwWY9UJJ10vv_1aiAI0NByKpt6tsJPTuFs8wsKc7y_8eZbd4XYIMagcyNP1KA&h=gf66-9hiTjqNI8i7kj4KmiNQSf2iiAmXO5zlMRn2-Rg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/61031fdb-15cf-4fd5-b5f1-991655ceeb18?isAsyncHeader=false&resourceName=sb-nscli1000003&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632309575824103&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=uPJdaI_Flve9aGPaxJZgpQDOiMWJQWTwCSTyO73otalW5vEH8FQMgpuwUIdxKrG06BRanlGYzVbqAhZvru2Kv2YYUP8dnsFppt0F9P24ROTY6LIyKdR81BwOtnNQZjWgWDUzLj3QiJzVDGhX1rk1OQj0adk2r3Ioz1IsviIHbj_rqIdvBsy9Vv8o9Ft9rlFco6O2rEuwEK3-LThvqcZum1VuTsPJOttmFuL4l6TjbAxhC4yzqJQ-U9yVzqVBcJN2ycKRp_yk4HclOu0Z_aA4XZz63bcm8lUU1RW62z0nceWAvD1N5Vvr9NKm6sF1czQOE7qonwRZ1WWTWpjCjrKGXA&h=T_PVr0ISPoIG6sxLgPZwaWKobSBcLPswIUptCBqMVHA pragma: - no-cache strict-transport-security: @@ -1805,11 +2982,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000006992 + - 00000001-0000-0000-0002-000000001056 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G14|2024-09-29T06:49:52 + - EASTUS|EASTUS|G3|2024-09-29T18:22:37 x-msedge-ref: - - 'Ref A: A5A5D220561F43F98C48D19061A76E83 Ref B: OSA221030116037 Ref C: 2024-09-29T06:49:51Z' + - 'Ref A: 1454FF775B59478A857F46A7D06C0CDA Ref B: TYO201151006023 Ref C: 2024-09-29T18:22:36Z' status: code: 204 message: No Content @@ -1841,11 +3018,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:49:54 GMT + - Sun, 29 Sep 2024 18:22:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893947431106&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OgLbXVUlhN1ih79i05nN1YrYcKlTNEAtyVdofGlStgT5WOG6k3UY1riXfNaEKs2DDShM5tTQoM92qbfeZXuIYxUr4RtQrYO7G2b-M1PPP0cvp5__11K2Kc5yeMM0_vQR0zZRBYjhc5XWoPehyr05iq7HYtP9WUkt0iL6WVMu8Z6wCussG8teOl53Gj2I_3Ldk70bdzQ1oPQ8eSIB0tWZbluO9Co8-sXINXCu_L5XtSsZfCqyucrxJLeAClN62OczBjC8P5gp_WwxpT7UNbQ9RU9TVy4TpiyVdtxkGL8ln5wMsJmkJI_zFdv2M1Z7LvB5DAfPv_xMke_DsSj-XTOM4w&h=VT-r5MVWEXlE132cA_1oA1hIyVqNAfmCUAMTkMxxxOM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5c9871ee-db2a-4186-8353-08fec56d8185?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632309606247392&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=cu1GHSTcQJdbGF2cOuIq4PYQ-I5IxOsXit7qiLqw6gPQ6ddqP4-IHRnGoaOLgqM3ujr6zCyqiF7ayUWIGcrOPma1hy95YOJMREtrZKgsjYNYZcHKWizYjAcTzGFh0I2p1qbsqhmciW97Pr8fFqABVdJkLlptZdFHRFMoA_cyoPEtD3EpHb2jooFWVhYLWKUGjYDqIdOrE4OeoPh2y3cKQB1OFVIqvqkF1FX0M75NK1gtljVKuAtxoAX9hYefwG1O1BheDHM1-LRGIWxwQfRg7s25uCwFj5WGzX_xM2keGfQsDLGV2-P7svp1CbBTIDtjjSsv9Pp09t1YaTgeuyLZXA&h=-4Wams126RwXCE_UGm6YmoSXbO_uRxQIN_Vu8a2cWdg pragma: - no-cache strict-transport-security: @@ -1855,13 +3032,13 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000006996 + - 00000001-0000-0000-0002-000000002560 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G12|2024-09-29T06:49:54 + - EASTUS|EASTUS|G4|2024-09-29T18:22:40 x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-msedge-ref: - - 'Ref A: E2DA1073EE504C11B2D3EF8A10AD8AD6 Ref B: TYO201151006025 Ref C: 2024-09-29T06:49:52Z' + - 'Ref A: 5A8114C0A5A045BBAC9BB9BAF51AB499 Ref B: TYO201100116027 Ref C: 2024-09-29T18:22:38Z' status: code: 202 message: Accepted @@ -1881,7 +3058,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893947431106&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=OgLbXVUlhN1ih79i05nN1YrYcKlTNEAtyVdofGlStgT5WOG6k3UY1riXfNaEKs2DDShM5tTQoM92qbfeZXuIYxUr4RtQrYO7G2b-M1PPP0cvp5__11K2Kc5yeMM0_vQR0zZRBYjhc5XWoPehyr05iq7HYtP9WUkt0iL6WVMu8Z6wCussG8teOl53Gj2I_3Ldk70bdzQ1oPQ8eSIB0tWZbluO9Co8-sXINXCu_L5XtSsZfCqyucrxJLeAClN62OczBjC8P5gp_WwxpT7UNbQ9RU9TVy4TpiyVdtxkGL8ln5wMsJmkJI_zFdv2M1Z7LvB5DAfPv_xMke_DsSj-XTOM4w&h=VT-r5MVWEXlE132cA_1oA1hIyVqNAfmCUAMTkMxxxOM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5c9871ee-db2a-4186-8353-08fec56d8185?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632309606247392&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=cu1GHSTcQJdbGF2cOuIq4PYQ-I5IxOsXit7qiLqw6gPQ6ddqP4-IHRnGoaOLgqM3ujr6zCyqiF7ayUWIGcrOPma1hy95YOJMREtrZKgsjYNYZcHKWizYjAcTzGFh0I2p1qbsqhmciW97Pr8fFqABVdJkLlptZdFHRFMoA_cyoPEtD3EpHb2jooFWVhYLWKUGjYDqIdOrE4OeoPh2y3cKQB1OFVIqvqkF1FX0M75NK1gtljVKuAtxoAX9hYefwG1O1BheDHM1-LRGIWxwQfRg7s25uCwFj5WGzX_xM2keGfQsDLGV2-P7svp1CbBTIDtjjSsv9Pp09t1YaTgeuyLZXA&h=-4Wams126RwXCE_UGm6YmoSXbO_uRxQIN_Vu8a2cWdg response: body: string: '' @@ -1891,11 +3068,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:49:55 GMT + - Sun, 29 Sep 2024 18:22:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893957972226&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=KZ1sU3wJMMAjzVmr6r0abbaWuitU5cMAAeooTPFPz_YUAY8qD7UqwKQsPNenrXIYw0GkNLF3-vY3EqsV3_mtEiwWk-wIPkIGGmkY2Yly1tsq6bKug0x0Pn7xsBsIOWY9TA8Zi4UYCUULRA2LsAoEnQHNZv7L4cnc6cRTnVaK8mkUHEsnfl_R1iSoKHSFeq_V-HRKfNDrIQPxBq6EcxNmUegrFU_YUZ4nOGeGLlZ3kNyP6p8IpGoEOidKvpj0ir08lU3OkyFzJCtAxMYIIi--JW8HZstIHmyTf2adYcAOFDRhPtQINfKsl4vEsUrD83bEMO8VeB6mY6lQ0REulSbXJg&h=YPiW259qT01F4JLmGbFBxXcRIEBqBbp6ddNadb5Lsco + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5c9871ee-db2a-4186-8353-08fec56d8185?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632309616946304&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=l95ha9Ufwkat2ZKtcdmRHlgwzDsBnKstBgdJB_KpNmLga0LooDMlqTrFNxi10VzlEbuzB3KuaJXWXnOHq9cfhd9fXvq1VVKb2hFbySZwOos_Tiny22jlRtCJgrvF8GYlVxQQwZmzG2xKXjUSHVwcYzCAR-i_kbYwYz1NkYhao2VoP87jkJMrM6SmBSyCghtvaGbTtNOJDt4eAlE4iqO1XFQcAZyyO7h2_AdmZ-LNE4XLf5-GNSnbbFUFEvO5jjFhCVVEcs5tssoa0f4kL1LTzD_NIjBVJnFsk5fn7tFSoM9i0g5BrbKzo_R29SLJ4dDgQXh0hurmpFGUcS5BPvDNYw&h=U7FUEYYvSLCm0_oxXJvDHDtk3keKIFlQzT_3rRe2qQ8 pragma: - no-cache strict-transport-security: @@ -1905,11 +3082,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000005028 + - 00000001-0000-0000-0002-000000004360 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G5|2024-09-29T06:49:55 + - EASTUS|EASTUS|G8|2024-09-29T18:22:41 x-msedge-ref: - - 'Ref A: 6C5C85ABB18347ABBAA965742BDF8549 Ref B: TYO201151006025 Ref C: 2024-09-29T06:49:54Z' + - 'Ref A: 9CD25EFD9A624550A3AAD6813DCC55F3 Ref B: TYO201100116027 Ref C: 2024-09-29T18:22:40Z' status: code: 202 message: Accepted @@ -1929,7 +3106,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631893957972226&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=KZ1sU3wJMMAjzVmr6r0abbaWuitU5cMAAeooTPFPz_YUAY8qD7UqwKQsPNenrXIYw0GkNLF3-vY3EqsV3_mtEiwWk-wIPkIGGmkY2Yly1tsq6bKug0x0Pn7xsBsIOWY9TA8Zi4UYCUULRA2LsAoEnQHNZv7L4cnc6cRTnVaK8mkUHEsnfl_R1iSoKHSFeq_V-HRKfNDrIQPxBq6EcxNmUegrFU_YUZ4nOGeGLlZ3kNyP6p8IpGoEOidKvpj0ir08lU3OkyFzJCtAxMYIIi--JW8HZstIHmyTf2adYcAOFDRhPtQINfKsl4vEsUrD83bEMO8VeB6mY6lQ0REulSbXJg&h=YPiW259qT01F4JLmGbFBxXcRIEBqBbp6ddNadb5Lsco + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5c9871ee-db2a-4186-8353-08fec56d8185?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632309616946304&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=l95ha9Ufwkat2ZKtcdmRHlgwzDsBnKstBgdJB_KpNmLga0LooDMlqTrFNxi10VzlEbuzB3KuaJXWXnOHq9cfhd9fXvq1VVKb2hFbySZwOos_Tiny22jlRtCJgrvF8GYlVxQQwZmzG2xKXjUSHVwcYzCAR-i_kbYwYz1NkYhao2VoP87jkJMrM6SmBSyCghtvaGbTtNOJDt4eAlE4iqO1XFQcAZyyO7h2_AdmZ-LNE4XLf5-GNSnbbFUFEvO5jjFhCVVEcs5tssoa0f4kL1LTzD_NIjBVJnFsk5fn7tFSoM9i0g5BrbKzo_R29SLJ4dDgQXh0hurmpFGUcS5BPvDNYw&h=U7FUEYYvSLCm0_oxXJvDHDtk3keKIFlQzT_3rRe2qQ8 response: body: string: '' @@ -1939,11 +3116,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:50:26 GMT + - Sun, 29 Sep 2024 18:23:11 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894268239593&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=DdHmLni1qGnHfxpw2GhAkEtH5mQDvDxnMgtAoywyGFGhiPqfSShQxbqvAS8xODZhNrdwX-h05Jk_fSwR61WT3AgA7V94s3P6BmtD_QYmS0YWwJ_weD_SqBJmccOHsmTz1K-3KwpAol3ksqYXlwkL8S73i72Wev-DzXTSpn7ts2IkFcqqLtgap6gQRC74fgBhbZe2hEOqJN861yzcQMT8WbrLr0Az8O1xIxxLNV5-cKS40p2DCIekGSv0vxYwGISlsHMWWA_kMSJ6VEeB-nYL0HB_CMEKxJOWSi_sHTODVBEj47QtrwOIyX9qh25VGblt5kzvML-B2DGJtGq4UFrPZw&h=0IfRuBbmb615K5xeQlzgEk71knwWi3PJfgNbrFkMyJs + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5c9871ee-db2a-4186-8353-08fec56d8185?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632309919774993&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=PBMPtKhHtY3h4s7w6Zdmfvg76Yc9RgeEtyOPizGt7bnhA93Y4snCNJzTCevB3ZjCQPADaXcEgp46YU2t_WKyArA3sL5od8yhDjcS15tBq6LL03e4P4tUqjpXbFVqbm_yMW2E_xi-YmPrRI0kOJRCFC1MPe2JlcSqWiFItlSB-OV_JJs2cANFGllRxKrCx7BUYY6exHbZ123k25X571Lj6E__tqqo1_zu4aqosCD15z8PcIgt8VDr_bHUOaR1vTYKJapLMJ71LhlSYmpluSOzD-M_w1TvpUhcfLuhE1znrDNhPTXh_s0QIsJFk_FZmsXv4RknQMUhz8EdI-rsXpt9uw&h=AoB2pCUWCC3lY0M1VqfiW4lbIFcJ7Sw7VPsuARhAu2k pragma: - no-cache strict-transport-security: @@ -1953,11 +3130,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000003760 + - 00000001-0000-0000-0002-000000004360 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G11|2024-09-29T06:50:26 + - EASTUS|EASTUS|G8|2024-09-29T18:23:11 x-msedge-ref: - - 'Ref A: 06265C8602B046BDA1D3DFFB2993489D Ref B: TYO201151006025 Ref C: 2024-09-29T06:50:25Z' + - 'Ref A: AC11DE59F50C4B1DA93002FBD15EC578 Ref B: TYO201100116027 Ref C: 2024-09-29T18:23:11Z' status: code: 202 message: Accepted @@ -1977,7 +3154,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894268239593&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=DdHmLni1qGnHfxpw2GhAkEtH5mQDvDxnMgtAoywyGFGhiPqfSShQxbqvAS8xODZhNrdwX-h05Jk_fSwR61WT3AgA7V94s3P6BmtD_QYmS0YWwJ_weD_SqBJmccOHsmTz1K-3KwpAol3ksqYXlwkL8S73i72Wev-DzXTSpn7ts2IkFcqqLtgap6gQRC74fgBhbZe2hEOqJN861yzcQMT8WbrLr0Az8O1xIxxLNV5-cKS40p2DCIekGSv0vxYwGISlsHMWWA_kMSJ6VEeB-nYL0HB_CMEKxJOWSi_sHTODVBEj47QtrwOIyX9qh25VGblt5kzvML-B2DGJtGq4UFrPZw&h=0IfRuBbmb615K5xeQlzgEk71knwWi3PJfgNbrFkMyJs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5c9871ee-db2a-4186-8353-08fec56d8185?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632309919774993&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=PBMPtKhHtY3h4s7w6Zdmfvg76Yc9RgeEtyOPizGt7bnhA93Y4snCNJzTCevB3ZjCQPADaXcEgp46YU2t_WKyArA3sL5od8yhDjcS15tBq6LL03e4P4tUqjpXbFVqbm_yMW2E_xi-YmPrRI0kOJRCFC1MPe2JlcSqWiFItlSB-OV_JJs2cANFGllRxKrCx7BUYY6exHbZ123k25X571Lj6E__tqqo1_zu4aqosCD15z8PcIgt8VDr_bHUOaR1vTYKJapLMJ71LhlSYmpluSOzD-M_w1TvpUhcfLuhE1znrDNhPTXh_s0QIsJFk_FZmsXv4RknQMUhz8EdI-rsXpt9uw&h=AoB2pCUWCC3lY0M1VqfiW4lbIFcJ7Sw7VPsuARhAu2k response: body: string: '' @@ -1987,11 +3164,11 @@ interactions: content-length: - '0' date: - - Sun, 29 Sep 2024 06:50:57 GMT + - Sun, 29 Sep 2024 18:23:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894578728440&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=YbGVMUuYYt79fawk9tUF_ckHmLh069oBneSFiKBIKBCi9vKFrYn-T6ZSq4q6hZ84TMEAHMReUBgJHGeq6H4V09uZdWAKySALcshafPyC2WgIVqZSKZtv1XELiB6Bxs9fsZ-x2_GJfUJBMNtfwhKdwBte-gPLZiAoZ_CwGBCfCQxFPExdImkRuFsVUeqZ-J92wjEgpJ6i4nmY19WsyGl-CjTpJy-THcf7SDuvoNi-cO6EgNyzncg7j_wWyx-65J_BwE5YNbY3saAvDRM4hqehNb8QBqGetN9k_YWgWYjdSODuhh8YYrVjY7lh_LDr024RVT-UyaFKs5u7wpJgRbGn8A&h=pyowaUZDWze799kua4h9gPGhe4uQHSnWrxYsHeUxAOo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5c9871ee-db2a-4186-8353-08fec56d8185?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632310230481195&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=McYbIZCbYVW6BLWwQSmu_dXzuCTHkwD_LvP5UpeCX0gjtcOaCyxTqwFMiO3MtMB8XTz1VWWaZnVmAAwf9Q6QsfjhCi1COSNiVvlI5vLlWNXyuFQHE5sjzr-zAJLiZii0zq8rbgNtH26MniPT4MgqRqFdirNEgakV2FcNvaDIRJGLxwofCVvc7kcRW_FuqOvZQ2k_SwbEG9202PV-bTG0p7OVGKFpHDdLWM6225cofBraJ9Ow8U2i8f3zJjm4_gRIuc6DcBC7dGinoW3RR59IbQPfD-2xe0nV6YiPDdnxgYvuucm6tHpOeuj3H3Z95khlgorWbrNus9Y-X6CJU5szVA&h=470Nxc8FoBjHm4_AFsP6kDm11y26-neomb-_19-sM84 pragma: - no-cache strict-transport-security: @@ -2001,11 +3178,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000006456 + - 00000001-0000-0000-0002-000000009732 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G9|2024-09-29T06:50:57 + - EASTUS|EASTUS|G1|2024-09-29T18:23:42 x-msedge-ref: - - 'Ref A: 178937425C894B9B836158A9AA644121 Ref B: TYO201151006025 Ref C: 2024-09-29T06:50:56Z' + - 'Ref A: 6F039C05BD3B400F80A143045D901859 Ref B: TYO201100116027 Ref C: 2024-09-29T18:23:42Z' status: code: 202 message: Accepted @@ -2025,7 +3202,7 @@ interactions: User-Agent: - AZURECLI/2.64.0 azsdk-python-core/1.28.0 Python/3.10.11 (Windows-10-10.0.22631-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894578728440&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=YbGVMUuYYt79fawk9tUF_ckHmLh069oBneSFiKBIKBCi9vKFrYn-T6ZSq4q6hZ84TMEAHMReUBgJHGeq6H4V09uZdWAKySALcshafPyC2WgIVqZSKZtv1XELiB6Bxs9fsZ-x2_GJfUJBMNtfwhKdwBte-gPLZiAoZ_CwGBCfCQxFPExdImkRuFsVUeqZ-J92wjEgpJ6i4nmY19WsyGl-CjTpJy-THcf7SDuvoNi-cO6EgNyzncg7j_wWyx-65J_BwE5YNbY3saAvDRM4hqehNb8QBqGetN9k_YWgWYjdSODuhh8YYrVjY7lh_LDr024RVT-UyaFKs5u7wpJgRbGn8A&h=pyowaUZDWze799kua4h9gPGhe4uQHSnWrxYsHeUxAOo + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5c9871ee-db2a-4186-8353-08fec56d8185?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632310230481195&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=McYbIZCbYVW6BLWwQSmu_dXzuCTHkwD_LvP5UpeCX0gjtcOaCyxTqwFMiO3MtMB8XTz1VWWaZnVmAAwf9Q6QsfjhCi1COSNiVvlI5vLlWNXyuFQHE5sjzr-zAJLiZii0zq8rbgNtH26MniPT4MgqRqFdirNEgakV2FcNvaDIRJGLxwofCVvc7kcRW_FuqOvZQ2k_SwbEG9202PV-bTG0p7OVGKFpHDdLWM6225cofBraJ9Ow8U2i8f3zJjm4_gRIuc6DcBC7dGinoW3RR59IbQPfD-2xe0nV6YiPDdnxgYvuucm6tHpOeuj3H3Z95khlgorWbrNus9Y-X6CJU5szVA&h=470Nxc8FoBjHm4_AFsP6kDm11y26-neomb-_19-sM84 response: body: string: '' @@ -2033,11 +3210,11 @@ interactions: cache-control: - no-cache date: - - Sun, 29 Sep 2024 06:51:28 GMT + - Sun, 29 Sep 2024 18:24:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/8c28d08f-7a50-4aef-8a4f-3ccc3b2e97cf?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638631894888231355&c=MIIHhzCCBm-gAwIBAgITfAWHizdXQLRDd48J5AAABYeLNzANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjQwOTIyMTIwNDAzWhcNMjUwMzIxMTIwNDAzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3CpUYjuxooJSSrwK19FjzhBOC6rpM2nxEk8ZwpswjmQSs4371lD9cjpzoi1V66izrOAQO5dR4T7CBAdxC_T1La7B_GC0BLToEfDbOMLuij5eJKkGy743BYmNo5FXMcmO2f2PyZA8Q8FMkBzYwcpUlCBt0ofvjmFjb0o14-l_wkV8cVq6NA5rj5vzYRXrcBBDx0DXZzx0ey-DalD8BI5Efxzl0sFnA-qqtfi2y6thqMlNPWuGqiYFNmkko5caGs3a7hQy_mx3XdCDy2aWq0YXIqdiyYCA4MGA_vLQtjCUcC4EnHaLnPm-9OGFhKZHQZ2hQEFIYnnCNvsSRVaHBIatkCAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBR539nE3pOaYqC09YY5sInoMk2T-DAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFQ1zkLj2l7rlyrM4j2l8rtJkHitIxnUkLkyeLRrVxZPkfV1_ABjrmrKVHwks1TT5vv190Z1rSszJ8F3BMbapuqZk7TG_eHqRVKnkNYrwXEAn99VULWloNnmsKbnii5qgA26KvYkNcrxJ4L_9pCm3mT47A_mvHkzKnovgy4XLdvqRPL1QGC_Itw4Y4QCb11tEdDabhFYx2hY0zhM3voH4pW_42NbuG3xwNLFeA2LThOsGcf_4F8bzQ6Pm__uo-XrnBE13ERimgL86M-z9h6W2bQUcKXqAf_RhKjv5ai9GEnITD2aoXBO8tu85DelvTvuH12hn2s2xEeYNMURYXNCzYc&s=tetLVLEqnSczPDYDeLgcOLLyF1CseFiRjtWbl0fCrcYnU4yIxDQFQqqcWX9M7bW1YA7-5dk2mAtnekac1_B0-vJANOVmiMdJi73-iIyjJZXnkA4iiw3gunknDNUL3Tnmofn3qqPPi23QzSHf76chovpT9CY4i3DAxBKCsPAVzGXsMqNDGgHYcz9WWRyHE6_-XQ2NCZ6Br94ivMvx01MaWZyd0uLn6x11A0bYduIp2K5DNtmVK-Ir2bvwCOjcTsY5yotqYszbkm4K_Itdd2hEmdFXiAhEnVdqU1M48FfBQb4ablyfycVhE4RsrEa9h0zM3zu0_hWD574_h663-VZJxw&h=9SBuWZCDTBp-M8a7yeXQ39UpnSCxjonVan3h5q7OX3g + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceBus/locations/eastus/namespaceOperationResults/5c9871ee-db2a-4186-8353-08fec56d8185?isAsyncHeader=false&resourceName=sb-nscli2000004&resourceType=namespace&api-version=2023-01-01-preview&operationType=Deleted&t=638632310541225897&c=MIIHpTCCBo2gAwIBAgITOgO1eaNDEi_BvGCTxQAEA7V5ozANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwOTI0MDIxODE1WhcNMjUwMzIzMDIxODE1WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMlHGdnqKLeF2F4OsgAOcHFNUAjiLFp6FCxlxQOYg51Cc3zek-BAsGf89aUGTGMJCdHE1mTaw1q_PUWPCksYWp3NcCCoVinm2o1MURSwaWIrqlNASHAEvb_ADFMgn4n4hc2vShYq2affaCR2GFiEUOUzENxFaDejcbaTAkH8VDqATpE-0Cs90fYiHo7MZO2TBnVbpKAC5zeCrw4nRGPYQx-V6X7jiQGDXIR-_OU8LW2XNvrrCvoPU5tFdlWYUQXvCArDZBYyBTw35HqRZVJeV7Nb1lFYUow80NtfPKaa782C2Gu9NeJ9CKvnuEzn6BsK50U06J63QS9iYtewwl8f_okCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBSr8klupGadVT2XsbxtRSoLk5-S8jAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHtj0YWqN3sYjYN-GBQMYMg1YMdzO7_Q-Mm2bT6ToQzKlQ8U_PWSHKQvJWHVz6OjdsyQku_l92cmgLYjEAsKHlKyDCUGz59BlajwSHMI_0DlBN2h773g9gi_Wn3K2PVudya1UlPloKAp4OM1m09oNeh0KByOgBBsgYVqwFpoHESoyDICFB_cnqZwNxw5ye-LGz4ePuRuzt9cKoe9ilJji_A2qUk1fJwdoxerf6Cm4EjYpfyGFVeXy4DodU8rwtg4rQt4YgjyxKtAqlFfMbJfqTqF4htWkY8wvqFKPXppJO8FYnc7A4R50cSPMF-Y70wHazRM1UXs0NWuK8_5R1Cw2Uo&s=k5SedpwO9I5A1Wr9VDeWWnzPH0K2v0XuT6tpE3-UjUUY47_5JEIcFWT0r-e6cW8f7369vviVhyzaX9a1AzFTMXaJ6dqAyXX28UQCjg14omoH49QA-4GtuIb5cznbudjJMAGkS-aFX6b7Bp4txy64AfeC0VyDzIMRJYTNHWKcGZ3a8XIYdlQAohovJzGi_hdsafjKlizNroSGH0I6_vmsPFtW6WKYzU_XyD79_mwC0MFOhQV8L5v5iJnkeHjn7YYZLmqjFFADdPMqYIKSitdKC86dBAtQQ5X9_hJ1zYJ0GiE-nob6iEOUQMhCUWJ-f4NbnH8q8P0oVrGYz1X5jwoY4A&h=JBtCP0S2vHicczz67iz5Qqbff4I6ezBqQjad6JlKeqk pragma: - no-cache strict-transport-security: @@ -2047,11 +3224,11 @@ interactions: x-content-type-options: - nosniff x-ms-messaging-activity-id: - - 00000001-0000-0000-0002-000000006456 + - 00000001-0000-0000-0002-000000004360 x-ms-messaging-routing-id: - - EASTUS|EASTUS|G9|2024-09-29T06:51:28 + - EASTUS|EASTUS|G8|2024-09-29T18:24:14 x-msedge-ref: - - 'Ref A: 4B485CC7E9244B028184716E7C67A6A8 Ref B: TYO201151006025 Ref C: 2024-09-29T06:51:27Z' + - 'Ref A: CCB87F0F202140D4A926EE696810E01E Ref B: TYO201100116027 Ref C: 2024-09-29T18:24:13Z' status: code: 204 message: No Content diff --git a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/test_servicebus_namespace_commands.py b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/test_servicebus_namespace_commands.py index 9c8bfb8005c..bacb2bd0170 100644 --- a/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/test_servicebus_namespace_commands.py +++ b/src/azure-cli/azure/cli/command_modules/servicebus/tests/latest/test_servicebus_namespace_commands.py @@ -23,11 +23,14 @@ def test_sb_namespace(self, resource_group): 'namespacename': self.create_random_name(prefix='sb-nscli', length=20), 'namespacename1': self.create_random_name(prefix='sb-nscli1', length=20), 'namespacename2': self.create_random_name(prefix='sb-nscli2', length=20), + 'namespacename3': self.create_random_name(prefix='sb-nscli3', length=20), 'identity1': self.create_random_name(prefix='sb-identity1', length=20), 'identity2': self.create_random_name(prefix='sb-identity2', length=20), 'tags': 'tag1=value1', 'tags2': 'tag2=value2', - 'loc': 'East US' + 'loc': 'East US', + 'loc1': 'Australiaeast', + 'loc2': 'TaiwanNorth' }) identity1 = self.cmd('identity create --name {identity1} --resource-group {rg}').get_output_in_json() @@ -103,6 +106,31 @@ def test_sb_namespace(self, resource_group): # List all Namespace within subscription self.cmd('servicebus namespace list') + # create a namespace with geo-replication enable + namespace = self.cmd('servicebus namespace create --resource-group {rg} --name {namespacename3} ' + '--location {loc1} --sku Premium --geo-data-replication-config role-type=Primary location-name={loc1} ' + '--geo-data-replication-config role-type=Secondary location-name={loc2}').get_output_in_json() + + time.sleep(200) + + '''namespace = self.cmd('servicebus namespace replica add --resource-group {rg} --name {namespacename3} ' + '--geo-data-replication-config role-type=Secondary location-name={loc2} ').get_output_in_json()''' + + self.assertEqual(2, len(namespace['geoDataReplication']['locations'])) + + namespace = self.cmd('servicebus namespace update --resource-group {rg} --name {namespacename3} ' + '--max-replication-lag-duration-in-seconds 300').get_output_in_json() + + self.assertEqual(300, namespace['geoDataReplication']['maxReplicationLagDurationInSeconds']) + + time.sleep(600) + + namespace = self.cmd('servicebus namespace failover --name {namespacename3} --resource-group {rg} ' + '--primary-location {loc2} ').get_output_in_json() + + '''namespace = self.cmd('servicebus namespace replica remove --resource-group {rg} --name {namespacename3} ' + '--geo-data-replication-config cluster-arm-id={clusterid2} role-type=Secondary location-name={loc2} ').get_output_in_json()''' + # Delete Namespace list by ResourceGroup self.cmd('servicebus namespace delete --resource-group {rg} --name {namespacename} ') self.cmd('servicebus namespace delete --resource-group {rg} --name {namespacename1} ')